Path: news.mathworks.com!not-for-mail
From: "David Doria" <daviddoria@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Display an image in a 3d plot
Date: Wed, 15 Oct 2008 20:03:02 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 15
Message-ID: <gd5i9m$5j3$1@fred.mathworks.com>
References: <gd5bre$bf4$1@fred.mathworks.com> <UArJk.231$_B6.93@newsfe12.iad> <gd5hdi$pds$1@fred.mathworks.com>
Reply-To: "David Doria" <daviddoria@gmail.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 1224100982 5731 172.30.248.37 (15 Oct 2008 20:03:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Wed, 15 Oct 2008 20:03:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1105197
Xref: news.mathworks.com comp.soft-sys.matlab:495449


-------------
With the first method:

Z=5;
I = imread('ImagePlane.jpg');
surf(Z*ones(size(I)), I,'EdgeColor','none')

I get 
Warning: Matrix dimensions must agree, not rendering mesh

-----------

Ken, perfect - that looks exactly like what I was looking for - I'll mess with it more and report back.

Dave