Back to FabImage Deep Learning website

You are here: Start » Computer Vision » Deep Learning » ConvertTensorToImageArray

ConvertTensorToImageArray


Header: FILDL.h
Namespace: fil
Module: DeepLearning

Converts a NHWC tensor to an array of images.

Syntax

C++
C#
 
void fil::ConvertTensorToImageArray
(
	const fil::Tensor& inTensor,
	ftl::Array<fil::Image>& outImageArray
)

Parameters

Name Type Default Description
Input value inTensor const Tensor&
Output value outImageArray Array<Image>&

Errors

List of possible exceptions:

Error type Description
DomainError inTensor must be 4-dimensional.
DomainError inTensor must have NHWC ordering.