-
Methods Method Description org.opencv.core.Core.getThreadNum() Current implementation doesn't corresponding to this documentation. The exact meaning of the return value depends on the threading framework used by OpenCV library:-
TBB
- Unsupported with current 4.1 TBB release. Maybe will be supported in future. -
OpenMP
- The thread number, within the current team, of the calling thread. -
Concurrency
- An ID for the virtual processor that the current context is executing on (0 for master thread and unique number for others, but not necessary 1,2,3,...). -
GCD
- System calling thread's ID. Never returns 0 inside parallel region. -
C=
- The index of the current parallel task. SEE: setNumThreads, getNumThreads
org.opencv.dnn.Dnn.getInferenceEngineBackendType() org.opencv.dnn.Dnn.setInferenceEngineBackendType(String) org.opencv.dnn.Layer.run(List<Mat>, List<Mat>, List<Mat>) This method will be removed in the future release.org.opencv.dnn.Net.getLayer(String) Use int getLayerId(const String &layer)org.opencv.text.Text.loadOCRHMMClassifierCNN(String) use loadOCRHMMClassifier insteadorg.opencv.text.Text.loadOCRHMMClassifierNM(String) loadOCRHMMClassifier instead -