Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Histogram Basics » FisFilter_AccessHistogram

FisFilter_AccessHistogram
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | FIL.h |
---|---|
Namespace: | fis |
Module: | FoundationBasic |
Returns individual fields of a histogram.
Syntax
void fis::FisFilter_AccessHistogram ( const fil::Histogram& inHistogram, float& outBinSize, int& outBinCount, float& outDomainStart, float& outDomainLength, ftl::Array<double>& outBins )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inHistogram | const Histogram& | Input histogram | |
![]() |
outBinSize | float& | Output bin size | |
![]() |
outBinCount | int& | Output bin count | |
![]() |
outDomainStart | float& | Output domain begin | |
![]() |
outDomainLength | float& | Output length of domain | |
![]() |
outBins | Array<double>& | Output histogram data |
Description
The operation decomposes a histogram into its data components: an array of integers and additional real values describing its domain.
See Also
- MakeHistogram – Creates a histogram out of an array of bin values.