how can I write and reads an image from a folder?
Afficher commentaires plus anciens
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
Azzi Abdelmalek
le 25 Juin 2015
Can you show us your code? Have you found any particular problems?
yasser
le 1 Juil 2015
Modifié(e) : Walter Roberson
le 2 Juil 2015
Image Analyst
le 2 Juil 2015
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
yasser
le 2 Juil 2015
Réponse acceptée
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')
Catégories
En savoir plus sur Images dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!