This task opens one or more ROIs given an input URI.
Example
e = ENVI(/HEADLESS)
File = Filepath('qb_boulder_roi.xml', Subdir=['data'], $
Root_Dir=e.Root_Dir)
Task = ENVITask('ExtractROIsFromFile')
Task.INPUT_URI = File
Task.ROI_NAMES = ['Water', 'Disturbed Earth']
Task.Execute
FOREACH roi, Task.OUTPUT_ROIS DO Print, roi.Name
Syntax
Result = ENVITask('ExtractROIsFromFile')
Input properties (Set, Get): INPUT_URI, ROI_NAMES
Output properties (Get only): OUTPUT_ROIS
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_URI (required)
Specify the input URI.
OUTPUT_ROIS
This is an array of ROIs extracted from the URI.
ROI_NAMES (optional)
Specify a string array with the names of the ROIs to open. If not set, all of the ROIs in the URI will be returned. The order of the output ROIs will be determined by this parameter.
Version History
API Version
4.3
See Also
ENVITask, ENVIROI