Classify Pixels Using Deep Learning (Image Analyst Tools)
Summary
Runs a trained deep learning model on an input raster to produce a classified raster, with each valid pixel having an assigned class label.
This tool requires a model definition file containing trained model information. The model can be trained using the Train Deep Learning Model tool or by a third-party training software such as PyTorch. The model definition file can be an Esri model definition JSON file (.emd) or a deep learning model package, and it must contain the path to the Python raster function to be called to process each object and the path to the trained binary deep learning model file.
Usage
You must install the proper deep learning framework Python API (such as PyTorch) in the ArcGIS Pro Python environment; otherwise, an error will occur when you add the Esri model definition file to the tool. Obtain the appropriate framework information from the creator of the Esri model definition file.
To set up your machine to use deep learning frameworks in ArcGIS Pro, see Install deep learning frameworks for ArcGIS.
This tool calls a third-party deep learning Python API (such as PyTorch) and uses the specified Python raster function to process each object.
Sample use cases for this tool are available on the Esri Python raster function GitHub page. You can also write custom Python modules by following examples and instructions in the GitHub repository.
The Model Definition parameter value can be an Esri model definition JSON file (
.emd), a JSON string, or a deep learning model package (.dlpk). A JSON string is useful when this tool is used on the server so you can paste the JSON string rather than upload the.emdfile. The.dlpkfile must be stored locally.For more information about deep learning, see Deep learning using the ArcGIS Image Analyst extension.
The input raster can be a single raster, multiple rasters, or a feature class with images attached. For more information about attachments, see Add or remove file attachments.
Increasing the batch size can improve tool performance; however, as the batch size increases, more memory is used. If an out of memory error occurs, use a smaller batch size. The
batch_sizevalue can be adjusted using the Arguments parameter.Batch sizes are square numbers, such as 1, 4, 9, 16, 25, 64 and so on. If the input value is not a perfect square, the highest possible square value is used. For example, if a value of 6 is specified, the batch size is set to 4.
This tool supports and uses multiple GPUs if available. To use a specific GPU, specify the GPU ID environment. When the GPU ID is not set, the tool uses all available GPUs. This is the default.
- When the Processor Type environment is set to CPU, and the Parallel Processing Factor environment is unspecified, the tool will use a Parallel Processing Factor value of 50%.
- For information about requirements for running this tool and issues you may encounter, see Deep Learning frequently asked questions.
Parameters
| Label | Explanation | Data type |
|---|---|---|
|
Input Raster |
The input raster dataset that will be classified. The input can be a single raster, multiple rasters in a mosaic dataset, an image service, a folder of images, or a feature class with image attachments. |
Raster Dataset; Raster Layer; Mosaic Layer; Image Service; Map Server; Map Server Layer; Internet Tiled Layer; Folder; Feature Layer; Feature Class |
|
Model Definition |
The Model Definition parameter value can be an Esri model definition JSON file ( It contains the path to the deep learning binary model file, the path to the Python raster function to be used, and other parameters such as preferred tile size or padding. |
File; String |
|
Arguments (Optional) |
The information from the Model Definition parameter will be used to populate this parameter. These arguments vary, depending on the model architecture. The following are supported model arguments for models trained in ArcGIS. ArcGIS pretrained models and custom deep learning models may have additional arguments that the tool supports.
Value table columns:
|
Value Table |
|
Processing Mode |
Specifies how all raster items in a mosaic dataset or an image service will be processed. This parameter is applied when the input raster is a mosaic dataset or an image service.
|
String |
|
Output Folder (Optional) |
The folder where the output classified rasters will be stored. A mosaic dataset will be generated using the classified rasters in this folder. This parameter is required when the input raster is a folder of images or a mosaic dataset in which all items are to be processed separately. The default is a folder in the project folder. |
Folder |
|
Output Features (Optional) |
The feature class where the output classified rasters will be stored. This parameter is required when the input raster is a feature class of images. If the feature class already exists, the results will be appended to the existing feature class. |
Feature Class |
|
Overwrite attachments (Optional) |
Specifies whether existing image attachments will be overwritten. This parameter is only valid when the Input Raster parameter value is a feature class with image attachments.
|
Boolean |
|
Use pixel space (Optional) |
Specifies whether inferencing will be performed on images in pixel space.
|
Boolean |
Return value
| Label | Explanation | Data type |
|---|---|---|
|
Output Raster Dataset |
The name of the raster or mosaic dataset containing the result. |
Raster |
Environments
Cell Size, Current Workspace, Extent, Geographic Transformations, GPU ID, Mask, Output Coordinate System, Parallel Processing Factor, Processor Type, Scratch Workspace, Snap Raster
Licensing information
- Basic: Requires Image Analyst
- Standard: Requires Image Analyst
- Advanced: Requires Image Analyst