Image Transformation using Parallel Processing / GPU

7 次查看(过去 30 天)
Hello all,
I am wondering if it's possible to perform a transformation on two matrices (in my case two images) at the same time, i.e. by using parallel processing or utilising the power of the GPU. I am attempting to transform two video streams (continuously updated images) with two unchanging transformation matrices at the same time. I'm not looking for a solution, just if I'm either barking mad or on the right track.
Cheers!

回答(2 个)

Matt J
Matt J 2013-1-23
Should be possible with PARFOR
parfor j=1:2
VI{j}=imtransform(V{j},...)
end
but if there are only 2, it seems like small gains. You could also try to cut up the resampling coordinates into N parallel chunks
parfor i=1:N
for j=1:2
VI{j}=interp2(V{j},X{i},Y{i})
end
end
The problem there is that multiple workers would require access to the image data V{j} and, in my experience, a lot of the gains can be lost as the images are cloned and broadcast to the workers.
If you have Jacket (they're in the process of merging into Matlab), it has GPU support for INTERP2, and GPUs are better at sharing global data among workers, i.e., the image data won't have to be cloned. However, there is longer broadcasting time to GPUs and it's not clear how much that would hurt you. The GPU would be ideal if you are planning to do many transformations to the same images. Then the broadcasting becomes a 1-time startup cost.
  1 个评论
Sam
Sam 2013-1-23
I was just looking for some food for thought - many thanks for your input. I should rephrase my original question: I am looking to transform two video streams (continuously updated images) with an unchanging transformation matrix. I did look into Jacket, it looks like a nice bit of software!
I am in the process of researching this and just wanted to clarify I wasn't wasting my time. Thanks again!

请先登录,再进行评论。


Jurgen
Jurgen 2013-1-23

类别

Help CenterFile Exchange 中查找有关 GPU Computing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by