Esempio n. 1
0
 public static Image <Gray, byte> OpenCross(
     this Image <Gray, byte> src)
 {
     return(FnMorp(morpOp.Open, kernal.Cross)(src, 3));
 }
Esempio n. 2
0
 public static Image <Gray, byte> ErodeRect(
     this Image <Gray, byte> src)
 {
     return(FnMorp(morpOp.Erode, kernal.Rect)(src, 3));
 }
 public static Image<Gray,byte> DilateRect(
     this Image<Gray,byte> src)
 {
     return FnMorp(morpOp.Dilate, kernal.Rect)(src,3);
 }
Esempio n. 4
0
 public static Image <Gray, byte> DilateCross(
     this Image <Gray, byte> src)
 {
     return(FnMorp(morpOp.Dilate, kernal.Cross)(src, 3));
 }
 public static Image <Gray, byte> OpenRect(
     this Image <Gray, byte> src)
 {
     return(FnMorp(morpOp.Open, kernal.Rect)(src, 5));
 }