Back to Aurora Vision Deep Learning website

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

ConvertTensorToRealArrayArray


Header: AVLDL.h
Namespace: avl
Module: DeepLearning

Converts a tensor with the NL ordering to a two dimensional array of reals.

Syntax

C++
C#
 
void avl::ConvertTensorToRealArrayArray
(
	const avl::Tensor& inTensor,
	atl::Array<atl::Array<float>>& outRealArrayArray
)

Parameters

Name Type Default Description
Input value inTensor const Tensor&
Output value outRealArrayArray Array<Array<float>>&

Errors

List of possible exceptions:

Error type Description
DomainError inTensor must be 2-dimensional.
DomainError inTensor must have the NL ordering.