Skip to content

NET_SDK_FACE_IMG_STATISTIC_RESULT

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_face_img_statistic_result
{
    unsigned int imageTotalNum;                   
    unsigned int chlNum;                          
    NET_SDK_FACE_IMG_STATISTIC_RESULT_CHL* pItem; 
} NET_SDK_FACE_IMG_STATISTIC_RESULT;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_FACE_IMG_STATISTIC_RESULT
{
    public UInt32 imageTotalNum;
    public UInt32 chlNum;
    public IntPtr pItem;
}

Function Description

Statistical results of face images.

Member Description

Member Type Remark
imageTotalNum unsigned int Number of images.
chlNum unsigned int Number of channels.
pItem NET_SDK_FACE_IMG_STATISTIC_RESULT_CHL* List of channel face statistics.
Error Code