Path: news.mathworks.com!not-for-mail
From: "Mamata Kukreja" <mamata_kukreja@yahoo.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Image name........ imshow()
Date: Fri, 29 Feb 2008 10:04:03 +0000 (UTC)
Organization: SIES
Lines: 42
Message-ID: <fq8laj$r6e$1@fred.mathworks.com>
References: <fq49s2$eup$1@fred.mathworks.com> <fq4ake$rk2$1@fred.mathworks.com>
Reply-To: "Mamata Kukreja" <mamata_kukreja@yahoo.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1204279443 27854 172.30.248.37 (29 Feb 2008 10:04:03 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 29 Feb 2008 10:04:03 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1253471
Xref: news.mathworks.com comp.soft-sys.matlab:454504


"Bryan " <cssmwbs@gmail.com> wrote in message <fq4ake$rk2
$1@fred.mathworks.com>...
> "Mamata Kukreja" <mamata_kukreja@yahoo.com> wrote in 
message
> <fq49s2$eup$1@fred.mathworks.com>...
> > Hello,
> > I have displayed images in GUI using AXES....
> > The problem that is coming is when i am displaying the 
> > image along with that the path(From where the image 
was 
> > read) of the image also gets printed above the 
image.... 
> > I dont want the the path to be printed can anyone help 
in 
> > this....
> 
> i am not sure what, exactly, is going on in your code.  
if
> you could post your code, it might help.  short of that,
> maybe you can simply have no text displayed above your 
image
> if you add this to your code:
> 
> title([]);
> 
> this just sets the title string to an empty vector, so
> nothing will be displayed there.
> 
> hth,
> bryan


Hiee Bryan,
I am attaching a small piece of code for where i dont want 
the image name to be displayed.....

path='C:\StorageTemp\tempBMPFile\deepika2.bmp';
h1=subplot('Position',[0.49 0.63 0.1 0.16]); 
a=char(path)
imshow(a);
.........................