http://www.emgu.com
Backproject the histogram into a matrix
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Matrix<TDepth> BackProject<TDepth>(
Matrix<TDepth>[] srcs
)
where TDepth : new()
|
Visual Basic |
---|
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