Provides access to members that controls stats and histogram.
Members
Name | Description | |
---|---|---|
Accumulate | Accumulates a value and its count. | |
AccumulateCovariance | Accumulates covariance array, numValidPixel. | |
Covariances | Array of doubles, the covariances with the n bands of the raster. | |
Empty | Empties this RasterStatsHistogram and marks it invalid. | |
HasHistogram | Checks if this StatsHistogram has histogram. | |
HasStats | Checks if this StatsHistogram has stats. | |
Histogram | The histogram values of the statistics. | |
InitCovariances | Resizes covariance array to nBands, init all elements to 0. | |
Max | The maximum value of the historgram. | |
Mean | The mean value of the historgram. | |
Min | The minimum value of the historgram. | |
PixelCount | The total pixel count. | |
PutHistogramInfo | Sets histogram size, resolution, and min/max range. | |
PutHistogramMinmax | Sets histogram min and max range. | |
PutStats | Computes stats and histogram from a given Raster. | |
QueryHistogramInfo | Gets histogram size, resolutiom, and min/max range. | |
QueryHistogramMinmax | Gets histogram min and max range. | |
QueryStats | Computes stats and histogram from a given Raster. | |
RasterHistogram | The raster histogram. | |
RasterStatistics | The raster statistics. | |
StdDev | The standard deviation value of the historgram. | |
Update | Updates the histogram after accumulation. | |
UpdateCovariances | Final update after accumulate is finished. |
IStatsHistogram3.AccumulateCovariance Method
Accumulates covariance array, numValidPixel.
Public Sub AccumulateCovariance ( _
ByVal iBand As Integer, _
ByVal numValidPixel As Double, _
ByVal xy As Double, _
ByVal x As Double, _
ByVal y As Double _
)
public void AccumulateCovariance (
int iBand,
double numValidPixel,
double xy,
double x,
double y
);
IStatsHistogram3.Covariances Property
Array of doubles, the covariances with the n bands of the raster.
Public Property Covariances As Object
public object Covariances {get; set;}
IStatsHistogram3.InitCovariances Method
Resizes covariance array to nBands, init all elements to 0.
Public Sub InitCovariances ( _
ByVal nBands As Integer _
)
public void InitCovariances (
int nBands
);
IStatsHistogram3.PutHistogramInfo Method
Sets histogram size, resolution, and min/max range.
Public Sub PutHistogramInfo ( _
ByVal Size As Integer, _
ByVal Resolution As Double, _
ByVal minh As Double, _
ByVal maxh As Double _
)
public void PutHistogramInfo (
int Size,
double Resolution,
double minh,
double maxh
);
IStatsHistogram3.QueryHistogramInfo Method
Gets histogram size, resolutiom, and min/max range.
Public Sub QueryHistogramInfo ( _
ByRef Size As Integer, _
ByRef Resolution As Double, _
ByRef minh As Double, _
ByRef maxh As Double _
)
public void QueryHistogramInfo (
ref int Size,
ref double Resolution,
ref double minh,
ref double maxh
);
IStatsHistogram3.RasterHistogram Property
The raster histogram.
Public ReadOnly Property RasterHistogram As IRasterHistogram
public IRasterHistogram RasterHistogram {get;}
IStatsHistogram3.RasterStatistics Property
The raster statistics.
Public ReadOnly Property RasterStatistics As IRasterStatistics
public IRasterStatistics RasterStatistics {get;}
IStatsHistogram3.UpdateCovariances Method
Final update after accumulate is finished.
Public Sub UpdateCovariances ( _
)
public void UpdateCovariances (
);
Inherited Interfaces
Interfaces | Description |
---|---|
IStatsHistogram2 | Provides access to members that controls stats and histogram. |
IStatsHistogram | Provides access to members that controls stats and histogram. |
Classes that implement IStatsHistogram3
Classes | Description |
---|---|
StatsHistogram | A raster statistics and histogram class. |