Is there a way to disable TBB in openCV?
C-code (using openCV) I seem to be using TBB and I want to compare the performance with one that doesn't use TBB.
Is there a way to disable TBB?
+1
IKS
source
to share
1 answer
Try it setNumThreads(0)
, or for a more thorough solution try recompiling the libraries as described.
+1
1''
source
to share