1 | initial version |
When you build OpenCV with cmake, include the option WITH_TBB=ON. Example:
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_PYTHON_SUPPORT=ON ..
2 | No.2 Revision |
First of all, you need to have TBB installed. You can get it at http://threadingbuildingblocks.org/.
When you build OpenCV with cmake, include the option WITH_TBB=ON. Example:
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_PYTHON_SUPPORT=ON ..