image write
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
how to write(save) the output image
Risposte (3)
Thomas
il 30 Mag 2012
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 Commenti
Sivakumaran Chandrasekaran
il 30 Mag 2012
Thomas
il 30 Mag 2012
so you want to save a live video feed from a webcam?
Thomas
il 30 Mag 2012
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
il 8 Giu 2012
Image Analyst
il 30 Mag 2012
0 voti
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?
Questa domanda è chiusa.
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!