how to store image read values using command 'imread'?

조회 수: 8 (최근 30일)
Pramod
Pramod 2012년 10월 1일
how to store image read values using command 'imread'?

답변 (1개)

Image Analyst
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);

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by