필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
Arunas
Arunas 2012년 8월 30일
편집: Vishal_R 2014년 6월 16일
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
Dan Hickstein
Dan Hickstein 2013년 10월 7일
This is exactly what I would like to do. Not quite sure how to do it though...
Ashish Uthama
Ashish Uthama 2013년 10월 7일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Vishal_R
Vishal_R 2014년 6월 16일
편집: Vishal_R 2014년 6월 16일
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