Skip to content

NET_SDK_FACE_INFO_LIST

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_face_info_list_
{
    unsigned int totalNum;                          
    unsigned int listNum;                           
    NET_SDK_FACE_INFO_LIST_ITEM* pFaceInfoListItem; 
} NET_SDK_FACE_INFO_LIST;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_FACE_INFO_LIST
{
    public UInt32 totalNum;
    public UInt32 listNum;
    public IntPtr pFaceInfoListItem;
}

Function Description

Query the returned face comparison target list.

Member Description

Member Type Remark
totalNum unsigned int Total number of targets.
listNum unsigned int This returns the number of targets.
pFaceInfoListItem NET_SDK_FACE_INFO_LIST_ITEM* Returns a list of targets.
Error Code