.
I have been using ImageJ to process images, but now I would like to have my workflow entirely in Python, if possible.
Until now I found everything I need using OpenCV, except one thing: ImageJ has a really nice number of thresholding methods which I don't see available in Python (as far as I know).
According to the documentation (here and here), there are a few thresholding methods available in OpenCV. In particular for my images I need the 'intermodes' method.
In a previous question it was mentioned that 'it is usually pretty simple to implement other Threshold Methods using OpenCV'
- are you aware of more thresholding methods than the ones listed above for OpenCV or in Python in general?
- if not, how would you go about to implement the 'intermodes' method in Python? Just port the original (MATLAB) code to python?
Any suggestions are welcome. Thanks
.