How to print index number when ploting figures from functions
1 view (last 30 days)
Show older comments
Hello everyone!
I have written the next piece of code that calls a funtions and saves the 4 figures that are created from that function for every image in a folder but the images are overwritten because i cant index the images inside the function.
This is my code :
folder = 'C:\Users\lena\Desktop';
outLoopValues = [1,2];
for k = 1 : length(outLoopValues)
index = outLoopValues(k);
thisBaseFileName = sprintf('%d.png', index);
thisFileName = fullfile(folder, thisBaseFileName);
images{index} = imread(sprintf('%d.png', index));
[f1, f2, f3, f4] = an_function(images{index})
end
So an_function takes my images as inputs and makes the 4 figures as outpouts but i dont know how to change the name inside each one of the figures in the function so that it is saved lets say with f1image_index1 for the first index and f1image_index2 for the second index
2 Comments
Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!