How do I perform sobel filtering in multiple detected circles (using imfindcircles, viscircles) exclusively ?
Mostra commenti meno recenti
I am trying to apply filter to multiple circular regions of the image. Since the edges of the circle are discontinued at some parts, how do i achieve exclusive filtering in the circular region? Used imfindcircles and viscircles to detect the circles.
Here, A_bw is the image
[centers,radii] = imfindcircles(A_bw,[30 8000]); %A_bw is the image
centersStrong5 = centers(1:7);
radiiStrong5 = radii(1:3);
viscircles(centers, radii,'EdgeColor','r','LineStyle','-.');
PS am new at it.
Thanks a lot for helping! :)
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Object Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!