DnnInvokeImagesFromBlob Method |
http://www.emgu.com
Parse a 4D blob and output the images it contains as 2D arrays through a simpler data structure (std::vector<cv::Mat>).
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void ImagesFromBlob(
Mat blob,
IOutputArrayOfArrays images
)
Public Shared Sub ImagesFromBlob (
blob As Mat,
images As IOutputArrayOfArrays
)
public:
static void ImagesFromBlob(
Mat^ blob,
IOutputArrayOfArrays^ images
)
static member ImagesFromBlob :
blob : Mat *
images : IOutputArrayOfArrays -> unit
Parameters
- blob
- Type: Emgu.CVMat
4 dimensional array (images, channels, height, width) in floating point precision (CV_32F) from which you would like to extract the images. - images
- Type: Emgu.CVIOutputArrayOfArrays
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).
See Also