ExtractDeepLearningRasterFromFile Task

This task opens a deep learning raster given an input URI.

Example

; Start the application

e = ENVI(/headless)

 

; Update the following line with the correct path

; to the tutorial data files

File = Filepath('OaklandPortOrthophoto1.dat', $

  Subdir=['data','deep_learning'], Root_Dir=e.Root_Dir)

 

; Get the task from the catalog of ENVITasks

Task = ENVITask('ExtractDeepLearningRasterFromFile')

 

; Define inputs

Task.INPUT_URI = File

 

; Run the task

Task.Execute

Print, Task.OUTPUT_RASTER, /IMPLIED_PRINT

Syntax

Result = ENVITask('ExtractDeepLearningRasterFromFile')

Input parameters (Set, Get): INPUT_URI

Output parameters (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.

Input Parameters

INPUT_URI (required)

Specify a fully qualified URI to an ENVIDeepLearningRaster file.

Output Parameters

OUTPUT_RASTER

This is the ENVIDeepLearningRaster from the URI.

Methods

Execute

Parameter

ParameterNames

See ENVI Help for details on these ENVITask methods.

Properties

DESCRIPTION

DISPLAY_NAME

NAME

REVISION

TAGS

See the ENVITask topic in ENVI Help for details.

Version History

Deep Learning 1.0

Introduced

See Also

ENVIDeepLearningRaster, BuildDeepLearningRaster Task