Threshold using Simple Image Statistics (SIS)
Inheritance: IFilter
Ejemplo n.º 1
0
 /// <summary>
 /// Binarize image with SIS threshold filter
 /// </summary>
 /// <param name="image"></param>
 public static Image SISThreshold(this Image image)
 {
     SISThreshold thresholdFilter = new SISThreshold();
     return thresholdFilter.Apply(BitmapGrayscale(image));
 }