.. index:: pair: class; P1::ImageSdk::Histogram .. _doxid-class_p1_1_1_image_sdk_1_1_histogram: class P1::ImageSdk::Histogram ============================= .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class Histogram { public: // construction :target:`Histogram`(); :target:`Histogram`(HistogramType type, int binSize, int numChannel); // methods int :ref:`GetBinSize`(); HistogramType :ref:`GetType`(); bool :ref:`IsCumulative`(); const int* :ref:`GetChannel`(int channel); const int :target:`GetNumChannel`(); int* :ref:`GetData`(); int :ref:`GetDataSizeBytes`(); }; .. _details-class_p1_1_1_image_sdk_1_1_histogram: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Methods ------- .. index:: pair: function; GetBinSize .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1a8f2dd377f6589a53576253ccaca8bd8f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int GetBinSize() :ref:`Histogram ` divides data range to series of intervals. Each interval is a bin. .. index:: pair: function; GetType .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1ac95ba5feb930f05204ab0de88f67961f: .. ref-code-block:: cpp :class: doxyrest-title-code-block HistogramType GetType() Return histogram data type. .. index:: pair: function; IsCumulative .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1a92a327dffa2a59f5cc85176fafa83022: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool IsCumulative() :ref:`Histogram ` counts value in a bin. Cumulative histogram counts value in a bin plus all smaller value. .. index:: pair: function; GetChannel .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1ab65bdafc69f1ad0e3335b435efb5464b: .. ref-code-block:: cpp :class: doxyrest-title-code-block const int* GetChannel(int channel) Data type of the channel is defined by HistogramType. .. index:: pair: function; GetData .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1a3c65aab7690ccbe5cade9c1c0e86dca8: .. ref-code-block:: cpp :class: doxyrest-title-code-block int* GetData() Array of integer representing histogram data. .. index:: pair: function; GetDataSizeBytes .. _doxid-class_p1_1_1_image_sdk_1_1_histogram_1a039e8ee5eb1902234db10bf10697beb3: .. ref-code-block:: cpp :class: doxyrest-title-code-block int GetDataSizeBytes() :ref:`Size ` in bytes of the histogram data.