We have an RGB image. I want to apply adaptive thresholding on it. How can we find the threshold value??? I think we can separately find the threshold value of each channel but what next is the confusion?? or if you can provide some better solution it would be appreciable. Thanks.
Asked
Active
Viewed 2,355 times
0
-
I think you are probably looking for *"Otsu Thresholding"*... https://en.wikipedia.org/wiki/Otsu%27s_method – Mark Setchell May 25 '16 at 11:12
1 Answers
2
You wrote that you want to apply thresholding so I assume that you want binarized image as output. Is there any special reason that you want perform thresholding on each channel separately? If not, try convert image to grayscale and then apply thresholding. If you want you could apply thresholding on each channel separately and then merge output binarized images from each channel into one output but I don't know why you wan to do it.

Springfield762
- 221
- 1
- 11
-
Actually I am trying to find Eucledian distance between pixels base on the condition that if distance
– Navdeep Jul 29 '15 at 15:53