How to Identify and draw an ellipse #132121
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! I found that decreasing the threshold in the binary step to around 50 improves the results for your issue:
The problem is that contours are continuous points, and with a high binary threshold, this continuity can break. Therefore, reducing the threshold helps maintain continuous zones in the pre-processed image. I also try using morphology and increase contrast so that the zone seem more continuous with threshold 125:
I try with filter to decrease the thickness of zone so that we also see a better result with thes.125:
Anway, for better pre-processing of the image, you can apply filters such as edge detection, etc. to make contouring easier. GL bro! |
Beta Was this translation helpful? Give feedback.
Hi! I found that decreasing the threshold in the binary step to around 50 improves the results for your issue:
The problem is that contours are continuous points, and with a high binary threshold, this continuity can break. Therefore, reducing the threshold helps maintain continuous zones in the pre-processed image.
I also try using morphology and increase contrast so that the zone seem more continuous with threshold 125: