dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Model

RasterHistogram Class

Raster histogram information returned that meets the specified ImageHistogramParameters from the computeHistograms() or computeStatisticsHistograms() method.
ArcGIS Maps SDK for JavaScript

public class RasterHistogram :
System.IEquatable<dymaptic.GeoBlazor.Core.Model.RasterHistogram>

Inheritance System.Object 🡒 RasterHistogram

Implements System.IEquatable<RasterHistogram>

Constructors

RasterHistogram(IReadOnlyCollection, byte[], Nullable, Nullable, Nullable) Constructor

Raster histogram information returned that meets the specified ImageHistogramParameters from the computeHistograms() or computeStatisticsHistograms() method.
ArcGIS Maps SDK for JavaScript

public RasterHistogram(System.Collections.Generic.IReadOnlyCollection<double>? Counts=null, byte[]? ByteCounts=null, System.Nullable<double> Max=null, System.Nullable<double> Min=null, System.Nullable<int> Size=null);

Parameters

Counts System.Collections.Generic.IReadOnlyCollection<System.Double>

Count of pixels that fall into each bin using numbers.
ArcGIS Maps SDK for JavaScript

ByteCounts System.Byte[]

Count of pixels that fall into each bin using a byte array.
ArcGIS Maps SDK for JavaScript

Max System.Nullable<System.Double>

The maximum pixel value of the histogram.
ArcGIS Maps SDK for JavaScript

Min System.Nullable<System.Double>

The minimum pixel value of the histogram.
ArcGIS Maps SDK for JavaScript

Size System.Nullable<System.Int32>

Number of bins.
ArcGIS Maps SDK for JavaScript

Properties

RasterHistogram.ByteCounts Property

Count of pixels that fall into each bin using a byte array.
ArcGIS Maps SDK for JavaScript

public byte[]? ByteCounts { get; set; }

Property Value

System.Byte[]

RasterHistogram.Counts Property

Count of pixels that fall into each bin using numbers.
ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<double>? Counts { get; set; }

Property Value

System.Collections.Generic.IReadOnlyCollection<System.Double>

RasterHistogram.Max Property

The maximum pixel value of the histogram.
ArcGIS Maps SDK for JavaScript

public System.Nullable<double> Max { get; set; }

Property Value

System.Nullable<System.Double>

RasterHistogram.Min Property

The minimum pixel value of the histogram.
ArcGIS Maps SDK for JavaScript

public System.Nullable<double> Min { get; set; }

Property Value

System.Nullable<System.Double>

RasterHistogram.Size Property

Number of bins.
ArcGIS Maps SDK for JavaScript

public System.Nullable<int> Size { get; set; }

Property Value

System.Nullable<System.Int32>