Backproject the histogram into a gray scale image
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
| C# |
|---|
public Image<Gray, TDepth> BackProject<TDepth>(
Image<Gray, TDepth>[] srcs
)
where TDepth : new()
|
| Visual Basic (Declaration) |
|---|
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