Borrar filtros
Borrar filtros

Error using imread (line 368) ; File "..." does not exist

2 visualizaciones (últimos 30 días)
Ankit Gupta
Ankit Gupta el 3 de Mayo de 2013
Hi all, I am getting this error , can please any tell what I am doing wrong, as file do exists.
myFolder = 'C:\Users\Ankit Gupta\Desktop\image\'; if ~isdir(myFolder) errorMessage = sprintf('Error: The following folder does not exist:\n%s', myFolder); uiwait(warndlg(errorMessage)); return; end filePattern = fullfile(myFolder, '*.png'); pngfiles = dir(filePattern); >> im1 = imread(pngfiles(1).name) Error using imread (line 368)

Respuesta aceptada

Iman Ansari
Iman Ansari el 3 de Mayo de 2013
Hi. change your current folder to myFolder:
cd(myFolder)
or use this:
im1 = imread([myFolder pngfiles(1).name])

Más respuestas (0)

Categorías

Más información sobre Image Filtering and Enhancement 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