http://www.emgu.com
Backproject the histogram into a gray scale image
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<Gray, TDepth> BackProject<TDepth>(
Image<Gray, TDepth>[] srcs
)
where TDepth : new()
|
Visual Basic |
---|
Public Function BackProject(Of TDepth As New) ( _
srcs As Image(Of Gray, TDepth)() _
) As Image(Of Gray, TDepth) |
Visual C++ |
---|
public:
generic<typename TDepth>
where TDepth : gcnew()
Image<Gray, TDepth>^ BackProject(
array<Image<Gray, TDepth>^>^ srcs
) |
Parameters
- srcs
- Type: array<Emgu.CV..::..Image<(Of <(<'Gray, TDepth>)>)>>[]()[][]
Source images, all are of the same size and type
Type Parameters
- TDepth
- The type of depth of the image
Return Value
Destination back projection image of the same type as the source images
See Also