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? 回答1: 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. 回答2: I've had a brief look at the class CascadeClassifier in modules