フィルターのクリア

Convert Pictures into Array

18 ビュー (過去 30 日間)
pizzaa
pizzaa 2023 年 3 月 4 日
回答済み: Image Analyst 2023 年 3 月 4 日
Hi guys i want to ask, how do you convert multple .JPG images into .mat files??
This is the picures that i want to convert into .mat files
Into an array just like this
Please help thanks
  1 件のコメント
pizzaa
pizzaa 2023 年 3 月 4 日
I m just so confused,, pls help

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2023 年 3 月 4 日
You already have your JPG files saved on disk. Why do you want to group them with other variables and save them to disk again? This will take up twice as much space. I would just save only the additional variables to a .mat file.
save('answers.mat', 'mask', 'L');
Actually I'd save the mask file as a PNG image file and save only L to a .mat file
imwrite(mask, 'mask.png');
save('answers.mat', 'L');

その他の回答 (1 件)

Anton Kogios
Anton Kogios 2023 年 3 月 4 日
You can use imread to import the images to MATLAB and then use save to save them as a .mat file

カテゴリ

Help Center および File ExchangeImages についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by