imwrite() function for save images
Mostra commenti meno recenti
how will use imwrite() function to save 10 images in different different folder at same or diffident directory
Risposte (1)
Azzi Abdelmalek
il 8 Dic 2012
Modificato: Azzi Abdelmalek
il 8 Dic 2012
Im1=rand(100,100,3) % example of image
imwrite(Im1,'yourfolder/Image1.jpg')
4 Commenti
live to l e a r n MATLAB
il 8 Dic 2012
Azzi Abdelmalek
il 8 Dic 2012
Post your code
Walter Roberson
il 8 Dic 2012
Azzi, your sample code uses 5 as the number of color panes. You need to use 3 for RGB images.
Azzi Abdelmalek
il 8 Dic 2012
Modificato: Azzi Abdelmalek
il 8 Dic 2012
Yes walter, it's a typing error
Im1=rand(100,100,3) % example of image
imwrite(Im1,'yourfolder/Image1.jpg')
Categorie
Scopri di più su Images in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!