Parse a 4D blob and output the images it contains
imgs = cv.Net.imagesFromBlob(blob)
Input
- blob 4-dimensional array
(images, channels, height, width)
in floating-point precision (single
) from which you would
like to extract the images.
Output
- imgs cell-array of matrices containing the images
extracted from the blob in floating-point precision (
single
).
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).