跳转至

NET_SDK_SEARCH_SMART_TARGET

结构体定义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
typedef struct _net_sdk_search_smart_target
{
    unsigned int limitNum;               
    DD_TIME_EX startTime;                
    DD_TIME_EX endTime;                  
    unsigned char faceDetection;         
    unsigned char faceMatchWhiteList;    
    unsigned char faceMatchBlackList;    
    unsigned char faceMatchStrangerList; 
    unsigned char intrusion;             
    unsigned char tripwire;              
    unsigned char car;                   
    unsigned char motor;                 
    unsigned char male;                  
    unsigned char female;                
    unsigned char resv[22];              
} NET_SDK_SEARCH_SMART_TARGET;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_SEARCH_SMART_TARGET
{
    public UInt32 limitNum;
    public DD_TIME_EX startTime;
    public DD_TIME_EX endTime;
    public byte faceDetection;
    public byte faceMatchWhiteList;
    public byte faceMatchBlackList;
    public byte faceMatchStrangerList;
    public byte intrusion;
    public byte tripwire;
    public byte car;
    public byte motor;
    public byte male;
    public byte female;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 22)]
    public byte[] resv;
}

功能描述

搜索智能数据结构体。

成员说明

成员 类型 备注
limitNum unsigned int 最大数量限制。
startTime DD_TIME_EX 开始时间。
endTime DD_TIME_EX 结束时间。
faceDetection unsigned char 是否搜索人脸检测,1:搜索,0:不搜索。
faceMatchWhiteList unsigned char 是否搜索人脸比对白名单列表,1:搜索,0:不搜索。
faceMatchBlackList unsigned char 是否搜索人脸比对黑名单列表,1:搜索,0:不搜索。
faceMatchStrangerList unsigned char 是否搜索人脸比对陌生人列表,1:搜索,0:不搜索。
intrusion unsigned char 是否搜索区域入侵,1:搜索,0:不搜索。
tripwire unsigned char 是否搜索绊线检测,1:搜索,0:不搜索。
car unsigned char 是否搜索汽车,1:搜索,0:不搜索。
motor unsigned char 是否搜索摩托车,1:搜索,0:不搜索。
male unsigned char 是否搜索男性,1:搜索,0:不搜索。
female unsigned char 是否搜索女性,1:搜索,0:不搜索。
resv unsigned char[22] 预留字段。
错误码