|
After looking through the MaximumFinder class, I think the Watershed program became useful because the MaximumFinder class oversegments cells due to its heavy reliance on local maxima and the way it binarizes the image (spreads 255 pixels).
In other words, by using thresholding->binarizing->watershed on an image, much of the images complexity is removed/destroyed. It simplifies the problem, but, consequently, it also doesn't represent the problem accurately.
|