コンテンツにスキップ
STAGING SERVER
DEVELOPMENT SERVER

Histogram Statistics vTool#

The Histogram Statistics vTool analyzes histogram data and outputs a number of statistical values.

You can use the Histogram Extractor vTool to extract brightness values from an image and use those integer arrays as input.

Histogram Statistics vTool

The vTool outputs the following statistical data:

  • 最小
  • 最大
  • Mean
  • Median
  • StandardDeviation
  • PixelCount

If you want to remove brightness values from the top and bottom of the distribution, e.g., because extremely high or low values may be caused by hot or dark pixels, you can do this via the following API parameters:

  • Bottom Percentile: This allows you to specify which percentage of brightness values you want to remove from the bottom of the distribution. The default is 0.02, which means that values smaller than 2 percent of all values are removed.
  • Top Percentile: This allows you to specify which percentage of brightness values you want to remove from the top of the distribution. The default is 0.02, which means that values higher than 98 percent of all values are removed.
  • Discard: Enable this parameter to remove the top and bottom percentiles from the distribution before evaluation.

vToolの設定#

To configure the Histogram Statistics vTool:

Histogram Statistics vTool Settings

  1. In the Features - All pane, open the vTool category.
  2. Specify desired value for the Top Percentile parameter.
  3. Specify desired value for the Bottom Percentile parameter.
  4. Select the Discard check box to remove the specified percentiles.

入力#

HistogramData#

Accepts integer arrays from the Histogram Extractor vTool.

  • データ型:Image

出力#

最小#

Returns the lowest index position of the input array, i.e., brightness value, of the histogram.

  • データタイプ:フロート

最大#

Returns the highest index position of the input array, i.e., brightness value, of the histogram.

  • データタイプ:フロート

Mean#

Returns the mean value of the histogram.

  • データタイプ:フロート

Median#

Returns the median value of the histogram.

  • データタイプ:整数

StandardDeviation#

Returns the standard deviation of the histogram.

  • データタイプ:フロート

PixelCount#

Returns the overall number of pixels that contributed to the histogram.

  • データタイプ:整数

典型的な先行機#