OpenCV  3.3.0
Open Source Computer Vision
Modules | Classes | Typedefs | Enumerations | Functions
Deep Neural Network module

Modules

 Partial List of Implemented Layers
 
 Utilities for New Layers Registration
 

Classes

class  cv::dnn::BackendNode
 Derivatives of this class encapsulates functions of certain backends. More...
 
class  cv::dnn::BackendWrapper
 Derivatives of this class wraps cv::Mat for different backends and targets. More...
 
class  cv::dnn::Dict
 This class implements name-value dictionary, values are instances of DictValue. More...
 
struct  cv::dnn::DictValue
 This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64. More...
 
class  cv::dnn::Importer
 Small interface class for loading trained serialized models of different dnn-frameworks. More...
 
class  cv::dnn::Layer
 This interface class allows to build new Layers - are building blocks of networks. More...
 
class  cv::dnn::LayerParams
 This class provides all data needed to initialize layer. More...
 
class  cv::dnn::Net
 This class allows to create and manipulate comprehensive artificial neural networks. More...
 

Typedefs

typedef std::vector< int > cv::dnn::MatShape
 

Enumerations

enum  cv::dnn::Backend {
  cv::dnn::DNN_BACKEND_DEFAULT,
  cv::dnn::DNN_BACKEND_HALIDE
}
 Enum of computation backends supported by layers. More...
 
enum  cv::dnn::Target {
  cv::dnn::DNN_TARGET_CPU,
  cv::dnn::DNN_TARGET_OPENCL
}
 Enum of target devices for computations. More...
 

Functions

Mat cv::dnn::blobFromImage (const Mat &image, double scalefactor=1.0, const Size &size=Size(), const Scalar &mean=Scalar(), bool swapRB=true)
 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. More...
 
Mat cv::dnn::blobFromImages (const std::vector< Mat > &images, double scalefactor=1.0, Size size=Size(), const Scalar &mean=Scalar(), bool swapRB=true)
 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. More...
 
Ptr< Importercv::dnn::createCaffeImporter (const String &prototxt, const String &caffeModel=String())
 Creates the importer of Caffe framework network. More...
 
Ptr< Importercv::dnn::createTensorflowImporter (const String &model)
 Creates the importer of TensorFlow framework network. More...
 
Ptr< Importercv::dnn::createTorchImporter (const String &filename, bool isBinary=true)
 Creates the importer of Torch7 framework network. More...
 
Net cv::dnn::readNetFromCaffe (const String &prototxt, const String &caffeModel=String())
 Reads a network model stored in Caffe model files. More...
 
Net cv::dnn::readNetFromTensorflow (const String &model)
 Reads a network model stored in Tensorflow model file. More...
 
Net cv::dnn::readNetFromTorch (const String &model, bool isBinary=true)
 Reads a network model stored in Torch model file. More...
 
Mat cv::dnn::readTorchBlob (const String &filename, bool isBinary=true)
 Loads blob which was serialized as torch.Tensor object of Torch7 framework. More...
 

Detailed Description

This module contains:

Functionality of this module is designed only for forward pass computations (i. e. network testing). A network training is in principle not supported.

Typedef Documentation

§ MatShape

typedef std::vector<int> cv::dnn::MatShape

Enumeration Type Documentation

§ Backend

Enum of computation backends supported by layers.

Enumerator
DNN_BACKEND_DEFAULT 
DNN_BACKEND_HALIDE 

§ Target

Enum of target devices for computations.

Enumerator
DNN_TARGET_CPU 
DNN_TARGET_OPENCL 

Function Documentation

§ blobFromImage()

Mat cv::dnn::blobFromImage ( const Mat image,
double  scalefactor = 1.0,
const Size size = Size(),
const Scalar mean = Scalar(),
bool  swapRB = true 
)

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.

Parameters
imageinput image (with 1- or 3-channels).
sizespatial size for output image
meanscalar with mean values which are subtracted from channels. Values are intended to be in (mean-R, mean-G, mean-B) order if image has BGR ordering and swapRB is true.
scalefactormultiplier for image values.
swapRBflag which indicates that swap first and last channels in 3-channel image is necessary.

input image is resized so one side after resize is equal to corresponing dimension in size and another one is equal or larger. Then, crop from the center is performed.

Returns
4-dimansional Mat with NCHW dimensions order.

§ blobFromImages()

Mat cv::dnn::blobFromImages ( const std::vector< Mat > &  images,
double  scalefactor = 1.0,
Size  size = Size(),
const Scalar mean = Scalar(),
bool  swapRB = true 
)

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.

Parameters
imagesinput images (all with 1- or 3-channels).
sizespatial size for output image
meanscalar with mean values which are subtracted from channels. Values are intended to be in (mean-R, mean-G, mean-B) order if image has BGR ordering and swapRB is true.
scalefactormultiplier for images values.
swapRBflag which indicates that swap first and last channels in 3-channel image is necessary.

input image is resized so one side after resize is equal to corresponing dimension in size and another one is equal or larger. Then, crop from the center is performed.

Returns
4-dimansional Mat with NCHW dimensions order.

§ createCaffeImporter()

Ptr<Importer> cv::dnn::createCaffeImporter ( const String prototxt,
const String caffeModel = String() 
)

Creates the importer of Caffe framework network.

Parameters
prototxtpath to the .prototxt file with text description of the network architecture.
caffeModelpath to the .caffemodel file with learned network.
Returns
Pointer to the created importer, NULL in failure cases.

§ createTensorflowImporter()

Ptr<Importer> cv::dnn::createTensorflowImporter ( const String model)

Creates the importer of TensorFlow framework network.

Parameters
modelpath to the .pb file with binary protobuf description of the network architecture.
Returns
Pointer to the created importer, NULL in failure cases.

§ createTorchImporter()

Ptr<Importer> cv::dnn::createTorchImporter ( const String filename,
bool  isBinary = true 
)

Creates the importer of Torch7 framework network.

Parameters
filenamepath to the file, dumped from Torch by using torch.save() function.
isBinaryspecifies whether the network was serialized in ascii mode or binary.
Returns
Pointer to the created importer, NULL in failure cases.
Warning
Torch7 importer is experimental now, you need explicitly set CMake opencv_dnn_BUILD_TORCH_IMPORTER flag to compile its.
Note
Ascii mode of Torch serializer is more preferable, because binary mode extensively use long type of C language, which has various bit-length on different systems.

The loading file must contain serialized nn.Module object with importing network. Try to eliminate a custom objects from serialazing data to avoid importing errors.

List of supported layers (i.e. object instances derived from Torch nn.Module class):

  • nn.Sequential
  • nn.Parallel
  • nn.Concat
  • nn.Linear
  • nn.SpatialConvolution
  • nn.SpatialMaxPooling, nn.SpatialAveragePooling
  • nn.ReLU, nn.TanH, nn.Sigmoid
  • nn.Reshape
  • nn.SoftMax, nn.LogSoftMax

Also some equivalents of these classes from cunn, cudnn, and fbcunn may be successfully imported.

§ readNetFromCaffe()

Net cv::dnn::readNetFromCaffe ( const String prototxt,
const String caffeModel = String() 
)

Reads a network model stored in Caffe model files.

This is shortcut consisting from createCaffeImporter and Net::populateNet calls.

§ readNetFromTensorflow()

Net cv::dnn::readNetFromTensorflow ( const String model)

Reads a network model stored in Tensorflow model file.

This is shortcut consisting from createTensorflowImporter and Net::populateNet calls.

§ readNetFromTorch()

Net cv::dnn::readNetFromTorch ( const String model,
bool  isBinary = true 
)

Reads a network model stored in Torch model file.

This is shortcut consisting from createTorchImporter and Net::populateNet calls.

§ readTorchBlob()

Mat cv::dnn::readTorchBlob ( const String filename,
bool  isBinary = true 
)

Loads blob which was serialized as torch.Tensor object of Torch7 framework.

Warning
This function has the same limitations as createTorchImporter().