|
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< Importer > | cv::dnn::createCaffeImporter (const String &prototxt, const String &caffeModel=String()) |
| Creates the importer of Caffe framework network. More...
|
|
Ptr< Importer > | cv::dnn::createTensorflowImporter (const String &model) |
| Creates the importer of TensorFlow framework network. More...
|
|
Ptr< Importer > | cv::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...
|
|