Backproject the histogram into a matrix

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Matrix<TDepth> BackProject<TDepth>(
	Matrix<TDepth>[] srcs
)
where TDepth : new()
Public Function BackProject(Of TDepth As New) ( _
	srcs As Matrix(Of TDepth)() _
) As Matrix(Of TDepth)
public:
generic<typename TDepth>
where TDepth : gcnew()
Matrix<TDepth>^ BackProject(
	array<Matrix<TDepth>^>^ srcs
)

Parameters

srcs
array<Matrix<(Of <(<'TDepth>)>)>>[]()[][]
Source matrices, all are of the same size and type

Type Parameters

TDepth
The type of depth of the matrix

Return Value

Destination back projection matrix of the sametype as the source matrices

See Also