Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!j12g2000vbl.googlegroups.com!not-for-mail
From: Kate <cowgirls1022@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: How to handle uploaded image in Gui
Date: Tue, 30 Jun 2009 09:42:34 -0700 (PDT)
Organization: http://groups.google.com
Lines: 13
Message-ID: <8302325b-083f-42f9-a934-2b32177cf8c2@j12g2000vbl.googlegroups.com>
References: <gudb01$51g$1@fred.mathworks.com> <93a98eeb-81dc-408e-8640-3142cc4542ac@u10g2000vbd.googlegroups.com>
NNTP-Posting-Host: 129.137.246.196
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Trace: posting.google.com 1246380154 32233 127.0.0.1 (30 Jun 2009 16:42:34 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Tue, 30 Jun 2009 16:42:34 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: j12g2000vbl.googlegroups.com; posting-host=129.137.246.196; 
	posting-account=clM-nAoAAAAOIUDNaqGMURLb3wYW_IK5
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) 
	Gecko/20081217 Firefox/2.0.0.20,gzip(gfe),gzip(gfe)
Xref: news.mathworks.com comp.soft-sys.matlab:551744


On May 13, 5:25 am, vedenev <vedenev.ma...@gmail.com> wrote:
> When you open image you use
> [X, map] = imread(...)
> Work with this X.
> When you show image:
> hi=imshow(X,map,'Parent',ha);
> where ha is handle to axis (usualy "handles.axes1")
> now "hi" is handle to image object.
Huge thanks for that - I was working on a medical imaging project
today and needed the GUI to set up an analysis for non-programmers.
This advice is exactly what I needed.  Really appreciate your time in
typing it in.