DenseHistogramCalculateTDepth Method (MatrixTDepth, Boolean, MatrixByte) |
http://www.emgu.com
Project the matrices to the histogram bins
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic void Calculate<TDepth>(
Matrix<TDepth>[] matrices,
bool accumulate,
Matrix<byte> mask
)
where TDepth : new()
Public Sub Calculate(Of TDepth As New) (
matrices As Matrix(Of TDepth)(),
accumulate As Boolean,
mask As Matrix(Of Byte)
)
public:
generic<typename TDepth>
where TDepth : gcnew()
void Calculate(
array<Matrix<TDepth>^>^ matrices,
bool accumulate,
Matrix<unsigned char>^ mask
)
member Calculate :
matrices : Matrix<'TDepth>[] *
accumulate : bool *
mask : Matrix<byte> -> unit when 'TDepth : new()
Parameters
- matrices
- Type: Emgu.CVMatrixTDepth
Matrices to project - accumulate
- Type: SystemBoolean
If it is true, the histogram is not cleared in the beginning. This feature allows user to compute a single histogram from several images, or to update the histogram online. - mask
- Type: Emgu.CVMatrixByte
Can be null if not needed. The operation mask, determines what pixels of the source images are counted
Type Parameters
- TDepth
- The type of depth of the image
See Also