Show / Hide Table of Contents

Class RasterHistogram

The histogram object provides with distribution of pixel values in the band. Those values are sampled in buckets.

Inheritance
System.Object
RasterHistogram
Namespace: Stac.Extensions.Raster
Assembly: DotNetStac.dll
Syntax
public class RasterHistogram : object

Properties

| Improve this Doc View Source

Buckets

Gets or sets array of integer indicating the number of pixels included in the bucket.

Declaration
public double[] Buckets { get; set; }
Property Value
Type Description
System.Double[]

Array of integer indicating the number of pixels included in the bucket.

| Improve this Doc View Source

Count

Gets or sets number of buckets of the distribution.

Declaration
public int? Count { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Number of buckets of the distribution.

| Improve this Doc View Source

Max

Gets or sets minimum value of the distribution. Also the mean value of the last bucket.

Declaration
public double? Max { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Minimum value of the distribution. Also the mean value of the last bucket.

| Improve this Doc View Source

Min

Gets or sets minimum value of the distribution. Also the mean value of the first bucket.

Declaration
public double? Min { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Minimum value of the distribution. Also the mean value of the first bucket.

Extension Methods

StacAccessorsHelpers.ToStringByAttributes(Object)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX