Borrar filtros
Borrar filtros

Specify folder for saving images in imwrite

13 visualizaciones (últimos 30 días)
Mohana Singh
Mohana Singh el 14 de Abr. de 2019
Respondida: Walter Roberson el 14 de Abr. de 2019
I need to save images in a loop and also need to assign specific names to them for which I was using the following, which worked fine :
imwrite(view,sprintf('view_%d_%d.png',i,j)); %where view is the image data to be stored
But I also need to save them in specific folders but positioning the folder pathname is giving errors.
imwrite(view,^,sprintf('view_%d_%d.png',i,j),^); %tried putting pathname at locations with ^
> Error: Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
> Error in imwrite (line 418) [data, map, filename, format, paramPairs] = parse_inputs(varargin{:});
What would be the correct syntax?

Respuesta aceptada

Walter Roberson
Walter Roberson el 14 de Abr. de 2019
foldername = 'NameOfFolderGoesHere'
filename = fullfile(foldername, sprintf('view_%d_%d.png', i, j));
imwrite(view, filename);

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by