Imfindcircles() detect circles which are not there..
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I'm trying to use imfindcircles setting minimum and maximum radii. I have even mentioned the method and object polarity in the command. Still it detect falsely.
How can I solve this.
2 Commenti
Risposte (1)
KALYAN ACHARJYA
il 14 Lug 2019
Modificato: KALYAN ACHARJYA
il 14 Lug 2019
im=imread('subtracted.png');
Rmin=10;
Rmax=65;
[centers,radii]=imfindcircles(im,[Rmin Rmax])
I have tried with different values Rmin and Rmax too.
Result:
centers =
[]
radii =
[]
[] represents empty.
9 Commenti
KALYAN ACHARJYA
il 14 Lug 2019
Modificato: KALYAN ACHARJYA
il 14 Lug 2019
I saved the shared image(imf.png) as qq.png
im=imread('qq.png');
Rmin=10;
Rmax=65;
[centers,radii]=imfindcircles(im,[Rmin Rmax]);
Learning is an ongoing process, lets keep trying and keep learning!
Good Night!
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!