Adaptive Mean Thresholding #2639
Unanswered
e012345678
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Use the processing APIs Image.Mutate( x => x.AdaptiveThreshold()) There’s several overloads available. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone know how to do Adaptive Mean Thresholding like in this link: https://www.tutorialspoint.com/how-to-perform-adaptive-mean-and-gaussian-thresholding-of-an-image-using-python-opencv
My current code is like this:
Specfically the opencv2 line I am trying to port is:
Cv2.AdaptiveThreshold(dst, thresholded, 255, AdaptiveThresholdTypes.MeanC, ThresholdTypes.Binary, 85, 10);
Any tips on how to do that with ImageSharp?
Beta Was this translation helpful? Give feedback.
All reactions