Project the images to the histogram bins

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public void Accumulate<TDepth>(
	Image<Gray, TDepth>[] imgs,
	Image<Gray, byte> mask
)
where TDepth : struct, new()
Visual Basic (Declaration)
Public Sub Accumulate(Of TDepth As {Structure, New}) ( _
	imgs As Image(Of Gray, TDepth)(), _
	mask As Image(Of Gray, Byte) _
)
Visual C++
public:
generic<typename TDepth>
where TDepth : value class, gcnew()
void Accumulate(
	array<Image<Gray, TDepth>^>^ imgs, 
	Image<Gray, unsigned char>^ mask
)

Parameters

imgs
Type: array< Emgu.CV..::.Image<(Of <(Gray, TDepth>)>) >[]()[]
image to project
mask
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
The operation mask, determines what pixels of the source images are counted

Type Parameters

TDepth
The type of depth of the image

See Also