- Use strel() to construct a disc structuring element
- Use imdilate() to dilate your binary image (circles mask) to enlarge the circles
- Use ringMask = xor(mask, dilatedMask) to get the annular mask.
- Use the annular mask to set the gray scale image to 0 there: grayImage(ringMask) = 0;
How to delete the area around a circle in an image?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have an image which has many circles in it, I've used viscircles to identify and draw a circle around the circles in the image. My next step is to delete the area around the circles, do you guys know how I could go about this???
Thank you so much
댓글 수: 0
채택된 답변
Image Analyst
2018년 11월 25일
Yes. viscircles() does not find circles though - perhaps you meant imfindcircles().
I don't have your code so I can't extend it so I'll just give you the steps.
Attach your image and code to produce the circles if you can't do it.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!