how can I write and reads an image from a folder?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
Image Analyst
2015년 7월 2일
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
채택된 답변
Image Analyst
2015년 6월 26일
Start with my Image Segmentation Tutorial. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 It does all of the things you requested.
댓글 수: 0
추가 답변 (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')
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!