- Finding center of a line - MATLAB Answers - MATLAB Central (mathworks.com)
- How to find the centreline of two curves - MATLAB Answers - MATLAB Central (mathworks.com)
- Centerline and bounding curve in image - MATLAB Answers - MATLAB Central (mathworks.com)
How do I find the centerlines shown in the image?
6 次查看(过去 30 天)
显示 更早的评论
Original image: "myimage"
Binary image: "binary"
Code to reach from original image to binary image:
I = imread("myimage.jpg");
I = im2gray(I);
I = imadjust(I);
Igs = I > 150;
imshow(Igs)
Igs = imfill(Igs,"holes");
Igs = bwareaopen(Igs,50);
imshow(Igs);
SE = strel("disk",10);
Igs = imclose(Igs,SE);
Igs = imopen(Igs,SE);
imshow(Igs)
I want to detect the 6 centerlines shown in the binary image marked in red. What functions or method do I use to detect these centerlines?
Thankyou.
0 个评论
回答(1 个)
Prateek
2022-11-22
Hi Husain,
There can be different approaches to find and draw centerlines, such as scanning image columns or using the function “bwskel”. The following links contain detailed discussions on the same:
Please refer to these discussions. These should be helpful in constructing a solution.
Regards,
Prateek
2 个评论
Prateek
2023-1-24
Hi Husain,
I believe you would have found a solution by now. If that is not the case, I suggest you approach the MathWorks Technical Support for this. Here's the link for it - https://in.mathworks.com/support/contact_us.html?requestedDomain=
Regards,
Prateek
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing and Computer Vision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!