Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!1g2000hsl.googlegroups.com!not-for-mail
From: Raj <rajanikanth@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Efficient method to make a movie from a set of images
Date: Wed, 26 Dec 2007 17:56:21 -0800 (PST)
Organization: http://groups.google.com
Lines: 38
Message-ID: <4f94d2c1-d0b2-4f60-a8b5-f651434700f5@1g2000hsl.googlegroups.com>
References: <c9e5a834-8d3c-4b14-8df2-9fb2be9927bc@v4g2000hsf.googlegroups.com> 
NNTP-Posting-Host: 150.135.223.2
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Trace: posting.google.com 1198720582 22497 127.0.0.1 (27 Dec 2007 01:56:22 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Thu, 27 Dec 2007 01:56:22 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: 1g2000hsl.googlegroups.com; posting-host=150.135.223.2; 
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) 
Xref: news.mathworks.com comp.soft-sys.matlab:443570


Thanks for your replies. I need to make each figure(frame) in the
movie with discrete data and I need the points with different colors.
For example:

hold on;
        [m, n] = find(manipu == 0);
            plot(m,n,'.w');
       [m,n] = find(manipu == 45);
                plot(m,n,'.y');

However, the problem with this is that the second plot command is over-
writing the previous color. Is there anyway to make this work?

Thanks,
Raj

On Dec 24, 11:44 pm, "Vihang Patil" <vihang_pa...@yahoo.com> wrote:
> Raj<rajanika...@gmail.com> wrote in message
>
> <c9e5a834-8d3c-4b14-8df2-9fb2be992...@v4g2000hsf.googlegroups.com>...
>
> > Hi!
>
> > Could somebody tell me what is the efficient way to make a
> movie from
> > a set of images in Matlab?
>
> > Thanks,
>
> >Raj
>
> doc im2frame
> and
> doc movie2avi
>
> HTH
> Vihang