Borrar filtros
Borrar filtros

Problem with imwrite

1 visualización (últimos 30 días)
Jessica
Jessica el 12 de Abr. de 2012
Dear Sir,
i am trying to use imwrite to save some images i selected from my database to put them in a new folder
i used this : image2= imread(['C:\Database\',num2str(x(i)),'.jpg']);
imwrite(image2,fullfile(cd, strcat('C:\Results\',image2,'.jpg')));
would you guide me to solve this?
Thank you
  1 comentario
Jan
Jan el 12 de Abr. de 2012
You forgot to explain the problem.

Iniciar sesión para comentar.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 12 de Abr. de 2012
try
fullfile(cd, strcat('Results\',num2str(x(i)),'.jpg'))
  4 comentarios
Jessica
Jessica el 12 de Abr. de 2012
yes what andrei told me to do worked but now i have the error above
Walter Roberson
Walter Roberson el 12 de Abr. de 2012
You missed the strcat() step, Jessica.

Iniciar sesión para comentar.

Más respuestas (1)

Jan
Jan el 12 de Abr. de 2012
This is not valid:
fullfile(cd, strcat('C:\Results\',image2,'.jpg'))
While cd is the current directory, you cannot append the path 'C:\...'. Most likely you want:
fullfile('C:', 'Results', [image2, '.jpg'])
or directly:
['C:\Results\', image2, '.jpg']
to construct the file name.
  1 comentario
Image Analyst
Image Analyst el 12 de Abr. de 2012
Or (my favorite) use sprintf() to construct your base filename:
baseFileName = sprintf('Results %d.PNG', imageNumber);
fullFileName = fullfile(folder, baseFileName);
Note that I use PNG for lossless compression and better saved image quality, rather than JPG.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by