필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

image write

조회 수: 1 (최근 30일)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2012년 5월 30일
마감: MATLAB Answer Bot 2021년 8월 20일
how to write(save) the output image

답변 (3개)

Thomas
Thomas 2012년 5월 30일
If you want to save your plots you could use the print command
doc print
Eg.
h=figure
plot(1:4)
print(h,'-dbmp','-noui','myFig') % this saves myFig.bmp in current directory
To save an image you can use imwrite
doc imwrite
  댓글 수: 4
Thomas
Thomas 2012년 5월 30일
this page has some tricks you might want to try..
http://groups.google.com/group/comp.soft-sys.matlab/browse_thread/thread/826736766cc3f3b3
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2012년 6월 8일
Thanks.., The link helped me to find the right solution

Image Analyst
Image Analyst 2012년 5월 30일
You need to describe this better. I've never heard of imsave(). Of course I've heard of imwrite() and it works fine - you just need to supply it the proper numerical array and filename. Why are you not able to supply those, or else what is going wrong when you do?

Walter Roberson
Walter Roberson 2012년 5월 30일

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by