Provides access to members that control a raster band.
Members
Name | Description | |
---|---|---|
AlterHistogram | Alters histogram. | |
AlterStatistics | Alters statistics. | |
ComputeStatsHistogram | Calculates statistics and histogram from a given pyramid level. |
IRasterBandEdit.AlterHistogram Method
Alters histogram.
Public Sub AlterHistogram ( _
ByVal pHistogram As IRasterHistogram _
)
public void AlterHistogram (
IRasterHistogram pHistogram
);
Description
Alters the histogram of the raster band with the given raster histogram
IRasterBandEdit.AlterStatistics Method
Alters statistics.
Public Sub AlterStatistics ( _
ByVal pStats As IRasterStatistics _
)
public void AlterStatistics (
IRasterStatistics pStats
);
Description
Alters the statistics of the raster band with the given raster statistics.
IRasterBandEdit.ComputeStatsHistogram Method
Calculates statistics and histogram from a given pyramid level.
Public Sub ComputeStatsHistogram ( _
ByVal PyramidLevel As Integer _
)
public void ComputeStatsHistogram (
int PyramidLevel
);
Classes that implement IRasterBandEdit
Classes | Description |
---|---|
RasterBand | A representation of a single band of a raster dataset on disk. |
Remarks
The IRasterBandEditprovides the functions to alter the statistics and histogram of the raster band. AlterStatistics alters the statistics of the raster band, AlterHistogram alters the histogram info of the raster band. ComputeStatisticsHistogram allows to build statistics and histogram based on the given level of pyramid layer.