Skip to content

NET_SDK_FACE_INFO_GROUP_DEL_EX

Structure Definition

1
2
3
4
5
typedef struct _net_sdk_face_info_group_del_ex_
{
    unsigned int groupId;   
    unsigned char guid[48]; 
} NET_SDK_FACE_INFO_GROUP_DEL_EX;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_FACE_INFO_GROUP_DEL_EX
{
    public UInt32 groupId;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 48)]
    public byte[] guid;
}

Function Description

Delete the extended structure of the face comparison target group.

Member Description

Member Type Remark
groupId unsigned int The ID of the group. This parameter is used in the Chinese customized version.
guid unsigned char[48] The guid of the group. This parameter is used by the general version.
Error Code