How to find mean line of the this edge?

조회 수: 1 (최근 30일)
vikash kumar
vikash kumar 2019년 8월 13일
댓글: Image Analyst 2019년 8월 17일
Hi,
I'm working on image processing so i need help here i uploaded my image here.What i need is to find the middle line which will the skeleton of the edge.Please help me.
Thanks.
edge_img.jpg

답변 (2개)

Matt J
Matt J 2019년 8월 14일
Try bwskel

Image Analyst
Image Analyst 2019년 8월 14일
Call bwareafilt() to get the largest blob:
mask = bwareafilt(mask, 1);
Then scan across column by column to get the midline
[rows, columns] = size(mask);
topLines = zeros(1, columns);
bottomLines = zeros(1, columns);
for col = 1 : columns
y = find(mask(:, col), 1, 'first');
if ~isempty(y)
topLines(col) = y
bottomLines(col) = find(mask(:, col), 1, 'last')
end
end
% Get midline
midLine = (topLines + bottomLines) / 2;
% Fit a line through it, if you want
goodColumns = topLines ~= 0;
x = 1:columns;
coefficients = polyfit(x(goodColumns), midLine(goodColumns), 1)
yFitted = polyval(coefficients, x);
hold on;
plot(x, yFitted, 'r-', 'LineWidth', 2);
  댓글 수: 6
Image Analyst
Image Analyst 2019년 8월 16일
Darn, I was gettong all ready to help you now that I have more time, and you forgot to attach the images. Please attach the original PNG, tiff, bmp or JPG images. I can't call imread() on hte fig files.
Image Analyst
Image Analyst 2019년 8월 17일
Oh, OK, so you don't really want to or need to do edge detection at all. All you need to do is to find the black lines, which you can do by color segmentation. So try that. Or better yet, just get the original digital signals if you can rather than trying to figure them out from a cell phone image of a strip chart.

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

Community Treasure Hunt

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

Start Hunting!

Translated by