find intersection points and edge points

조회 수: 5 (최근 30일)
majed majed
majed majed 2015년 11월 9일
댓글: Image Analyst 2019년 10월 29일
As you see in figure, I have a binary image which has been thinned. It contains English letters, some letters have intersection points (marked with red circles), and some don’t have those.
I want to extract intersection points for every litter and put it in a cell or whatever. I also want to extract the edge points (marked with blue circles) and put it in a cell or matrix to use it later.
In fact I have tried to write function but I could not execute it. So I hope that our teachers here help me.
Note: intersection points are pixels have more than two pixels in a neighborhood, while edge points have just one pixel.
Thank you
  댓글 수: 2
Puja Das
Puja Das 2019년 10월 29일
I want the code please send me puja250196@gmai.com
Image Analyst
Image Analyst 2019년 10월 29일
Puja: Did you scroll down to here? Source code is there. Why email it to you when you can get it right there?

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2015년 11월 10일
This functionality is built into the bwmorph() function:
bpImage = bwmorph(binaryImage, 'Branchpoints');
epImage = bwmorph(binaryImage, 'Endpoints');
% Plot blue circles over branchpoints
[ybp, xbp] = find(bpImage);
hold on;
plot(xbp, ybp, 'bo', 'MarkerSize', 15);
% Plot red circles over endpoints.
[yep, xep] = find(epImage);
hold on;
plot(xbp, ybp, 'ro', 'MarkerSize', 15);
  댓글 수: 3
swathi
swathi 2018년 8월 31일
What modification should be brought in the given code, for image with white background & signature in black. Please help
swathi
swathi 2018년 8월 31일
I mean, to obtain the end points of the signature, where in, image has white background & signature in black. Kindly help.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Robert
Robert 2015년 11월 10일
Attached i send you a m.file. It finds the edge points right. For the intersection points, there is still some error, but the file can maybe help you as a draft.
Regards, Robert

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by