Skip to content

NET_SDK_FACE_INFO_EDIT

Structure Definition

1
2
3
4
5
typedef struct _net_sdk_face_info_edit_
{
    unsigned int delFaceImgs[DD_MAX_FACE_INFO_IMG]; 
    NET_SDK_FACE_INFO_ADD sFaceInfoItem;            
} NET_SDK_FACE_INFO_EDIT;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_FACE_INFO_EDIT
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U4, SizeConst = 5)]
    public UInt32[] delFaceImgs;
    public NET_SDK_FACE_INFO_ADD sFaceInfoItem;
}

Function Description

Edit the face comparison target.

Member Description

Member Type Remark
delFaceImgs unsigned int[DD_MAX_FACE_INFO_IMG] The index of the target image to be deleted.
sFaceInfoItem NET_SDK_FACE_INFO_ADD Modified target information;
Error Code