From: David Arputharaj on
i have 16 subplots in a figure...
each subplot has equal square-sized images...
i need to get a complete image by combining all my 16 blocks of images..
Could anyone Have the idea?
Thanks in advance..
From: us on
On Apr 5, 9:33 pm, "David Arputharaj" <davidarputhar...(a)gmail.com>
wrote:
> i have 16 subplots in a figure...
> each subplot has equal square-sized images...
> i need to get a complete image by combining all my 16 blocks of images..
> Could anyone Have the idea?
> Thanks in advance..

well... what ...exactly... do you mean by
....combining all my 16 blocks of images...

us
From: David Arputharaj on
us <us(a)neurol.unizh.ch> wrote in message <fd994313-d435-43e6-a938-5267308e489c(a)e7g2000yqf.googlegroups.com>...
> On Apr 5, 9:33 pm, "David Arputharaj" <davidarputhar...(a)gmail.com>
> wrote:
> > i have 16 subplots in a figure...
> > each subplot has equal square-sized images...
> > i need to get a complete image by combining all my 16 blocks of images..
> > Could anyone Have the idea?
> > Thanks in advance..
>
> well... what ...exactly... do you mean by
> ...combining all my 16 blocks of images...
>
> us

Actually, i have divided my original image into 16 blocks(subimage of original image)...
Then i have processed each subimage and got 16 Processed subimages...
Now i have to combine all these 16 subimages to get the final complete image...
Have you got it??
From: us on
"David Arputharaj" <davidarputharaj7(a)gmail.com> wrote in message <hqdq96$1kj$1(a)fred.mathworks.com>...
> us <us(a)neurol.unizh.ch> wrote in message <fd994313-d435-43e6-a938-5267308e489c(a)e7g2000yqf.googlegroups.com>...
> > On Apr 5, 9:33 pm, "David Arputharaj" <davidarputhar...(a)gmail.com>
> > wrote:
> > > i have 16 subplots in a figure...
> > > each subplot has equal square-sized images...
> > > i need to get a complete image by combining all my 16 blocks of images..
> > > Could anyone Have the idea?
> > > Thanks in advance..
> >
> > well... what ...exactly... do you mean by
> > ...combining all my 16 blocks of images...
> >
> > us
>
> Actually, i have divided my original image into 16 blocks(subimage of original image)...
> Then i have processed each subimage and got 16 Processed subimages...
> Now i have to combine all these 16 subimages to get the final complete image...
> Have you got it??

have i got it(??)... maybe...
if(f) so

one of the solutions

img1=.85*magic(4); % <- a block...
img2=.15*magic(4); % <- another block...
img=[ % <- the full block...
img1,img2
img2,img1
];
imagesc(img);
axis image;

us
From: David Arputharaj on
"us " <us(a)neurol.unizh.ch> wrote in message <hqe5to$sob$1(a)fred.mathworks.com>...
> "David Arputharaj" <davidarputharaj7(a)gmail.com> wrote in message <hqdq96$1kj$1(a)fred.mathworks.com>...
> > us <us(a)neurol.unizh.ch> wrote in message <fd994313-d435-43e6-a938-5267308e489c(a)e7g2000yqf.googlegroups.com>...
> > > On Apr 5, 9:33 pm, "David Arputharaj" <davidarputhar...(a)gmail.com>
> > > wrote:
> > > > i have 16 subplots in a figure...
> > > > each subplot has equal square-sized images...
> > > > i need to get a complete image by combining all my 16 blocks of images..
> > > > Could anyone Have the idea?
> > > > Thanks in advance..
> > >
> > > well... what ...exactly... do you mean by
> > > ...combining all my 16 blocks of images...
> > >
> > > us
> >
> > Actually, i have divided my original image into 16 blocks(subimage of original image)...
> > Then i have processed each subimage and got 16 Processed subimages...
> > Now i have to combine all these 16 subimages to get the final complete image...
> > Have you got it??
>
> have i got it(??)... maybe...
> if(f) so
>
> one of the solutions
>
> img1=.85*magic(4); % <- a block...
> img2=.15*magic(4); % <- another block...
> img=[ % <- the full block...
> img1,img2
> img2,img1
> ];
> imagesc(img);
> axis image;
>
> us

thanks...but sorry i can't substitute my blocks in that img1 & img2...im getting combined blocks of various-coloured image...
This is how, i have, after running my program....
I have my each 16 processed block, opened in separate Figure window...How can i get these figures in separate fig. window into one figure window having the combined blocks to get complete image...
Thanks in advance ...
 | 
Pages: 1
Prev: plotting colored 2D data
Next: M-QAM and M-PSK