Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV Multi Core Support

I was wondering if there is multi core support for the OpenCV library. I am experimenting with Haar cascading and it's pretty slow on my Raspberry 2 which would have four cores, but my application is currently running only on a single one.

Any ideas?

like image 294
salocinx Avatar asked Mar 09 '15 09:03

salocinx


1 Answers

CascadedDetect has multi core support.

Recompile OpenCV with the WITH_TBB or WITH_OPENMP (or any other threading framework supported by OpenCV) flag on to enable it.

like image 63
Tal Darom Avatar answered Oct 05 '22 05:10

Tal Darom