DenseHistogramBackProjectTDepth Method (MatrixTDepth) |
http://www.emgu.com
Backproject the histogram into a matrix
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member BackProject :
srcs : Matrix<'TDepth>[] -> Matrix<'TDepth> when 'TDepth : new()
Parameters
- srcs
- Type: Emgu.CVMatrixTDepth
Source matrices, all are of the same size and type
Type Parameters
- TDepth
- The type of depth of the matrix
Return Value
Type:
MatrixTDepthDestination back projection matrix of the sametype as the source matrices
See Also