Function: get_input_name_by_index
C Prototype |
const char *aclmdlGetInputNameByIndex(const aclmdlDesc *modelDesc, size_t index) |
|---|---|
Python Function |
input_name = acl.mdl.get_input_name_by_index(model_desc, index) |
Function Usage |
Obtains the name of an input in a model. |
Input Description |
model_desc: int, pointer address of the data of the aclmdlDesc type. Call acl.mdl.create_desc to create data of the aclmdlDesc type in advance. index: int, sequence number of the input to be obtained, starting from 0. |
Return Value |
input_name: str, input name. |
Restrictions |
None |
Parent topic: aclmdlDesc