setNumThreads function

void setNumThreads(
  1. int n
)

Set the number of threads for OpenCV.

Implementation

void setNumThreads(int n) {
  cvRun(() => ccore.SetNumThreads(n));
}