This task outputs global normalization statistics from an aggregate of rasters.
Example
e = ENVI()
RasterFile = Filepath('qb_boulder_msi', Subdir=['data'], $
Root_Dir=e.Root_Dir)
Raster = e.OpenRaster(RasterFile)
StatsTask = ENVITask('NormalizationStatistics')
StatsTask.INPUT_RASTERS = Raster
StatsTask.Execute
Print, "Normalization [Min, Max]:"
Print, StatsTask.Normalization
Syntax
Result = ENVITask('NormalizationStatistics')
Input properties (Set, Get): INPUT_RASTERS
Output properties (Get only): NORMALIZATION
Properties marked as "Set" are those that you can set to specific values. You can also retrieve their current values any time. Properties marked as "Get" are those whose values you can retrieve but not set.
Methods
This task inherits the following methods from ENVITask. See the ENVITask topic in ENVI Help.
- AddParameter
- Execute
- Parameter
- ParameterNames
- RemoveParameters
Properties
This task inherits the following properties from ENVITask:
COMMUTE_ON_DOWNSAMPLE
COMMUTE_ON_SUBSET
DESCRIPTION
DISPLAY_NAME
NAME
REVISION
See the ENVITask topic in ENVI Help for details.
This task also contains the following properties:
INPUT_RASTERS (required)
Specify one or more rasters to determine the minimum and maximum data values.
NORMALIZATION
Minimum and maximum data values from an aggregate of rasters.
Version History
Deep Learning 2.0
|
Introduced |
See Also