how do i save multiple subimages in a subplot seperately into a file??

3 views (last 30 days)
I have detected and cropped multiple images and displaying it in a subplot.Now I want to save these subplots separately into a file.Also put the code if possible. thank you
  2 Comments
Stephen23
Stephen23 on 9 Jun 2017
How to read multiple files is explained extensively in the documentation, on this forum, and in the wiki:
etc
The first thing to decide is if you want to generate the file names, or if you want to read the names of existing files:
  • generate names: use sprintf and fullfile.
  • read names: use dir and fullfile.
You can also find some examples with my FEX submission natsortfiles:
And as KSSV has already said, simply use one figure and replace the image data on each loop iteration. Then saving is easy.

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!