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.

6 visualizaciones (últimos 30 días)
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 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 18 de Nov. de 2020
Wen's comments (Image) as an answer has been deleted. Same Image in Attached.

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 18 de Nov. de 2020
Editada: KALYAN ACHARJYA el 18 de Nov. de 2020
data=imbinarize(imread('image.jpeg'));
result=edge(data);
figure,imshow(result);
[r,c]=find(result==1);
figure,plot(c,r,'.');
  9 comentarios
Wesley
Wesley el 19 de Nov. de 2020
I found the source of the problem. The reason is that the MATLAB software draws the line with the point in the upper left corner as the origin, so we see the image in the opposite direction to the original image.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by