Use to get dimensions of an image. Always initialise a character string to receive vector results in ICL,
A procedure to list a few attributes,ICL> X = "WORK SPACE NEEDED" ICL> HGET MY_IMAGE DIMS (X) ICL> =(x) 60,60
ICL> PROC HINFO OBJ HINFO> TYPE = " " HINFO> DIMS = " " HINFO> NDIM = 0 HINFO> HGET (OBJ) TYPE (TYPE) HINFO> HGET (OBJ) DIMS (DIMS) HINFO> HGET (OBJ) NDIM (NDIM) HINFO> PRINT Object (OBJ) is of type (TYPE), dimensionality (NDIM),~ and dimensions [(DIMS)]. HINFO> END PROC ICL> HINFO MY_IMAGE.DATA_ARRAY Object MY_IMAGE.DATA_ARRAY is of type _REAL, dimensionality 2, dimensions [60,60]