Method ImagesFromBlob
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
ImagesFromBlob(Mat)
Parse a 4D blob and output the images it contains as 2D arrays through a simpler data structure (std::vector<cv::Mat>).
public static Mat[] ImagesFromBlob(Mat blob)
Parameters
blobMat4 dimensional array (images, channels, height, width) in floating point precision (CV_32F) from which you would like to extract the images.
Returns
- Mat[]
array of 2D Mat containing the images extracted from the blob in floating point precision (CV_32F).