how to store image read values using command 'imread'?
11 ビュー (過去 30 日間)
古いコメントを表示
how to store image read values using command 'imread'?
0 件のコメント
回答 (1 件)
Image Analyst
2012 年 10 月 1 日
編集済み: Image Analyst
2012 年 10 月 1 日
You don't. You use imwrite(). See the help.
% Create an image
imageArray = randi(255, [256 256]);
% Or read one in from disk
imageArray = imread('moon.tif');
% Store it in a file.
imwrite(imageArray, filename);
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!