AnalyzeHistogram Method (ImagePlane)

CVB.Net Documentation
Gather and return the histogram from an 8 bits per pixel unsigned image plane.

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public static int[] Histogram(
	this ImagePlane plane
)

Parameters

plane
Type: Stemmer.CvbImagePlane
Plane to gather the histogram from.

Return Value

Type: Int32
Histogram as an array of 256 integer values

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ImagePlane. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
ObjectDisposedExceptionIf the Parent of plane has already been disposed
CvbExceptionwhen calling this method on an image plane of inappropriate data type
See Also

Reference