private void aula1ToolStripMenuItem_Click(object sender, EventArgs e) { int[] intensity = new int[256]; int[] red = new int[256]; int[] green = new int[256]; int[] blue = new int[256]; if (img == null) // protege de executar a função sem ainda ter aberto a imagem { return; } Cursor = Cursors.WaitCursor; // cursor relogio DateTime d1 = DateTime.Now; ImageClass.histogram(img, intensity, red, green, blue, 3); Form CompTable = new CompressionTableForm(intensity, img); CompTable.Show(); ImageViewer.Refresh(); // atualiza imagem no ecrã DateTime d2 = DateTime.Now; Cursor = Cursors.Default; // cursor normal MessageBox.Show((d2 - d1).ToString()); }
private void aula1ToolStripMenuItem_Click(object sender, EventArgs e) { int[] intensity = new int[256]; int[] red = new int[256]; int[] green = new int[256]; int[] blue = new int[256]; if (img == null) // protege de executar a função sem ainda ter aberto a imagem return; Cursor = Cursors.WaitCursor; // cursor relogio DateTime d1 = DateTime.Now; ImageClass.histogram(img, intensity, red, green, blue, 3); Form CompTable = new CompressionTableForm(intensity, img); CompTable.Show(); ImageViewer.Refresh(); // atualiza imagem no ecrã DateTime d2 = DateTime.Now; Cursor = Cursors.Default; // cursor normal MessageBox.Show((d2 - d1).ToString()); }