Check if OpenCV is compiled with TBB

后端 未结 1 460
-上瘾入骨i
-上瘾入骨i 2021-01-04 06:38

How can I check if the OpenCV libraries installed on my Linux machine are compiled against TBB libraries or not?

相关标签:
1条回答
  • 2021-01-04 07:38

    Print the shared library dependencies of *libopencv_core* using ldd:

    ldd /usr/local/lib/libopencv_core.so
    

    And you should see TBB on the list.

    If you were on Mac OS X the equivalent is otool -L, and on my system it outputs:

    /Users/karlphillip/installers/OpenCV-2.4.2/build/lib/libopencv_core.2.4.dylib (compatibility version 2.4.0, current version 2.4.2)
    libtbb.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 52.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.1.0)
    

    So according to the output above, my OpenCV installation was built to support TBB. ;D

    0 讨论(0)
提交回复
热议问题