how i can find these branching point

Hi all
Who i can find these four points?
Note: the extention of this image in matlab is logical
b.jpg

Answers (1)

Matt J
Matt J on 14 Apr 2019
Edited: Matt J on 14 Apr 2019
[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 Comments

But this code gave me the cornner of the image?? i would calcuylate the vertix
Now, if i have this figure, how i can get the 7 branching points?
b.jpg
Matt J
Matt J on 15 Apr 2019
Edited: Matt J on 15 Apr 2019
That is a different question. Basically, though, I would use bwpropfilt to remove the black rectangle in the middle. Then I would use houghlines to find all sides of the remaining polygon and their end points.
can you please write me a code to find these point?
That wouldn't leave any fun for you ;)
ok, can you give more help about what you say above? "Then I would use houghlines to find all sides of the remaining polygon and their end points"
because i dono't have engough information in matlab,
Thank you

Sign in to comment.

Asked:

on 14 Apr 2019

Commented:

on 15 Apr 2019

Community Treasure Hunt

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

Start Hunting!