Estoy intentando calcular el número total de cuentas que contiene un raster mediante un script de python. Cuando ejecuté el script, no obtuve ningún error. Sin embargo, tampoco obtuve el número de recuentos de cada fila de la tabla de atributos.
Código:
import arcpy
#To overwrite output
arcpy.env.overwriteOutput = True
#Set environment settings
arcpy.env.workspace = "C:/Subhasis/Test/raster-read"
#Build Raster Attribute Table
arcpy.BuildRasterAttributeTable_management("sti-9", "Overwrite")
# loop through attribute table
Rows = arcpy.SearchCursor( "sti-9" )
for row in Rows:
count = row.getValue( "COUNT" )
print count