Prev: wavread 'size' error
Next: scatter
From: Jessica on 10 May 2010 22:38 I am using the code below to display a picture: A=imread('picture.jpg') image(A) Is there a way to resize this so that it fills the computer screen?
From: ImageAnalyst on 11 May 2010 06:18 On May 10, 10:38 pm, "Jessica" <jyorzin...(a)ucdavis.edu> wrote: > I am using the code below to display a picture: > > A=imread('picture.jpg') > image(A) > > Is there a way to resize this so that it fills the computer screen? --------------------------------------------------------------------- set(gcf, 'Position', get(0,'Screensize')); % Enlarge figure to full screen.
From: Jessica on 11 May 2010 07:59 ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <2457ff08-03df-493c-9316-0f707fb43689(a)37g2000yqm.googlegroups.com>... > On May 10, 10:38 pm, "Jessica" <jyorzin...(a)ucdavis.edu> wrote: > > I am using the code below to display a picture: > > > > A=imread('picture.jpg') > > image(A) > > > > Is there a way to resize this so that it fills the computer screen? > > --------------------------------------------------------------------- > > set(gcf, 'Position', get(0,'Screensize')); % Enlarge figure to full > screen. Thanks, this was a big help!
|
Pages: 1 Prev: wavread 'size' error Next: scatter |