MATLAB: Import image and exporting it

image processingMATLABmatlab functionmatlab gui

good evening,
I can't find the way to create a button that opens a browse window and let me choose an image then display it in axes.
and I need to export the image (after I do some processing) to another directory.
In short, I need a button to import an image that the user choose from a directory. And a button to save the new image after processing to another directory.
I would really appreciate it if someone could help.
thanks in advance

Best Answer

Description
This GUI will help the novice user get up to speed very quickly on using GUI-based applications. Everything is laid out in a very simple Step 1, Step 2, Step 3, etc. layout. It is a very good starting point for a typical image analysis application. This application uses GUIDE to do the user interface design, and has most of the basic controls such as buttons, listboxes, checkboxes, radio buttons, scrollbars, etc. It allows the user to select a folder of images, select one or more images and display them, ...........
You just need to add a button that calls imwrite().
Related Question