This task performs Gram-Schmidt Pan Sharpening using a low-resolution raster and a high-resolution panchromatic raster.
If you process a spatial subset, the resulting image from this ENVITask may differ by approximately 2 percent, compared to one created using the ENVI user interface. The latter uses the full image for resampling, while the ENVITask uses only the subset for processing.
Example
e = ENVI()
msi_file = Filepath('qb_boulder_msi', Subdir=['data'], $
Root_Dir=e.Root_Dir)
msi_raster = e.OpenRaster(msi_file)
pan_file = Filepath('qb_boulder_pan', Subdir=['data'], $
Root_Dir=e.Root_Dir)
pan_raster = e.OpenRaster(pan_file)
Task = ENVITask('GramSchmidtPanSharpening')
Task.INPUT_LOW_RESOLUTION_RASTER = msi_raster
Task.INPUT_HIGH_RESOLUTION_RASTER = pan_raster
Task.Execute
DataColl = e.Data
DataColl.Add, Task.Output_Raster
View = e.GetView()
Layer1 = View.CreateLayer(msi_raster)
Layer2 = View.CreateLayer(Task.Output_Raster)
Layer2.QUICK_STRETCH='linear 2%'
Portal = View.CreatePortal()
View.GoToLocation,482221.6000, 4428141.2000, /Map
View.Zoom, 2.0
Portal.Animate, 2.0, /FLICKER
Syntax
Result = ENVITask('GramSchmidtPanSharpening')
Input properties (Set, Get): INPUT_LOW_RESOLUTION_RASTER, INPUT_HIGH_RESOLUTION_RASTER, OUTPUT_RASTER_URI, RESAMPLING, SENSOR
Output properties (Get only): OUTPUT_RASTER
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:
AddParameter
Execute
Parameter
ParameterNames
RemoveParameter
Properties
This task inherits the following properties from ENVITask:
COMMUTE_ON_DOWNSAMPLE
COMMUTE_ON_SUBSET
DESCRIPTION
DISPLAY_NAME
NAME
REVISION
TAGS
This task also contains the following properties:
INPUT_HIGH_RESOLUTION_RASTER (required)
Specify a high-resolution panchromatic raster.
INPUT_LOW_RESOLUTION_RASTER (required)
Specify a low-resolution raster.
OUTPUT_RASTER
This is a reference to the output raster of filetype ENVI.
OUTPUT_RASTER_URI (optional)
Specify a string with the fully qualified filename and path of the associated OUTPUT_RASTER. If you do not specify this property, or set it to an exclamation symbol (!), a temporary file will be created.
RESAMPLING (optional)
Specify the resampling method.
- Nearest Neighbor: Uses the nearest pixel without any interpolation.
- Bilinear (default): Performs a linear interpolation using four pixels to resample.
- Cubic Convolution: Uses 16 pixels to approximate the sinc function using cubic polynomials to resample the image.
SENSOR (optional)
Specify a lower-case string that indicates the sensor that acquired the high-resolution panchromatic input. If SENSOR is not set, then the task determines if the data has valid sensor information in the metadata. If not, SENSOR is set to Unknown.
See the filterfuncs directory in the ENVI installation path for a list of valid sensor strings. User-defined sensors are also valid as long as they are in this directory. The default path varies by operating system.
Version History
API Version
4.2
See Also
ENVITask, ENVINNDiffusePanSharpeningTask, PCPanSharpening Task