Is there a way to disable TBB in openCV?

1.7k Views Asked by At

The C-code(using openCV) I have seems to use TBB and I want to compare the performance with the one that does not use TBB.

Is there a way to disable TBB?

1

There are 1 best solutions below

0
On

Try setNumThreads(0), or for a more thorough solution, try recompiling the libraries as described here.