From: M Paheerathan on
I have loaded one image to MatLAB GUI.
I would like to use the loaded image for further processing. How to grab the image details for further processing

such as
A=get(handles.axes1,'Image')......................
I need A for further processing, how to do it?
From: Tomasz on
"M Paheerathan" <mp.mscproject(a)yahoo.com> wrote in message <i2r5b9$3v$1(a)fred.mathworks.com>...
> I have loaded one image to MatLAB GUI.
> I would like to use the loaded image for further processing. How to grab the image details for further processing
>
> such as
> A=get(handles.axes1,'Image')......................
> I need A for further processing, how to do it?

1. how U plot/show image and how U have loaded image?
2. what do U need to do in further processing?
From: M Paheerathan on
What I need is In the GUI I have two axes in one axes (say axes 1) one image is loaded.I would like to apply binary threshold to that image, then would like to plot in axes 2

That is my requirement
From: ImageAnalyst on
On Jul 29, 6:47 am, "M Paheerathan" <mp.mscproj...(a)yahoo.com> wrote:
> What I need is In the GUI I have two axes in one axes (say axes 1) one image is loaded.I would like to apply binary threshold to that image, then would like to plot in axes 2
>
> That is my requirement

---------------------------------------------------------------------
If you've loaded the image, then you already have the image in an
array. Then just do your math on it. See this demo for example on
how to threshold and measure an image:
http://www.mathworks.com/matlabcentral/fileexchange/25157