Backproject the histogram into a matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
| C# |
|---|
public Matrix<TDepth> BackProject<TDepth>(
Matrix<TDepth>[] srcs
)
where TDepth : new()
|
| Visual Basic (Declaration) |
|---|
Public Function BackProject(Of TDepth As New) ( _
srcs As Matrix(Of TDepth)() _
) As Matrix(Of TDepth) |
| Visual C++ |
|---|
public:
generic<typename TDepth>
where TDepth : gcnew()
Matrix<TDepth>^ BackProject(
array<Matrix<TDepth>^>^ srcs
) |
Parameters
- srcs
- Type: array<
Emgu.CV..::.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