Effacer les filtres
Effacer les filtres

Unable to detect Iris boundary using imfind circles

2 vues (au cours des 30 derniers jours)
Karthik Krishnan
Karthik Krishnan le 21 Juil 2021
Commenté : Matt J le 25 Juil 2021
Canny_img = edge(newI,'canny');
image(Canny_img)
title('Edge detected')
figure,
imshow(Canny_img)
title('Circle Detected Image')
[centers, radii] = imfindcircles(Canny_img,[20 150],'Sensitivity',0.8);
disp(centers)
disp(radii)
centersStrong = centers(:,:);
radiiStrong = radii(:);
%metricStrong5 = metric(1:2);
viscircles(centersStrong, radiiStrong,'EdgeColor','b');
this is my code it detects the inner circle not the outer one. pls help
  2 commentaires
Jonas
Jonas le 21 Juil 2021
Modifié(e) : Jonas le 21 Juil 2021
did you try to use a bigger lower radius bound in imfindcircles? if the lower bound is big enough you will not get the small circle.
it would also help if you provide the original image or the binary image without the circle
Karthik Krishnan
Karthik Krishnan le 23 Juil 2021
thanks

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 21 Juil 2021
Modifié(e) : Matt J le 21 Juil 2021
Increasing the lower radius bound as suggested by @Jonas as well as increasing the sensitivity setting seems to help:
A=any( imbinarize(imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/690953/image.png')) ,3);
[centers, radii] = imfindcircles(A,[50 150],'Sensitivity',0.96);
imshow(A);
viscircles(centers, radii,'EdgeColor','b');
  3 commentaires
Karthik Krishnan
Karthik Krishnan le 25 Juil 2021
why u used imbinarize? @Matt J
Matt J
Matt J le 25 Juil 2021
Because your posted image looks binary. It might indeed be better to try to detect the circles in the original color image.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by