how to store image read values using command 'imread'?
조회 수: 8 (최근 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!