How do I save a series of Output images in a folder (that is inside a for loop)?
3 ビュー (過去 30 日間)
古いコメントを表示
imshow(img)
hold on
plot([xLeftY, xRightY], [yLeftY, yRightY], 'LineWidth',5,'Color','Yellow');
plot([xLeftW, xRightW], [yLeftW, yRightW], 'LineWidth',5,'Color','White');
hold off
The above code shows a series of images that is inside a for loop and plots lines on the image
I need to save the output images (251 images)
0 件のコメント
回答 (3 件)
Image Analyst
2021 年 12 月 10 日
Use sprintf() to create a filename, like
folder = 'C:/Jasons images'; % Whatever...
for loopCounter = 1 : whatever...
filename = fullfile(folder, sprintf('Image %2.2d', loopCounter));
% Plot to an axes... Then save to a disk file with exportgraphics():
exportgraphics(gca, filename);
end
0 件のコメント
yanqi liu
2021 年 12 月 10 日
for i = 1:251
imshow(img)
hold on
plot([xLeftY, xRightY], [yLeftY, yRightY], 'LineWidth',5,'Color','Yellow');
plot([xLeftW, xRightW], [yLeftW, yRightW], 'LineWidth',5,'Color','White');
hold off
% get figure snap and save to png file
f = getframe(gcf);
f = frame2im(f);
if ~exist('./fd', 'dir')
mkdir('./fd');
end
imwrite(f, sprintf('./fd/%03d.png', i));
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!