Backproject the histogram into a gray scale image
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
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