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.
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
KALYAN ACHARJYA
il 18 Nov 2020
Wen's comments (Image) as an answer has been deleted. Same Image in Attached.
Risposta accettata
KALYAN ACHARJYA
il 18 Nov 2020
Modificato: KALYAN ACHARJYA
il 18 Nov 2020
data=imbinarize(imread('image.jpeg'));
result=edge(data);
figure,imshow(result);
[r,c]=find(result==1);
figure,plot(c,r,'.');

9 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
