Gets the length of a vertical dictionary's description.
Copy Code
|
|
---|---|
AT_ERRCOUNT IG_REC_vertical_dict_available_desc_len_get( AT_INT index, LPAT_INT lpDescLen ); |
Name | Type | Description |
---|---|---|
index | AT_INT | Index of the vertical dictionary description length to retrieve. |
lpDescLen | LPAT_INT | Receives the length of the description. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; AT_INT iVDCount = 0; AT_INT iVDIndex = 0; AT_INT iDescLen = 0; ErrCount += IG_REC_vertical_dict_available_count_get(&iVDCount); while(iVDIndex < iVDCount) { ErrCount += IG_REC_vertical_dict_available_desc_len_get(iVDIndex, &iDescLen); //... iVDIndex++; } |