How to highlight lines on the coin.

 Respuesta aceptada

Morgan
Morgan el 29 de En. de 2024
Editada: Morgan el 29 de En. de 2024
% LOAD IMAGE
B = imread('coin_data.png');
% CONVERT TO GRAY IMAGE
B = im2double(B);
B = rgb2gray(B);
% REMOVE BLACK BOX IN IMAGE
B(B == 0) = 1;
% YOU CAN CLIP B TO GET BETTER EDGES
% HERE BY DOING:
% B = B > lb & B < ub;
% EDGE DETECT
BW = edge(B);
% VIEW IMAGE
imshow(B);
colorbar
% SHOW EDGES
hold on
contour(BW,'-r')
And this is the result I get

Más respuestas (0)

Categorías

Más información sobre Images en Centro de ayuda y File Exchange.

Productos

Versión

R2023b

Preguntada:

el 29 de En. de 2024

Comentada:

el 30 de En. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by