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!