Finding Large Arcs in an Image
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I have a BW image containing large arcs. I was thinking of using imfindcircles to detect them, but their centers are certainly off the image because the radii are quite large. Any ideas on what would be the best way to detect these curves?
-Jen
댓글 수: 0
답변 (1개)
Image Analyst
2013년 6월 13일
Can we see your image? Where did you upload it to?
댓글 수: 5
Image Analyst
2013년 6월 20일
That's really easy. Just binarize it if it's not already
binaryImage = grayImage > 255;
Then find the coordinates
[rows, columns] = find(binaryImage);
Then use the FAQ to fit to a circle:
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!