image-rs / imageproc

Image processing operations
MIT License
735 stars 145 forks source link

Implemented thresholding with different types for binarization in the… #575

Closed spartajet closed 4 months ago

spartajet commented 4 months ago

… imageproc library. Added enum ThresholdType to represent the threshold operation corresponding to OpenCV threshold types. Updated functions threshold and threshold_mut to take ThresholdType as a parameter for specifying the type of thresholding operation. Added tests and benchmarks for the new functionality. #574

theotherphil commented 4 months ago

Looks good to me after the requested changes, thanks!

theotherphil commented 4 months ago

Indentation stills looks broken, but I’ll fix that in a follow up PR.

Thanks for the new functionality!