how i can find these branching point
Afficher commentaires plus anciens
Hi all
Who i can find these four points?
Note: the extention of this image in matlab is logical

Réponses (1)
[I,J] = find(binaryimg<max(binaryimg(:))/2);
IJ = [I,J];
[~,idx] = min(IJ*[1 1; -1 1; 1 -1; -1 -1].');
Corners = IJ(idx,:);
For some elaboration on why this works, see this thread,
6 commentaires
mohammed alany
le 15 Avr 2019
mohammed alany
le 15 Avr 2019
mohammed alany
le 15 Avr 2019
Matt J
le 15 Avr 2019
That wouldn't leave any fun for you ;)
mohammed alany
le 15 Avr 2019
Catégories
En savoir plus sur Detect, Extract, and Match Features dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
