image in GUI matlab axes

i want to insert a picture in axes using GUI. and i want to specify the position in axes any help ?

Answers (1)

image(handles.TheDestinationAxes, x, y, TheImageArray)

6 Comments

ImageArray=location of the image ?
TheImageArray is the content of the image, not the location of the image. You would need to have read in the image already. For example,
TheImageArray = imread('YourImageFile.bmp');
isn't work!!
I have done it myself a number of times, except that I personally am more likely to use the alternate syntax
image(TheImageArray, 'XData', x, 'YData', y, 'Parent', handles.TheDestinationAxes)
which is equivalent.
What difficulty are you encountering? Are you getting an error message? Is the image not showing up? Is the image showing up in a place that is different than you are expecting?
this is the code :
TheImageArray=imread('Array.jpg')
image(handles.axes1, 1, 1, TheImageArray)
the error: Too many input arguments.
If you want it at 1,1, then you don't even need that.
TheImageArray=imread('Array.jpg')
image(handles.axes1, TheImageArray)
Or use
imshow(TheImageArray, 'Parent', handles.axes1);

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Asked:

on 11 Jan 2016

Edited:

on 19 Jan 2016

Community Treasure Hunt

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

Start Hunting!