image - Matlab fast gpuArray visualization -


the task simple, processing gpuarray of descent size, 2048x2048, inside loop , want visualize generating image plot (or heat map) in real time.

a=gpuarray(...); i=nframes     a= ... ;     imagesc(a);     drawnow; end 

now problem low framerate (<10 fps) when using imagesc() or imshow() though processing not take long. if want set 'cdata' image handle declared since beginning, forced move array cpu memory time expensive , defeats purpose.

is there specific tool useful accelerate visualization of gpuarrays?

i've watched webinar on solving pdes gpu presenter has code in real time. can watch video exact idea of i'm looking for.

http://www.mathworks.com/videos/gpu-computing-with-matlab-81840.html?form_seq=conf882&elqsid=1435085269409&potential_use=student&country_code=us


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -