[This is preliminary documentation and is subject to change.]

Project the images to the histogram bins

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

Syntax

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

Parameters

imgs
array< Image<(Of <(Gray, TDepth>)>) >[]()[]
image to project
mask
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