save an image in a directory
Mostrar comentarios más antiguos
Hi, I used: print('-dtiff','example.tif') in my code. now, i need to save the image (example.tif) in a specified directory. My code is: baseFileName = sprintf('TEST%d.tif', j); fullFileName = fullfile(pathName, baseFileName); imwrite(example, fullFileName);
but this error occurs: ??? Undefined function or variable 'example' any idea?
tnx, Azi
Respuesta aceptada
Más respuestas (1)
Jan
el 17 de Ag. de 2011
Look in the documentation of IMWRITE: IMWRITE(A, filename) expects A to be an array containing the pixel values. But in your code "example" is not a defined variable.
I assume you want to move the file:
movefile('example.tif', fullFileName);
Most likely Jiang's answer would be better: Sinmply create the picture file at the wnated location directly.
4 comentarios
Jan
el 17 de Ag. de 2011
@Jiang: I still do not know, if Jiang is your "first" name. Should I write "@Fangjun"?
Fangjun Jiang
el 17 de Ag. de 2011
@Jan, Thank you for asking. Fangjun is my first name. But I really don't mind.
Jan
el 17 de Ag. de 2011
@Fangjun: Mei shi. Wo hen goaxing.
Fangjun Jiang
el 17 de Ag. de 2011
Nice! You are right. You speaks my mother tongue. You got talent, Jan!
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!