NetSDK
1.0.0.0
NetSDK开发文档
|
Public 成员函数 | |
int | XVR_SDK_Init () |
初始化SDK 更多... | |
int | XVR_SDK_Cleanup () |
清理SDK 更多... | |
int | XVR_SDK_Create (LongByReference handle) |
关闭设备连接 更多... | |
int | XVR_SDK_Destroy (Long handle) |
关闭设备连接 更多... | |
int | XVR_SDK_Login (Long handle, String address, int port, String username, String password) |
登入设备 更多... | |
int | XVR_SDK_FaceRegister (Long handle, FaceInfo info, byte[] imgData, int imgDataLength) |
注册人脸 更多... | |
int | XVR_SDK_FaceList (Long handle, int start, int limit, FaceInfo[] result, String condition, IntByReference count) |
查询人脸列表 更多... | |
int | XVR_SDK_FaceUnregister (Long handle, String[] personId, int personIdCount) |
反注册人脸 更多... | |
int XVR_SDK_Cleanup | ( | ) |
清理SDK
int XVR_SDK_Create | ( | LongByReference | handle | ) |
关闭设备连接
handle | 返回设备连接句柄 |
int XVR_SDK_Destroy | ( | Long | handle | ) |
关闭设备连接
handle | 设备连接句柄 |
int XVR_SDK_FaceList | ( | Long | handle, |
int | start, | ||
int | limit, | ||
FaceInfo[] | result, | ||
String | condition, | ||
IntByReference | count | ||
) |
查询人脸列表
handle | 设备连接句柄 |
start | 查询记录起始位置 |
limit | 查询记录上限条数 |
result | 查询结果 |
condition | 查询条件, 如非空字符串, 则搜索包含condition的人名或ID |
count | 查询结果返回记录数 |
int XVR_SDK_FaceRegister | ( | Long | handle, |
FaceInfo | info, | ||
byte[] | imgData, | ||
int | imgDataLength | ||
) |
注册人脸
handle | 设备连接句柄 |
info | 人脸信息 |
imgData | 人脸图片 |
imgDataLength | 人脸图片大小 |
int XVR_SDK_FaceUnregister | ( | Long | handle, |
String[] | personId, | ||
int | personIdCount | ||
) |
反注册人脸
handle | 设备连接句柄 |
personId | 注册人ID数组 |
personIdCount | ID数组大小 |
int XVR_SDK_Init | ( | ) |
初始化SDK
int XVR_SDK_Login | ( | Long | handle, |
String | address, | ||
int | port, | ||
String | username, | ||
String | password | ||
) |
登入设备
handle | 设备连接句柄 |
address | 设备地址 |
port | 设备HTTP端口 |
username | 用户名 |
password | 密码 |