Borrar filtros
Borrar filtros

converting tiff file to grey scale using im2gray error at position 1

5 visualizaciones (últimos 30 días)
I try to convert my tiff files to grey scale images. I read that I should use im2grey. But I get an error that there is an invaling argument at position 1 and that the value must be numeric. What does this mean?

Respuestas (1)

Walter Roberson
Walter Roberson el 26 de Abr. de 2021
You have to read the data in first; you cannot pass in a file name
img = imread('flamingos.jpg');
grimg = im2gray(img);
imshow(grimg)
  3 comentarios
Walter Roberson
Walter Roberson el 26 de Abr. de 2021
Example:
for K = 1 : 5
filename = sprintf('img%05d.tiff', K);
outputs(:,:,K) = im2gray(imread(filename));
end

Iniciar sesión para comentar.

Categorías

Más información sobre Import, Export, and Conversion 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