Deep Neural Network module#
Topics#
Detailed Description#
This module contains:
API for new layers creation, layers are building bricks of neural networks;
set of built-in most-useful Layers;
API to construct and modify comprehensive neural networks from layers;
functionality for loading serialized networks models from different frameworks.
Functionality of this module is designed only for forward pass computations (i.e. network testing). A network training is in principle not supported.
Classes#
Name |
Description |
|---|---|
|
|
|
|
|
Derivatives of this class encapsulates functions of certain backends. View details |
|
Derivatives of this class wraps cv::Mat for different backends and targets. View details |
This class represents high-level API for classification models. View details |
|
|
This class represents high-level API for object detection networks. View details |
|
This class implements name-value dictionary, values are instances of DictValue. View details |
|
This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64. View details |
|
Represents graph or subgraph of a model. The graph (in mathematical terms it’s rather a multigraph) is represented as a topologically-sorted linear sequence of operations. Each operation is a smart pointer to a Layer (some of its derivative class instance), which includes a list of inputs and outputs, as well as an optional list of subgraphs (e.g. ‘If’ contains 2 subgraphs). View details |
|
Processing params of image to blob. View details |
|
This class represents high-level API for keypoints models. View details |
|
This interface class allows to build new Layers - are building blocks of networks. View details |
|
This class provides all data needed to initialize layer. View details |
|
This class is presented high-level API for neural networks. View details |
|
This class allows to create and manipulate comprehensive artificial neural networks. View details |
This class represents high-level API for segmentation models. View details |
|
Base class for text detection networks. View details |
|
This class represents high-level API for text detection DL networks compatible with DB model. View details |
|
This class represents high-level API for text detection DL networks compatible with EAST model. View details |
|
This class represents high-level API for text recognition networks. View details |
|
|
High-level tokenizer wrapper for DNN usage. View details |
Enumerations#
enum cv::dnn::ArgKind {
cv::dnn::DNN_ARG_EMPTY =0,
cv::dnn::DNN_ARG_CONST =1,
cv::dnn::DNN_ARG_INPUT =2,
cv::dnn::DNN_ARG_OUTPUT =3,
cv::dnn::DNN_ARG_TEMP =4,
cv::dnn::DNN_ARG_PATTERN =5
}Enum of computation backends supported by layers. View details
enum cv::dnn::EngineType {
cv::dnn::ENGINE_CLASSIC =1,
cv::dnn::ENGINE_NEW =2,
cv::dnn::ENGINE_AUTO =3,
cv::dnn::ENGINE_ORT =4
}Enum of image processing mode. To facilitate the specialization pre-processing requirements of the dnn model. For example, the letter box often used in the Yolo series of models. View details
enum cv::dnn::ModelFormat {
cv::dnn::DNN_MODEL_GENERIC = 0,
cv::dnn::DNN_MODEL_ONNX = 1,
cv::dnn::DNN_MODEL_TF = 2,
cv::dnn::DNN_MODEL_TFLITE = 3
}
enum cv::dnn::ProfilingMode {
cv::dnn::DNN_PROFILE_NONE = 0,
cv::dnn::DNN_PROFILE_SUMMARY = 1,
cv::dnn::DNN_PROFILE_DETAILED = 2
}
enum struct cv::dnn::SoftNMSMethod {
cv::dnn::SoftNMSMethod::SOFTNMS_LINEAR = 1,
cv::dnn::SoftNMSMethod::SOFTNMS_GAUSSIAN = 2
}Enum of Soft NMS methods. View details
enum cv::dnn::Target {
cv::dnn::DNN_TARGET_CPU = 0,
cv::dnn::DNN_TARGET_OPENCL,
cv::dnn::DNN_TARGET_OPENCL_FP16,
cv::dnn::DNN_TARGET_MYRIAD,
cv::dnn::DNN_TARGET_VULKAN,
cv::dnn::DNN_TARGET_FPGA,
cv::dnn::DNN_TARGET_CUDA,
cv::dnn::DNN_TARGET_CUDA_FP16,
cv::dnn::DNN_TARGET_HDDL,
cv::dnn::DNN_TARGET_NPU,
cv::dnn::DNN_TARGET_CPU_FP16
}Enum of target devices for computations. View details
enum cv::dnn::TracingMode {
cv::dnn::DNN_TRACE_NONE = 0,
cv::dnn::DNN_TRACE_ALL = 1,
cv::dnn::DNN_TRACE_OP = 2
}Typedef Documentation#
LayerFactory_Impl#
typedef std::map< std::string, std::vector< LayerFactory::Constructor > > cv::dnn::LayerFactory_Impl
#include <opencv2/dnn/layer_reg.private.hpp>
MatType#
typedef int cv::dnn::MatType
#include <opencv2/dnn/dnn.hpp>
Enumeration Type Documentation#
ArgKind#
enum cv::dnn::ArgKind
#include <opencv2/dnn/dnn.hpp>
Enumerator:
|
valid only for Arg.idx==0. It’s “no-arg” |
|
a constant argument. |
|
input of the whole model. Before Net::forward() or in Net::forward() all inputs must be set |
|
output of the model. |
|
intermediate result, a result of some operation and input to some other operation(s). |
|
not used for now |
Backend#
enum cv::dnn::Backend
#include <opencv2/dnn/dnn.hpp>
Enum of computation backends supported by layers.
See also
Enumerator:
|
DNN_BACKEND_DEFAULT equals to OPENCV_DNN_BACKEND_DEFAULT, which can be defined using CMake or a configuration parameter. |
|
Intel OpenVINO computational backend, supported targets: CPU, OPENCL, OPENCL_FP16, MYRIAD, HDDL, NPU Note Tutorial how to build OpenCV with OpenVINO: tutorial_dnn_openvino |
|
|
|
|
|
|
|
|
|
|
|
EngineType#
enum cv::dnn::EngineType
#include <opencv2/dnn/dnn.hpp>
Enumerator:
|
Force use the old dnn engine similar to 4.x branch. |
|
Force use the new dnn engine. The engine does not support non CPU back-ends for now. |
|
Try to use the new engine and then fall back to the classic version. |
|
Try to use ONNX Runtime wrapper (ONNX only, requires build with WITH_ONNXRUNTIME=ON). |
ImagePaddingMode#
enum cv::dnn::ImagePaddingMode
#include <opencv2/dnn/dnn.hpp>
Enum of image processing mode. To facilitate the specialization pre-processing requirements of the dnn model. For example, the letter box often used in the Yolo series of models.
See also
Enumerator:
|
|
|
ModelFormat#
enum cv::dnn::ModelFormat
#include <opencv2/dnn/dnn.hpp>
Enumerator:
|
Some generic model format. |
|
ONNX model. |
|
TF model. |
|
TFLite model. |
ProfilingMode#
#include <opencv2/dnn/dnn.hpp>
Enumerator:
|
Don’t do any profiling. |
|
Collect the summary statistics by layer type (e.g. all “Conv2D” or all “Add”) and print it in the end, sorted by the execution time (most expensive layers first). Note that it may introduce some overhead and cause slowdown, especially in the case of non-CPU backends. |
|
Print execution time of each single layer. Note that it may introduce some overhead and cause slowdown, especially in the case of non-CPU backends. |
SoftNMSMethod#
enum class cv::dnn::SoftNMSMethod
#include <opencv2/dnn/dnn.hpp>
Enum of Soft NMS methods.
See also
Enumerator:
|
|
Target#
enum cv::dnn::Target
#include <opencv2/dnn/dnn.hpp>
Enum of target devices for computations.
See also
Enumerator:
|
|
|
|
|
|
|
|
|
|
|
FPGA device with CPU fallbacks using Inference Engine’s Heterogeneous plugin. |
|
|
|
|
|
|
|
|
|
TracingMode#
enum cv::dnn::TracingMode
#include <opencv2/dnn/dnn.hpp>
Enumerator:
|
Don’t trace anything. |
|
Print all executed operations along with the output tensors, more or less compatible with ONNX Runtime. |
|
Print all executed operations. Types and shapes of all inputs and outputs are printed, but the content is not. |
Function Documentation#
argKindToString()#
std::string cv::dnn::argKindToString(ArgKind kind)
#include <opencv2/dnn/dnn.hpp>
blobFromImage()#
Mat cv::dnn::blobFromImage(
InputArray image,
double scalefactor = 1.0,
const Size & size = Size(),
const Scalar & mean = Scalar(),
bool swapRB = false,
bool crop = false,
int ddepth = CV_32F )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImage(image[, scalefactor[, size[, mean[, swapRB[, crop[, ddepth]]]]]]) -> retval
Creates 4-dimensional blob from image. Optionally resizes and crops image from center, subtract mean values, scales values by scalefactor, swap Blue and Red channels.
if crop is true, input image is resized so one side after resize is equal to corresponding dimension in size and another one is equal or larger. Then, crop from the center is performed. If crop is false, direct resize without cropping and preserving aspect ratio is performed.
Note
The order and usage of scalefactor and mean are (input - mean) * scalefactor.
Parameters
image— input image (with 1-, 3- or 4-channels).scalefactor— multiplier forimagesvalues.size— spatial size for output imagemean— scalar with mean values which are subtracted from channels. Values are intended to be in (mean-R, mean-G, mean-B) order ifimagehas BGR ordering andswapRBis true.swapRB— flag which indicates that swap first and last channels in 3-channel image is necessary.crop— flag which indicates whether image will be cropped after resize or notddepth— Depth of output blob. Choose CV_32F or CV_8U.
Returns
4-dimensional Mat with NCHW dimensions order.
blobFromImage()#
void cv::dnn::blobFromImage(
InputArray image,
OutputArray blob,
double scalefactor = 1.0,
const Size & size = Size(),
const Scalar & mean = Scalar(),
bool swapRB = false,
bool crop = false,
int ddepth = CV_32F )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImage(image[, scalefactor[, size[, mean[, swapRB[, crop[, ddepth]]]]]]) -> retval
Creates 4-dimensional blob from image.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
blobFromImages()#
Mat cv::dnn::blobFromImages(
InputArrayOfArrays images,
double scalefactor = 1.0,
Size size = Size(),
const Scalar & mean = Scalar(),
bool swapRB = false,
bool crop = false,
int ddepth = CV_32F )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImages(images[, scalefactor[, size[, mean[, swapRB[, crop[, ddepth]]]]]]) -> retval
Creates 4-dimensional blob from series of images. Optionally resizes and crops images from center, subtract mean values, scales values by scalefactor, swap Blue and Red channels.
if crop is true, input image is resized so one side after resize is equal to corresponding dimension in size and another one is equal or larger. Then, crop from the center is performed. If crop is false, direct resize without cropping and preserving aspect ratio is performed.
Note
The order and usage of scalefactor and mean are (input - mean) * scalefactor.
Parameters
images— input images (all with 1-, 3- or 4-channels).size— spatial size for output imagemean— scalar with mean values which are subtracted from channels. Values are intended to be in (mean-R, mean-G, mean-B) order ifimagehas BGR ordering andswapRBis true.scalefactor— multiplier forimagesvalues.swapRB— flag which indicates that swap first and last channels in 3-channel image is necessary.crop— flag which indicates whether image will be cropped after resize or notddepth— Depth of output blob. Choose CV_32F or CV_8U.
Returns
4-dimensional Mat with NCHW dimensions order.
blobFromImages()#
void cv::dnn::blobFromImages(
InputArrayOfArrays images,
OutputArray blob,
double scalefactor = 1.0,
Size size = Size(),
const Scalar & mean = Scalar(),
bool swapRB = false,
bool crop = false,
int ddepth = CV_32F )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImages(images[, scalefactor[, size[, mean[, swapRB[, crop[, ddepth]]]]]]) -> retval
Creates 4-dimensional blob from series of images.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
blobFromImagesWithParams()#
Mat cv::dnn::blobFromImagesWithParams(
InputArrayOfArrays images,
const Image2BlobParams & param = Image2BlobParams() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImagesWithParams(images[, param]) -> retval
cv.dnn.blobFromImagesWithParams(images[, blob[, param]]) -> blob
Creates 4-dimensional blob from series of images with given params.
This function is an extension of blobFromImages to meet more image preprocess needs. Given input image and preprocessing parameters, and function outputs the blob.
Parameters
images— input image (all with 1-, 3- or 4-channels).param— struct of Image2BlobParams, contains all parameters needed by processing of image to blob.
Returns
4-dimensional Mat.
blobFromImagesWithParams()#
void cv::dnn::blobFromImagesWithParams(
InputArrayOfArrays images,
OutputArray blob,
const Image2BlobParams & param = Image2BlobParams() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImagesWithParams(images[, param]) -> retval
cv.dnn.blobFromImagesWithParams(images[, blob[, param]]) -> blob
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
blobFromImageWithParams()#
Mat cv::dnn::blobFromImageWithParams(
InputArray image,
const Image2BlobParams & param = Image2BlobParams() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImageWithParams(image[, param]) -> retval
cv.dnn.blobFromImageWithParams(image[, blob[, param]]) -> blob
Creates 4-dimensional blob from image with given params.
This function is an extension of blobFromImage to meet more image preprocess needs. Given input image and preprocessing parameters, and function outputs the blob.
Parameters
image— input image (all with 1-, 3- or 4-channels).param— struct of Image2BlobParams, contains all parameters needed by processing of image to blob.
Returns
4-dimensional Mat.
blobFromImageWithParams()#
void cv::dnn::blobFromImageWithParams(
InputArray image,
OutputArray blob,
const Image2BlobParams & param = Image2BlobParams() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.blobFromImageWithParams(image[, param]) -> retval
cv.dnn.blobFromImageWithParams(image[, blob[, param]]) -> blob
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
enableModelDiagnostics()#
void cv::dnn::enableModelDiagnostics(bool isDiagnosticsMode)
#include <opencv2/dnn/dnn.hpp>
Enables detailed logging of the DNN model loading with CV DNN API.
Diagnostic mode provides detailed logging of the model loading stage to explore potential problems (ex.: not implemented layer type).
Note
In diagnostic mode series of assertions will be skipped, it can lead to the expected application crash.
Parameters
isDiagnosticsMode— Indicates whether diagnostic mode should be set.
getAvailableBackends()#
std::vector< std::pair< Backend, Target > > cv::dnn::getAvailableBackends()
#include <opencv2/dnn/dnn.hpp>
getAvailableTargets()#
std::vector< Target > cv::dnn::getAvailableTargets(dnn::Backend be)
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.getAvailableTargets(be) -> retval
getLayerFactoryImpl()#
LayerFactory_Impl & cv::dnn::getLayerFactoryImpl()
#include <opencv2/dnn/layer_reg.private.hpp>
Register layer types of DNN model.
Note
In order to thread-safely access the factory, see getLayerFactoryMutex() function.
getLayerFactoryMutex()#
Mutex & cv::dnn::getLayerFactoryMutex()
#include <opencv2/dnn/layer_reg.private.hpp>
Get the mutex guarding LayerFactory_Impl, see getLayerFactoryImpl() function.
imagesFromBlob()#
void cv::dnn::imagesFromBlob(
const cv::Mat & blob_,
OutputArrayOfArrays images_ )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.imagesFromBlob(blob_[, images_]) -> images_
Parse a 4D blob and output the images it contains as 2D arrays through a simpler data structure (std::vector<cv::Mat>).
Parameters
blob_— 4 dimensional array (images, channels, height, width) in floating point precision (CV_32F) from which you would like to extract the images.images_— array of 2D Mat containing the images extracted from the blob in floating point precision (CV_32F). They are non normalized neither mean added. The number of returned images equals the first dimension of the blob (batch size). Every image has a number of channels equals to the second dimension of the blob (depth).
modelFormatToString()#
std::string cv::dnn::modelFormatToString(ModelFormat modelFormat)
#include <opencv2/dnn/dnn.hpp>
NMSBoxes()#
void cv::dnn::NMSBoxes(
const std::vector< Rect > & bboxes,
const std::vector< float > & scores,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
const float eta = 1.f,
const int top_k = 0 )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.NMSBoxes(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
cv.dnn.NMSBoxesRotated(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
Performs non maximum suppression given boxes and corresponding scores.
Parameters
bboxes— a set of bounding boxes to apply NMS.scores— a set of corresponding confidences.score_threshold— a threshold used to filter boxes by score.nms_threshold— a threshold used in non maximum suppression.indices— the kept indices of bboxes after NMS.eta— a coefficient in adaptive threshold formula: \(nms\_threshold_{i+1}=eta\cdot nms\_threshold_i\).top_k— if>0, keep at mosttop_kpicked indices.
NMSBoxes()#
void cv::dnn::NMSBoxes(
const std::vector< Rect2d > & bboxes,
const std::vector< float > & scores,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
const float eta = 1.f,
const int top_k = 0 )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.NMSBoxes(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
cv.dnn.NMSBoxesRotated(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
NMSBoxes()#
void cv::dnn::NMSBoxes(
const std::vector< RotatedRect > & bboxes,
const std::vector< float > & scores,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
const float eta = 1.f,
const int top_k = 0 )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.NMSBoxes(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
cv.dnn.NMSBoxesRotated(bboxes, scores, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
NMSBoxesBatched()#
void cv::dnn::NMSBoxesBatched(
const std::vector< Rect > & bboxes,
const std::vector< float > & scores,
const std::vector< int > & class_ids,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
const float eta = 1.f,
const int top_k = 0 )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.NMSBoxesBatched(bboxes, scores, class_ids, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
Performs batched non maximum suppression on given boxes and corresponding scores across different classes.
Parameters
bboxes— a set of bounding boxes to apply NMS.scores— a set of corresponding confidences.class_ids— a set of corresponding class ids. Ids are integer and usually start from 0.score_threshold— a threshold used to filter boxes by score.nms_threshold— a threshold used in non maximum suppression.indices— the kept indices of bboxes after NMS.eta— a coefficient in adaptive threshold formula: \(nms\_threshold_{i+1}=eta\cdot nms\_threshold_i\).top_k— if>0, keep at mosttop_kpicked indices.
NMSBoxesBatched()#
void cv::dnn::NMSBoxesBatched(
const std::vector< Rect2d > & bboxes,
const std::vector< float > & scores,
const std::vector< int > & class_ids,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
const float eta = 1.f,
const int top_k = 0 )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.NMSBoxesBatched(bboxes, scores, class_ids, score_threshold, nms_threshold[, eta[, top_k]]) -> indices
readNet()#
Net cv::dnn::readNet(
const String & framework,
const std::vector< uchar > & bufferModel,
const std::vector< uchar > & bufferConfig = std::vector< uchar >(),
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNet(model[, config[, framework[, engine]]]) -> retval
cv.dnn.readNet(framework, bufferModel[, bufferConfig[, engine]]) -> retval
Read deep learning network represented in one of the supported formats.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Parameters
framework— Name of origin framework.bufferModel— A buffer with a content of binary file with weightsbufferConfig— A buffer with a content of text file contains network configuration.engine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now. Use ENGINE_CLASSIC if you want to use other back-ends.
Returns
Net object.
readNet()#
Net cv::dnn::readNet(
CV_WRAP_FILE_PATH const String & model,
CV_WRAP_FILE_PATH const String & config = “”,
const String & framework = “”,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNet(model[, config[, framework[, engine]]]) -> retval
cv.dnn.readNet(framework, bufferModel[, bufferConfig[, engine]]) -> retval
Read deep learning network represented in one of the supported formats.
This function automatically detects an origin framework of trained model and calls an appropriate function such readNetFromTensorflow, readNetFromONNX. An order of model and config arguments does not matter.
Parameters
model— Binary file contains trained weights. The following file extensions are expected for models from different frameworks:*.pb(TensorFlow, https://www.tensorflow.org/)*.bin|*.onnx(OpenVINO, https://software.intel.com/openvino-toolkit)*.onnx(ONNX, https://onnx.ai/)
config— Text file contains network configuration. It could be a file with the following extensions:*.pbtxt(TensorFlow, https://www.tensorflow.org/)*.xml(OpenVINO, https://software.intel.com/openvino-toolkit)
framework— Explicit framework name tag to determine a format.engine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now. Use ENGINE_CLASSIC if you want to use other back-ends.
Returns
Net object.
readNetFromModelOptimizer()#
Net cv::dnn::readNetFromModelOptimizer(
const std::vector< uchar > & bufferModelConfig,
const std::vector< uchar > & bufferWeights )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromModelOptimizer(xml[, bin]) -> retval
cv.dnn.readNetFromModelOptimizer(bufferModelConfig, bufferWeights) -> retval
Load a network from Intel’s Model Optimizer intermediate representation.
Parameters
bufferModelConfig— Buffer contains XML configuration with network’s topology.bufferWeights— Buffer contains binary data with trained weights.
Returns
Net object. Networks imported from Intel’s Model Optimizer are launched in Intel’s Inference Engine backend.
readNetFromModelOptimizer()#
Net cv::dnn::readNetFromModelOptimizer(
const uchar * bufferModelConfigPtr,
size_t bufferModelConfigSize,
const uchar * bufferWeightsPtr,
size_t bufferWeightsSize )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromModelOptimizer(xml[, bin]) -> retval
cv.dnn.readNetFromModelOptimizer(bufferModelConfig, bufferWeights) -> retval
Load a network from Intel’s Model Optimizer intermediate representation.
Parameters
bufferModelConfigPtr— Pointer to buffer which contains XML configuration with network’s topology.bufferModelConfigSize— Binary size of XML configuration data.bufferWeightsPtr— Pointer to buffer which contains binary data with trained weights.bufferWeightsSize— Binary size of trained weights data.
Returns
Net object. Networks imported from Intel’s Model Optimizer are launched in Intel’s Inference Engine backend.
readNetFromModelOptimizer()#
Net cv::dnn::readNetFromModelOptimizer(
CV_WRAP_FILE_PATH const String & xml,
CV_WRAP_FILE_PATH const String & bin = “” )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromModelOptimizer(xml[, bin]) -> retval
cv.dnn.readNetFromModelOptimizer(bufferModelConfig, bufferWeights) -> retval
Load a network from Intel’s Model Optimizer intermediate representation.
Parameters
xml— XML configuration file with network’s topology.bin— Binary file with trained weights.
Returns
Net object. Networks imported from Intel’s Model Optimizer are launched in Intel’s Inference Engine backend.
readNetFromONNX()#
Net cv::dnn::readNetFromONNX(
const char * buffer,
size_t sizeBuffer,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromONNX(onnxFile[, engine]) -> retval
cv.dnn.readNetFromONNX(buffer[, engine]) -> retval
Reads a network model from ONNX in-memory buffer.
Parameters
buffer— memory address of the first byte of the buffer.sizeBuffer— size of the buffer.engine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic.
Returns
Network object that ready to do forward, throw an exception in failure cases.
readNetFromONNX()#
Net cv::dnn::readNetFromONNX(
const std::vector< uchar > & buffer,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromONNX(onnxFile[, engine]) -> retval
cv.dnn.readNetFromONNX(buffer[, engine]) -> retval
Reads a network model from ONNX in-memory buffer.
Parameters
buffer— in-memory buffer that stores the ONNX model bytes.engine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Network object that ready to do forward, throw an exception in failure cases.
readNetFromONNX()#
Net cv::dnn::readNetFromONNX(
CV_WRAP_FILE_PATH const String & onnxFile,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromONNX(onnxFile[, engine]) -> retval
cv.dnn.readNetFromONNX(buffer[, engine]) -> retval
Reads a network model ONNX.
Parameters
onnxFile— path to the .onnx file with text description of the network architecture.engine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Network object that ready to do forward, throw an exception in failure cases.
readNetFromTensorflow()#
Net cv::dnn::readNetFromTensorflow(
const char * bufferModel,
size_t lenModel,
const char * bufferConfig = NULL,
size_t lenConfig = 0,
int engine = ENGINE_AUTO,
const std::vector< String > & extraOutputs = std::vector< String >() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTensorflow(model[, config[, engine[, extraOutputs]]]) -> retval
cv.dnn.readNetFromTensorflow(bufferModel[, bufferConfig[, engine[, extraOutputs]]]) -> retval
Reads a network model stored in TensorFlow framework’s format.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Parameters
bufferModel— buffer containing the content of the pb filelenModel— length of bufferModelbufferConfig— buffer containing the content of the pbtxt filelenConfig— length of bufferConfigengine— select DNN engine to be used. With auto selection the new engine is used.extraOutputs— specify model outputs explicitly, in addition to the outputs the graph analyzer finds. Please pay attention that the new DNN does not support non-CPU back-ends for now.
readNetFromTensorflow()#
Net cv::dnn::readNetFromTensorflow(
const std::vector< uchar > & bufferModel,
const std::vector< uchar > & bufferConfig = std::vector< uchar >(),
int engine = ENGINE_AUTO,
const std::vector< String > & extraOutputs = std::vector< String >() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTensorflow(model[, config[, engine[, extraOutputs]]]) -> retval
cv.dnn.readNetFromTensorflow(bufferModel[, bufferConfig[, engine[, extraOutputs]]]) -> retval
Reads a network model stored in TensorFlow framework’s format.
Parameters
bufferModel— buffer containing the content of the pb filebufferConfig— buffer containing the content of the pbtxt fileengine— select DNN engine to be used. With auto selection the new engine is used.extraOutputs— specify model outputs explicitly, in addition to the outputs the graph analyzer finds. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Net object.
readNetFromTensorflow()#
Net cv::dnn::readNetFromTensorflow(
CV_WRAP_FILE_PATH const String & model,
CV_WRAP_FILE_PATH const String & config = String(),
int engine = ENGINE_AUTO,
const std::vector< String > & extraOutputs = std::vector< String >() )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTensorflow(model[, config[, engine[, extraOutputs]]]) -> retval
cv.dnn.readNetFromTensorflow(bufferModel[, bufferConfig[, engine[, extraOutputs]]]) -> retval
Reads a network model stored in TensorFlow framework’s format.
Parameters
model— path to the .pb file with binary protobuf description of the network architectureconfig— path to the .pbtxt file that contains text graph definition in protobuf format. Resulting Net object is built by text graph using weights from a binary one that let us make it more flexible.engine— select DNN engine to be used. With auto selection the new engine is used.extraOutputs— specify model outputs explicitly, in addition to the outputs the graph analyzer finds. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Net object.
readNetFromTFLite()#
Net cv::dnn::readNetFromTFLite(
const char * bufferModel,
size_t lenModel,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTFLite(model[, engine]) -> retval
cv.dnn.readNetFromTFLite(bufferModel[, engine]) -> retval
Reads a network model stored in TFLite framework’s format.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Parameters
bufferModel— buffer containing the content of the tflite filelenModel— length of bufferModelengine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now.
readNetFromTFLite()#
Net cv::dnn::readNetFromTFLite(
const std::vector< uchar > & bufferModel,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTFLite(model[, engine]) -> retval
cv.dnn.readNetFromTFLite(bufferModel[, engine]) -> retval
Reads a network model stored in TFLite framework’s format.
Parameters
bufferModel— buffer containing the content of the tflite fileengine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Net object.
readNetFromTFLite()#
Net cv::dnn::readNetFromTFLite(
CV_WRAP_FILE_PATH const String & model,
int engine = ENGINE_AUTO )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readNetFromTFLite(model[, engine]) -> retval
cv.dnn.readNetFromTFLite(bufferModel[, engine]) -> retval
Reads a network model stored in TFLite framework’s format.
Parameters
model— path to the .tflite file with binary flatbuffers description of the network architectureengine— select DNN engine to be used. With auto selection the new engine is used first and falls back to classic. Please pay attention that the new DNN does not support non-CPU back-ends for now.
Returns
Net object.
readTensorFromONNX()#
Mat cv::dnn::readTensorFromONNX(CV_WRAP_FILE_PATH const String & path)
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.readTensorFromONNX(path) -> retval
Creates blob from .pb file.
Parameters
path— to the .pb file with input tensor.
Returns
Mat.
softNMSBoxes()#
void cv::dnn::softNMSBoxes(
const std::vector< Rect > & bboxes,
const std::vector< float > & scores,
std::vector< float > & updated_scores,
const float score_threshold,
const float nms_threshold,
std::vector< int > & indices,
size_t top_k = 0,
const float sigma = 0.5,
SoftNMSMethod method = SoftNMSMethod::SOFTNMS_GAUSSIAN )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.softNMSBoxes(bboxes, scores, score_threshold, nms_threshold[, top_k[, sigma[, method]]]) -> updated_scores, indices
Performs soft non maximum suppression given boxes and corresponding scores. Reference: https://arxiv.org/abs/1704.04503.
See also
Parameters
bboxes— a set of bounding boxes to apply Soft NMS.scores— a set of corresponding confidences.updated_scores— a set of corresponding updated confidences.score_threshold— a threshold used to filter boxes by score.nms_threshold— a threshold used in non maximum suppression.indices— the kept indices of bboxes after NMS.top_k— keep at mosttop_kpicked indices.sigma— parameter of Gaussian weighting.method— Gaussian or linear.
writeTextGraph()#
void cv::dnn::writeTextGraph(
CV_WRAP_FILE_PATH const String & model,
CV_WRAP_FILE_PATH const String & output )
#include <opencv2/dnn/dnn.hpp>
Python:
cv.dnn.writeTextGraph(model, output)
Create a text representation for a binary network stored in protocol buffer format.
Note
To reduce output file size, trained weights are not included.
Parameters
model— A path to binary network.output— A path to output text file to be created.