CvInvokeNumThreads Property |
http://www.emgu.com
Get or set the number of threads that are used by parallelized OpenCV functions
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static int NumThreads { get; set; }
Public Shared Property NumThreads As Integer
Get
Set
public:
static property int NumThreads {
int get ();
void set (int value);
}
static member NumThreads : int with get, set
Property Value
Type:
Int32
RemarksWhen the argument is zero or negative, and at the beginning of the program, the number of threads is set to the number of processors in the system, as returned by the function omp_get_num_procs() from OpenMP runtime.
See Also