DenseHistogramBackProjectTDepth Method (ImageGray, TDepth) |
http://www.emgu.com
Backproject the histogram into a gray scale image
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member BackProject :
srcs : Image<Gray, 'TDepth>[] -> Image<Gray, 'TDepth> when 'TDepth : new()
Parameters
- srcs
- Type: Emgu.CVImageGray, TDepth
Source images, all are of the same size and type
Type Parameters
- TDepth
- The type of depth of the image
Return Value
Type:
ImageGray,
TDepthDestination back projection image of the same type as the source images
See Also