Exemplo n.º 1
0
 public void MorphologyClose()
 {
     GetBinaryImage();
     DipLibImage = (DipLibImage as BinaryImage).Close(StructuringElements.Cross(3));
     RefreshImage();
 }
Exemplo n.º 2
0
 public void Erosion()
 {
     GetBinaryImage();
     DipLibImage = (DipLibImage as BinaryImage).Erosion(StructuringElements.Cross(3));
     RefreshImage();
 }