Measuring Line Profiles in IMages
11 次查看(过去 30 天)
显示 更早的评论
I have a image such as below which has horizontal and vertical lines in the field of view. I want to segment the vertical line adjacent to the dark area such as in red below and vertical line in the intersection of the horizontal line(as seen in black).The full image has many such structiures. I want to stack all similar segmented structures within the fov (Average measuremnet of red and black) and display.I also want to measure the average x and y as shown below if the red line concaves at the max conving location in y.


0 个评论
采纳的回答
Matt J
2025-9-11
I=im2double(im2gray(imread('image.png')));
BW=imbinarize(I);
D=bwareaopen(abs(gradient(I))>0.06,20);
D=imclose(D,strel('disk',5));
black=(median(BW,2)>0);
red=~black;
L=D.*red+2*D.*black;
imshow(labeloverlay(I,L,Colormap=[1,0,0;0,0,0]));
6 个评论
Matt J
2025-9-29,22:40
编辑:Matt J
2025-9-29,22:48
Please illustrate by drawing one rectangle (e.g. with drawrectangle) on the example segmented image above, demarcating one of the regions that we will want to overlay on other regions.
As part of the illustration, please also show us how the positions of the different edges of the rectangle are selected.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

