Convert images into .Mat files
22 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
pizzaa
am 19 Mai 2023
Beantwortet: Piyush Dubey
am 30 Mai 2023
Hi guys i have 6 of this images. I want to try to make it into .mat files. Just like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1388144/image.png)
In the picture above, u can see that there is 3 images that has 65536 in size. Now i want to turn my 6 images into .mat files just like this picture above.
What kind of code do i use?? thanks
2 Kommentare
Dyuman Joshi
am 19 Mai 2023
Bearbeitet: Dyuman Joshi
am 19 Mai 2023
"In the picture above, u can see that there is 3 images that has 65536 in size."
Are you sure about that?
Ideally you can use a loop to achieve this, As you have named the images serially, but make sure that all the images are in the current directory.
for k=0:5
str = sprintf('chrome.%d.png', k)
I = imread(str);
out = sprintf('chrome%d.mat');
save(out, I)
end
Akzeptierte Antwort
Piyush Dubey
am 30 Mai 2023
Hi Putra,
Images need not be converted to .mat extension. Images can be read using imread() function and then saved with .mat extension. More clarity can be obtained on a similar MATLAB Answer’s thread attached below:
Hope this helps.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!