private void button21_Click(object sender, EventArgs e)
 {
     try
     {
         InsertarCambio("Opening");
         anterior          = MethodImagenFilter.CopyBitmap(actual);
         actual            = MethodImagenFilter.Opening(actual);
         pictureBox1.Image = actual;
     }
     catch (Exception ex)
     {
         MessageBox.Show($"Erro: {ex.Message}");
     }
 }
 private void button55_Click(object sender, EventArgs e)
 {
     try
     {
         InsertarCambio("TRT21");
         anterior          = MethodImagenFilter.CopyBitmap(actual);
         actual            = MethodImagenFilter.TirarBordaTRT21(actual);
         actual            = MethodImagenFilter.PintarPixelPretoDeBranco(actual);
         actual            = MethodImagenFilter.Opening(actual);
         pictureBox1.Image = actual;
     }
     catch (Exception ex)
     {
         MessageBox.Show($"Erro: {ex.Message}");
     }
 }