I want to better segment the round part in my pictures(use Segment Anything),and i try many ways to improve the effect,including threshholding(OTSU/adaptive....),OpenCV edge detection(Sobel/Scharr/Laplacian/Canny).
The original image is here:
After trying a lot of combinations,now the temporary best one is:Laplacian operator(edge detection) + Gaussian Filter + OTSU,like this: Laplacian operator + Gaussian Filter + OTSU thresholding
The segment after preprocessing is here:
You can see that the edge is not complete, but at least it splits the circle part, other methods have the following effect: Use Canny operator to detect the edge
How can I make it better?What can i do to remove the curve above the round part?