how can I write and reads an image from a folder?

1 Ansicht (letzte 30 Tage)
yasser
yasser am 25 Jun. 2015
Bearbeitet: Walter Roberson am 2 Jul. 2015
I want a code solve this
  1. read an image from a folder
  2. select image and show it into axes
  3. write into the image by making some filters
  4 Kommentare
Image Analyst
Image Analyst am 2 Jul. 2015
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
yasser
yasser am 2 Jul. 2015
thanks Image Analyst I appreciate your help

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 26 Jun. 2015
Start with my Image Segmentation Tutorial. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 It does all of the things you requested.

Weitere Antworten (1)

Rushikesh Tade
Rushikesh Tade am 26 Jun. 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')

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by