how can I write and reads an image from a folder?
显示 更早的评论
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 个评论
Azzi Abdelmalek
2015-6-25
Can you show us your code? Have you found any particular problems?
yasser
2015-7-1
编辑:Walter Roberson
2015-7-2
Image Analyst
2015-7-2
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
yasser
2015-7-2
采纳的回答
更多回答(1 个)
Rushikesh Tade
2015-6-26
- 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')
类别
在 帮助中心 和 File Exchange 中查找有关 Images 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!