Skip to content

NET_SDK_IVE_FACE_MATCH_DELE_ALBUM_INFO

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
typedef struct NET_SDK_IVE_FACE_MATCH_DELE_ALBUM_INFO_T
{
    bool bUseKeyFilter;      
    int iKey;                
    bool bUseTypeFilter;     
    int iType;               
    bool bUseSexFilter;      
    int iMale;               
    bool bUseName;           
    char szName[128];        
    bool bUseIdentify;       
    char szIdentifyNum[128]; 
} NET_SDK_IVE_FACE_MATCH_DELE_ALBUM_INFO;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_FACE_MATCH_DELE_ALBUM_INFO
{
    public Boolean bUseKeyFilter;
    public Int32 iKey;
    public Boolean bUseTypeFilter;
    public Int32 iType;
    public Boolean bUseSexFilter;
    public Int32 iMale;
    public Boolean bUseName;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 128)]
    public byte[] szName;
    public Boolean bUseIdentify;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 128)]
    public byte[] szIdentifyNum;
}

Function Description

The face comparison dataset deletes the structure.

Member Description

Member Type Remark
bUseKeyFilter bool Filter deletion using key value.
iKey int Key value.
bUseTypeFilter bool Use black and white lists to filter and delete.
iType int List type, 0: strangers 1: whitelist 2: blacklist.
bUseSexFilter bool Use gender filter to remove.
iMale int Gender, 1: male; 0: female.
bUseName bool Use name fuzzy search.
szName char[128] Name
bUseIdentify bool Use ID matching.
szIdentifyNum char[128] Feature number.
Error Code