how can I write and reads an image from a folder?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
yasser
le 25 Juin 2015
Modifié(e) : Walter Roberson
le 2 Juil 2015
I want a code solve this
- read an image from a folder
- select image and show it into axes
- write into the image by making some filters
4 commentaires
Image Analyst
le 2 Juil 2015
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
Réponse acceptée
Image Analyst
le 26 Juin 2015
Start with my Image Segmentation Tutorial. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 It does all of the things you requested.
0 commentaires
Plus de réponses (1)
Rushikesh Tade
le 26 Juin 2015
- read an image from a folder
variable_name=imread('image_name.ext')
- select image and show it into axes
imshow(variable_name)
- write into the image by making some filters
imwrite(Variable_consisting_processed_image,'output_filename')
0 commentaires
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!