DenseHistogram Constructor (Int32, RangeF) |
http://www.emgu.com
Creates a uniform multi-dimension histogram of the specified size
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic DenseHistogram(
int[] binSizes,
RangeF[] ranges
)
Public Sub New (
binSizes As Integer(),
ranges As RangeF()
)
public:
DenseHistogram(
array<int>^ binSizes,
array<RangeF>^ ranges
)
new :
binSizes : int[] *
ranges : RangeF[] -> DenseHistogram
Parameters
- binSizes
- Type: SystemInt32
The length of this array is the dimension of the histogram. The values of the array contains the number of bins in each dimension. The total number of bins eaquals the multiplication of all numbers in the array - ranges
- Type: Emgu.CV.StructureRangeF
the upper and lower boundaries of the bins
See Also