Finding Large Arcs in an Image
6 次查看(过去 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!