convert mat file to jpg
4 次查看(过去 30 天)
显示 更早的评论
hello guys i have mat files with the size of 512*1024*128 where 128 is the number of images and 512*1024 is the size of the image all i am trying to do is to convert these images to ipg or png files with order so the first image is 1.png and the second image is 2.png till 128.png
thanks for your assist
0 个评论
采纳的回答
Image Analyst
2018-7-3
A slight adaptation of the FAQ to extract your images from your 3-D array
imageArray = array3d(:, :, k);
rather than calling imread()
imageArray = imread(fullFileName);
and you should be all set: https://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!