Tabulates histograms for all image channels.
Syntax
'Declaration
Public Shared Sub TabulateHistogram( _
ByVal As ImGearRasterPage, _
ByVal (,) As Integer, _
ByVal As ImGearChannelRange _
)
'Usage
Dim page As ImGearRasterPage
Dim histogram() As Integer
Dim channels As ImGearChannelRange
ImGearRasterProcessing.TabulateHistogram(page, histogram, channels)
public static void TabulateHistogram(
ImGearRasterPage ,
int[,] ,
ImGearChannelRange
)
public: static void TabulateHistogram(
ImGearRasterPage* ,
int[,]* ,
ImGearChannelRange
)
public:
static void TabulateHistogram(
ImGearRasterPage^ ,
array<int>^ ,
ImGearChannelRange
)
Parameters
- page
- Page for which to tabulate histogram.
- histogram
- Two dimensional array that is filled with histogram data. It must be allocated
prior to calling the method. First dimension corresponds to channel number, second dimension
corresponds to histogram bin number.
- channels
- Specifies image channels for which histogram shall be tabulated.
Example
See Also