how can I write and reads an image from a folder?
Mostra commenti meno recenti
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 Commenti
Azzi Abdelmalek
il 25 Giu 2015
Can you show us your code? Have you found any particular problems?
yasser
il 1 Lug 2015
Modificato: Walter Roberson
il 2 Lug 2015
Image Analyst
il 2 Lug 2015
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
yasser
il 2 Lug 2015
Risposta accettata
Più risposte (1)
Rushikesh Tade
il 26 Giu 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')
Categorie
Scopri di più su Images in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!