Finding Large Arcs in an Image
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Image Analyst
il 13 Giu 2013
Can we see your image? Where did you upload it to?
5 Commenti
Image Analyst
il 20 Giu 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:
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!