Is there a way to read images from a folder and save it in powerpoint
2 views (last 30 days)
Show older comments
I have approx. 100 images , I want to read those images, do the resizing and save it in a power point using matlab, Is it way to save those images in a power point giving title to each slide. I am reading images using this code:
for i = 1:numel(pngfiles)
im{i} = imread(pngfiles{i});
imrgb{i} = rgb2gray(im{i});
imrgb_z{i} = imrgb{i}(160:350,280:450);
end
How do I save all those images in im{i} or Imrgb_z{i}, in a power point.Please let me know.
Thanks,
0 Comments
Accepted Answer
Shashank Prasanna
on 29 Jul 2013
Here is a technical support solution that explains how to go about it:
3 Comments
More Answers (0)
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!