コード例 #1
0
 private Result AutoThresholdTriangle(IMagickImage image)
 {
     image.AutoThreshold(AutoThresholdMethod.Triangle);
     return(_reader.Decode(image));
 }
コード例 #2
0
 private Result AutoThresholdKapur(IMagickImage image)
 {
     image.AutoThreshold(AutoThresholdMethod.Kapur);
     return(_reader.Decode(image));
 }
コード例 #3
0
 private Result AutoThresholdOTSU(IMagickImage image)
 {
     image.AutoThreshold(AutoThresholdMethod.OTSU);
     return(_reader.Decode(image));
 }
コード例 #4
0
 private Result AutoThresholdUndefined(IMagickImage image)
 {
     image.AutoThreshold(AutoThresholdMethod.Undefined);
     return(_reader.Decode(image));
 }