how can I write and reads an image from a folder?
Mostrar comentarios más antiguos
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 comentarios
Azzi Abdelmalek
el 25 de Jun. de 2015
Can you show us your code? Have you found any particular problems?
yasser
el 1 de Jul. de 2015
Editada: Walter Roberson
el 2 de Jul. de 2015
Image Analyst
el 2 de Jul. de 2015
Make it a full file name - folder plus base file name:
filename = fullfile(pathname, filename);
yasser
el 2 de Jul. de 2015
Respuesta aceptada
Más respuestas (1)
Rushikesh Tade
el 26 de Jun. de 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')
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!