Filter löschen
Filter löschen

saving images onto a folder

24 Ansichten (letzte 30 Tage)
shru s
shru s am 12 Jun. 2017
Kommentiert: Image Analyst am 28 Mär. 2020
hello, i have images being generated after every loop and i want to store them all in one folder only. but with the saveas option, the images get overrriden to those already in the folder. do you guys know how i can fix this? thank you. i am using the following code right now:
h = findobj('type','figure');
n = length(h);
for k=1:n
saveas(figure(k),fullfile('C:\Users\Desktop\project\A data\SegmentedCharWithBlanks',['figure' num2str(k) '.jpg']));
end
  7 Kommentare
shru s
shru s am 12 Jun. 2017
The same program is generating a number of images per loop and im trying to save them all together. I did try to use the largest number to index but havent been successful yet. Ill try it again.Thank you so much for taking the time to look into my issue. I am grateful
shru s
shru s am 12 Jun. 2017
Bearbeitet: shru s am 12 Jun. 2017
got it!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 12 Jun. 2017
Use sprintf() to create the filename. It can be unique for each iteration of your loop. Then use imwrite() if you want to save images. For example:
baseFileName = sprintf('Image #%d.png', k);
fullFileName = fullfile(folder, baseFileName);
imwrite(yourImage, fullFileName);
Use saveas() or save() (instead of imwrite) if you want to save figures - basically screenshots of the axes with tickmarks, labels, title, legends, stuff in the graphical overlay above the image like lines and text, etc.
  2 Kommentare
shru s
shru s am 12 Jun. 2017
Thank you so much for always helping me out!
Fawad Chandio
Fawad Chandio am 3 Sep. 2019
fullFileName means which file...??
baseFileName .....??

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Malayappan Shridhar
Malayappan Shridhar am 28 Mär. 2020
I wish to write a binary image imbin to a folder with the name shown below.
WriteFileName = "C:\ISI-Kappa\FromWorkBin\Front_1\b_180311788230057_Front.jpg"
My command is imwrite(imbin, WriteFileName)
I get this error: Error using imwrite>parse_inputs (line 523)
A filename must be supplied.
I appreciate any help to resolve this error
  1 Kommentar
Image Analyst
Image Analyst am 28 Mär. 2020
Are you sure that folder already exists because I'm not sure imwrite() will create folders automatically, though it might. You also might try using forward slashes. What does this say:
whos imbin
Is it a uint8 image?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Printing and Saving finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by