image write
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
回答 (3 件)
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 件のコメント
Sivakumaran Chandrasekaran
2012 年 5 月 30 日
Thomas
2012 年 5 月 30 日
so you want to save a live video feed from a webcam?
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
2012 年 6 月 8 日
Image Analyst
2012 年 5 月 30 日
0 投票
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?
0 件のコメント
Walter Roberson
2012 年 5 月 30 日
0 投票
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!