I wish to apply filter motion for certain number of iteration on different images, each image will be divided into different block size.

For example, if the image size is 1024*870,,How to divide this image into different block sizes (8*8), (16*16), (64*64), etc. using matlab????

link|improve this question
What is your actual question here? – talonmies Dec 4 '11 at 9:53
How to divide this image into different block sizes (8*8), (16*16), (64*64), etc. using matlab & jacket to run it under cuda – pyCuda Dec 4 '11 at 10:03
So this is a question about image (really array) slicing in Matlab? – talonmies Dec 4 '11 at 10:17
yes, after we slice the image into different block sizes we shall define the optimal block size to use in parallel processing on gpu – pyCuda Dec 4 '11 at 10:33
feedback

1 Answer

It's not perfect but I would do:

A=rand(128);
Apatch=im2col(A,[64 64],'distinct');
Apacth=gpuarray(Apatch);

Otherwise you can try (I am not sure it speeds up):

A=rand(128);
A=gpuarray(A);
Apatch=im2col(A,[64 64],'distinct');
Apacth=gpuarray(Apatch);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.