Matlab Problem with an Image

1 visualización (últimos 30 días)
Loren99
Loren99 el 10 de Oct. de 2021
Editada: Loren99 el 14 de Oct. de 2021
Hi everyone,
I am new to MATLAB Image Processing and I need your help; how can I extract the values that belongs to an object like a line?Thanks in advance

Respuesta aceptada

Matt J
Matt J el 10 de Oct. de 2021
Editada: Matt J el 10 de Oct. de 2021
A=rgb2gray(imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/763086/image.jpeg'));
B=bwareafilt( imbinarize(A-medfilt2(A,[5,5])) ,1) ;
pixelValues=A(B)
pixelValues = 75×1
237 215 207 250 246 176 187 226 243 242
imshow(B)

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by