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