I am currently working with the try_all_threshold function that comes with the skimage filters package (skimage.filters.try_all_threshold).
It applies 8 types of thresholding methods on an image and then plots these 8 generated thresholds next to each other. However, there are way more thresholding methods described in the skimage documentation, and I am currently trying to find a way of modifying the try_all_threshold function in a way that I could either add or exchange the thresholding methods that it usually applies, with alternative ones from the scikit environment.
For example: Instead of using the skimage.filters.threshold_li method, I would want to use the skimage.filters.threshold_multiotsu method in the try_all_threshold function. And ideally, I would want to also use more than 8 threshold methods at the same time to get a better overview, but I dont know if that is possible.
Does anyone have an idea on how to do that?
Thank you all very much for your help and a good day!