Error line (350) imread pls help me solve it !!

1 vue (au cours des 30 derniers jours)
aldif
aldif le 24 Juil 2014
Modifié(e) : Ben11 le 25 Juil 2014
my code like this:
addpath(genpath('C:\Users\alfit\Documents\MATLAB'))
img_name='C888tif'
I=imread('C888tif');
it come out this error :
*Error using imread (line 350) File "C888tif" does not exist.
Error in main_2DL (line 12) I=imread('C888tif');*

Réponses (1)

Ben11
Ben11 le 24 Juil 2014
Modifié(e) : Ben11 le 25 Juil 2014
My guess would be to explicitly add the tiff extension in the image name, which I modified:
Eg:
I=imread('C888.tif');
since Matlab needs to know what type of data you are trying to open.

Catégories

En savoir plus sur Import, Export, and Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by