Path: news.mathworks.com!not-for-mail
From: "Alessandro Mura" <nospam@alessandro.mura.ifsi-roma.inaf.it>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Image name........ imshow()
Date: Fri, 29 Feb 2008 11:00:04 +0000 (UTC)
Organization: INAF - IFSI
Lines: 16
Message-ID: <fq8ojk$bo7$1@fred.mathworks.com>
References: <fq49s2$eup$1@fred.mathworks.com> <fq4ake$rk2$1@fred.mathworks.com> <fq8laj$r6e$1@fred.mathworks.com>
Reply-To: "Alessandro Mura" <nospam@alessandro.mura.ifsi-roma.inaf.it>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1204282804 12039 172.30.248.38 (29 Feb 2008 11:00:04 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 29 Feb 2008 11:00:04 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1278940
Xref: news.mathworks.com comp.soft-sys.matlab:454513



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

you may want to load the image separately
and then you can show it
im=imread(path_to_image_file)
imshow(im)

Ciao

Alessandro Mura