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 SourceBuckets
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. |
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. |
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. |
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. |