How to use the edge function to extract a curve from the photo, and then draw this curve on the coordinate system, and finally smooth the curve.
3 views (last 30 days)
Show older comments
How to use the edge function to extract a curve from the photo, and then draw this curve on the coordinate system, and finally smooth the curve.I am very grateful to everyone for helping me solve this problem.
4 Comments
KALYAN ACHARJYA
on 18 Nov 2020
Wen's comments (Image) as an answer has been deleted. Same Image in Attached.
Accepted Answer
KALYAN ACHARJYA
on 18 Nov 2020
Edited: KALYAN ACHARJYA
on 18 Nov 2020
data=imbinarize(imread('image.jpeg'));
result=edge(data);
figure,imshow(result);
[r,c]=find(result==1);
figure,plot(c,r,'.');

9 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!