|
Mat | 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 | 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...
|
|
int | clamp (int ax, int dims) |
|
int | clamp (int ax, const MatShape &shape) |
|
static MatShape | concat (const MatShape &a, const MatShape &b) |
|
Ptr< Importer > | createCaffeImporter (const String &prototxt, const String &caffeModel=String()) |
| Creates the importer of Caffe framework network. More...
|
|
Ptr< Importer > | createTensorflowImporter (const String &model) |
| Creates the importer of TensorFlow framework network. More...
|
|
Ptr< Importer > | createTorchImporter (const String &filename, bool isBinary=true) |
| Creates the importer of Torch7 framework network. More...
|
|
static Mat | getPlane (const Mat &m, int n, int cn) |
|
CV__DNN_EXPERIMENTAL_NS_BEGIN std::ostream & | operator<< (std::ostream &s, cv::Range &r) |
|
void | print (const MatShape &shape, const String &name="") |
|
Net | readNetFromCaffe (const String &prototxt, const String &caffeModel=String()) |
| Reads a network model stored in Caffe model files. More...
|
|
Net | readNetFromTensorflow (const String &model) |
| Reads a network model stored in Tensorflow model file. More...
|
|
Net | readNetFromTorch (const String &model, bool isBinary=true) |
| Reads a network model stored in Torch model file. More...
|
|
Mat | readTorchBlob (const String &filename, bool isBinary=true) |
| Loads blob which was serialized as torch.Tensor object of Torch7 framework. More...
|
|
static MatShape | shape (const int *dims, const int n=4) |
|
static MatShape | shape (const Mat &mat) |
|
static MatShape | shape (int a0, int a1=-1, int a2=-1, int a3=-1) |
|
static Mat | slice (const Mat &m, const _Range &r0) |
|
static Mat | slice (const Mat &m, const _Range &r0, const _Range &r1) |
|
static Mat | slice (const Mat &m, const _Range &r0, const _Range &r1, const _Range &r2) |
|
static Mat | slice (const Mat &m, const _Range &r0, const _Range &r1, const _Range &r2, const _Range &r3) |
|
static int | total (const MatShape &shape, int start=-1, int end=-1) |
|