Borrar filtros
Borrar filtros

How to speedup image processing by parallel computing or multicore computing?

2 visualizaciones (últimos 30 días)
Arunas
Arunas el 30 de Ag. de 2012
Editada: Vishal_R el 16 de Jun. de 2014
I have designed image processing systems, which takes the image, preprocess it and do data mining with classification three. The result (class number) of captured image is further transmitted by COM1 port.
Currently I can run 1 frame analysis per 0.1s. Unfortunately my Matlab uses only 1 CPU core of 8 available. Therefore current application is TOO slow for online usage.
How I could use the matlab’s multicore ability from main matlab window? With matlabpool(4), I could speed up calculations up to 4 times, i.e.
1. getting image snapshot.
2. sending to first available LAB.
3. Without sequential waiting of the result TAKE next snapshot -> send to second available LAB/worker. and so on..
4. Collecting classification results asynchronously and sending them to COM port.
So … How to do it? Any ideas?
Regards, Arunas
  2 comentarios
Dan Hickstein
Dan Hickstein el 7 de Oct. de 2013
This is exactly what I would like to do. Not quite sure how to do it though...
Ashish Uthama
Ashish Uthama el 7 de Oct. de 2013
Most compute intensive parts of MATLAB are multi-threaded (i.e should use all the 8 cores). It might be worthwhile to use the profiler to identify bottlenecks and follow up on them to speed it up.

Iniciar sesión para comentar.

Respuestas (1)

Vishal_R
Vishal_R el 16 de Jun. de 2014
Editada: Vishal_R el 16 de Jun. de 2014
You can process your image in parallel using blockproc function.
blockproc(x, {32 32},"Use Parallel", true, func);
where x is your image matrix, {32 32} is the block size (you can increase the block size for better results), func can be any customized function you want to apply on your block.
Use parallel will spawn default numbers of workers. Another alternative would be to use this function on GPU for faster results as compared to CPU.
-Vishal

Community Treasure Hunt

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

Start Hunting!

Translated by