[GIS] Can we access the ArcMap Image Analysis tools using Python

arcgis-10.0arcgis-desktoparcmappython

Esri recently added a new Image Analysis window to ArcMap – it's found under > Windows in the main toolbar:

enter image description here

The Image Analysis window's Processing section simplifies the
experience of applying complex processing and analysis techniques to
layers of image and raster data in ArcMap. The tools provide one-click
options to apply processes, such as clipping, normalized difference
vegetation index (NDVI) creation, mosaicking, and exporting

enter image description here

Can we access these tools using Python?

Specifically, I want to automate the process of applying a Clip, then adding Functions to the clip, before exporting to a new layer.

Best Answer

You could save your functions in a raster function template and apply this template to other rasters using the Edit Raster Function tool (Standard or Advance license needed).

Related Question