Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドを試しました:
imshow(originalImage); imsave;
動作しますが、matlab が画像を bmp 形式で (現在のフォルダーに) 自動的に保存するようにします。私は使用しようとしました:
save('myimage.bmp','originalImage');
写真は保存されましたが、写真ではなく画像自体に次のメッセージが表示されました。(写真のサイズは5kbです)。
ありがとう!
関数imwriteを使用してそれを行います。
imwrite
imwrite(image_matrix, 'myimage.bmp', 'bmp')
mathworks に関するドキュメントを作成する