Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!n11g2000yqb.googlegroups.com!not-for-mail
From: ImageAnalyst <imageanalyst@mailinator.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: combine image parts
Date: Fri, 24 Jul 2009 04:05:27 -0700 (PDT)
Organization: http://groups.google.com
Lines: 18
Message-ID: <701f52c0-8ab6-4b0a-ac88-7dec944aa8ce@n11g2000yqb.googlegroups.com>
References: <h4bv2g$ac0$1@fred.mathworks.com>
NNTP-Posting-Host: 75.186.70.56
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
X-Trace: posting.google.com 1248433527 6493 127.0.0.1 (24 Jul 2009 11:05:27 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Fri, 24 Jul 2009 11:05:27 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: n11g2000yqb.googlegroups.com; posting-host=75.186.70.56; 
	posting-account=0rLUzAkAAABojYSRC64DkTbtiSCX77HH
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; 
	GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 
	3.5.21022),gzip(gfe),gzip(gfe)
Xref: news.mathworks.com comp.soft-sys.matlab:558072


On Jul 24, 5:32 am, "us2 " <u...@yahoo.com> wrote:
> I have NxM sized image and divide it into let's say 4 different parts. I want to see these parts in a figure with a blank between them.
>
> I mean that the new image figure must include all the parts but it must be seen as divided. When I convert the new image into binary, I want to see 4 different partitions separately
>
> how to do this?

------------------------------------------------------------
One way:
1. crop your image into 4 separate images.
2. indicate the axes with subplot(2,2,1).  last arg would be 1, 2, 3,
or 4.
3. display image with image, imshow, or imagesc.
4. repeat steps 2 and 3 until all four parts have been displayed.