Finding Large Arcs in an Image
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Image Analyst
am 13 Jun. 2013
Can we see your image? Where did you upload it to?
5 Kommentare
Image Analyst
am 20 Jun. 2013
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:
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!