private Result AutoThresholdTriangle(IMagickImage image) { image.AutoThreshold(AutoThresholdMethod.Triangle); return(_reader.Decode(image)); }
private Result AutoThresholdKapur(IMagickImage image) { image.AutoThreshold(AutoThresholdMethod.Kapur); return(_reader.Decode(image)); }
private Result AutoThresholdOTSU(IMagickImage image) { image.AutoThreshold(AutoThresholdMethod.OTSU); return(_reader.Decode(image)); }
private Result AutoThresholdUndefined(IMagickImage image) { image.AutoThreshold(AutoThresholdMethod.Undefined); return(_reader.Decode(image)); }