1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
package com.netsdk.demo.module;
 
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
 
import com.netsdk.lib.NativeString;
import com.netsdk.lib.NetSDKLib;
import com.netsdk.lib.ToolKits;
import com.netsdk.lib.NetSDKLib.*;
 
import com.sun.jna.Memory;
import com.sun.jna.Pointer;
 
/**
 * IVSS 和 IPC-FR 人脸功能接口实现, IPC-FD只支持目标检测事件
 */
 
public class TargetRecognitionModule {
    // 查找句柄
    private static LLong m_FindHandle = null;   
    
    // 查询密令
    public static int nToken = 0;
    
    ////////////////////////////////  目标识别 和 目标检测 事件  /////////////////////////////////////////////
    /**
     * 目标识别事件和目标检测事件订阅
     * @param channel 通道号
     * @param callback 回调函数
     * @return true:成功    false:失败
     */
    public static LLong realLoadPicture(int channel, fAnalyzerDataCallBack callback) {
        int bNeedPicture = 1; // 是否需要图片
    
        LLong m_hAttachHandle =  LoginModule.netsdk.CLIENT_RealLoadPictureEx(LoginModule.m_hLoginHandle, channel, 
                                    NetSDKLib.EVENT_IVS_ALL, bNeedPicture, callback, null, null);
        if(m_hAttachHandle.longValue() == 0) {
            System.err.println("CLIENT_RealLoadPictureEx Failed, Error:" + ToolKits.getErrorCodePrint());
        } else {
            System.out.println("通道[" + channel + "]订阅成功!");
        }
 
        return m_hAttachHandle;
    }
    
    /**
     * 停止订阅
     * @param m_hAttachHandle 智能订阅句柄
     */
    public static void stopRealLoadPicture(LLong m_hAttachHandle) {
        if(m_hAttachHandle.longValue() != 0) {
            LoginModule.netsdk.CLIENT_StopLoadPic(m_hAttachHandle);
            m_hAttachHandle.setValue(0);
        }
    }
    
    
    ///////////////////////////////////////  人脸库的增、删、改、查  ////////////////////////////////
    
    /**
     * 查询人脸库
     * @param groupId 需要查找的人脸库ID; 为空表示查找所有的人脸库
     */
    public static NET_FACERECONGNITION_GROUP_INFO[] findGroupInfo(String groupId) {    
        NET_FACERECONGNITION_GROUP_INFO[] groupInfoRet = null;
        
        /*
         * 入参
         */
        NET_IN_FIND_GROUP_INFO stuIn = new NET_IN_FIND_GROUP_INFO();
        System.arraycopy(groupId.getBytes(), 0, stuIn.szGroupId, 0, groupId.getBytes().length);   
 
        /*
         * 出参
         */
        int max = 20;
        NET_FACERECONGNITION_GROUP_INFO[] groupInfo  = new NET_FACERECONGNITION_GROUP_INFO[max];
        for(int i = 0; i < max; i++) {
            groupInfo[i] = new NET_FACERECONGNITION_GROUP_INFO();
        }
        
        NET_OUT_FIND_GROUP_INFO stuOut = new NET_OUT_FIND_GROUP_INFO();   
        stuOut.pGroupInfos = new Memory(groupInfo[0].size() * groupInfo.length);     // Pointer初始化
        stuOut.pGroupInfos.clear(groupInfo[0].size() * groupInfo.length);
        stuOut.nMaxGroupNum = groupInfo.length;
        
        ToolKits.SetStructArrToPointerData(groupInfo, stuOut.pGroupInfos);  // 将数组内存拷贝给Pointer
 
        if(LoginModule.netsdk.CLIENT_FindGroupInfo(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000)) {
            
            // 将Pointer的值输出到 数组 NET_FACERECONGNITION_GROUP_INFO
            ToolKits.GetPointerDataToStructArr(stuOut.pGroupInfos, groupInfo);   
            
            if(stuOut.nRetGroupNum > 0) {
                // 根据设备返回的,将有效的人脸库信息返回
                groupInfoRet = new NET_FACERECONGNITION_GROUP_INFO[stuOut.nRetGroupNum];
                for(int i = 0; i < stuOut.nRetGroupNum; i++) {
                    groupInfoRet[i] = groupInfo[i];
                }
            }
        } else {
            System.err.println("查询人员信息失败" + ToolKits.getErrorCodePrint());
            return null;
        }
        
        return groupInfoRet;
    }
    
    /**
     * 添加人脸库
     * @param groupName 需要添加的人脸库名称
     */
    public static boolean addGroup(String groupName) {
        NET_ADD_FACERECONGNITION_GROUP_INFO addGroupInfo = new NET_ADD_FACERECONGNITION_GROUP_INFO();
        
        // 人脸库名称
        try {
            System.arraycopy(groupName.getBytes("GBK"), 0, addGroupInfo.stuGroupInfo.szGroupName, 0, groupName.getBytes("GBK").length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }   
        
        /*
         * 入参
         */
        NET_IN_OPERATE_FACERECONGNITION_GROUP stuIn = new NET_IN_OPERATE_FACERECONGNITION_GROUP();
        stuIn.emOperateType = EM_OPERATE_FACERECONGNITION_GROUP_TYPE.NET_FACERECONGNITION_GROUP_ADD; // 添加人员组信息
        stuIn.pOPerateInfo = addGroupInfo.getPointer();        
        
        /*
         * 出参
         */
        NET_OUT_OPERATE_FACERECONGNITION_GROUP stuOut = new NET_OUT_OPERATE_FACERECONGNITION_GROUP();
        
        addGroupInfo.write();
        boolean bRet = LoginModule.netsdk.CLIENT_OperateFaceRecognitionGroup(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000);
        addGroupInfo.read();
        
        if(bRet) {
            System.out.println("人员组ID : " + new String(stuOut.szGroupId).trim());  // 新增记录的人员组ID,唯一标识一组人员    
        } 
 
        return bRet;
    }
    
    /**
     * 修改人脸库
     * @param groupName 修改后的人脸库名称
     * @param groupId 需要修改的人脸库ID
     */
    public static boolean modifyGroup(String groupName, String groupId) {
        NET_MODIFY_FACERECONGNITION_GROUP_INFO modifyGroupInfo = new NET_MODIFY_FACERECONGNITION_GROUP_INFO();
        
        // 人脸库名称
        try {
            System.arraycopy(groupName.getBytes("GBK"), 0, modifyGroupInfo.stuGroupInfo.szGroupName, 0, groupName.getBytes("GBK").length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }  
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, modifyGroupInfo.stuGroupInfo.szGroupId, 0, groupId.getBytes().length);   
        
        /*
         * 入参
         */
        NET_IN_OPERATE_FACERECONGNITION_GROUP stuIn = new NET_IN_OPERATE_FACERECONGNITION_GROUP();
        stuIn.emOperateType = EM_OPERATE_FACERECONGNITION_GROUP_TYPE.NET_FACERECONGNITION_GROUP_MODIFY; // 修改人员组信息
        stuIn.pOPerateInfo = modifyGroupInfo.getPointer();        
        
        /*
         * 出参
         */
        NET_OUT_OPERATE_FACERECONGNITION_GROUP stuOut = new NET_OUT_OPERATE_FACERECONGNITION_GROUP();
        
        modifyGroupInfo.write();
        boolean bRet = LoginModule.netsdk.CLIENT_OperateFaceRecognitionGroup(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000);
        modifyGroupInfo.read();
        
        if(bRet) {
            System.out.println("修改人脸库成功.");
        }
        
        return bRet;
    }
    
    /**
     * 删除人脸库
     * @param groupId 需要删除的人脸库ID; 为空表示删除所有的人脸库
     */
    public static boolean deleteGroup(String groupId) {
        NET_DELETE_FACERECONGNITION_GROUP_INFO deleteGroupInfo = new NET_DELETE_FACERECONGNITION_GROUP_INFO();
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, deleteGroupInfo.szGroupId, 0, groupId.getBytes().length);   
        
        /*
         * 入参
         */
        NET_IN_OPERATE_FACERECONGNITION_GROUP stuIn = new NET_IN_OPERATE_FACERECONGNITION_GROUP();
        stuIn.emOperateType = EM_OPERATE_FACERECONGNITION_GROUP_TYPE.NET_FACERECONGNITION_GROUP_DELETE; // 删除人员组信息
        stuIn.pOPerateInfo = deleteGroupInfo.getPointer();        
        
        /*
         * 出参
         */
        NET_OUT_OPERATE_FACERECONGNITION_GROUP stuOut = new NET_OUT_OPERATE_FACERECONGNITION_GROUP();
        
        deleteGroupInfo.write();
        boolean bRet = LoginModule.netsdk.CLIENT_OperateFaceRecognitionGroup(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000);
        deleteGroupInfo.read();
        
        if(bRet) {
            System.out.println("删除人脸库成功.");
        } 
 
        return bRet;
    }
    
    /////////////////////////////  按人脸库布控、撤控   ///////////////////////////////////////
    /**
     * 以人脸库的角度进行布控
     * @param groupId 人脸库ID
     * @param hashMap  key:撤控通道     value:相似度 
     */
    public static boolean putDisposition(String groupId, HashMap<Integer, Integer> hashMap) {
        int i = 0;
        
        /*
         * 入参
         */
        NET_IN_FACE_RECOGNITION_PUT_DISPOSITION_INFO stuIn = new NET_IN_FACE_RECOGNITION_PUT_DISPOSITION_INFO();
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.szGroupId, 0, groupId.getBytes().length);
            
        for(Map.Entry<Integer, Integer> entry : hashMap.entrySet()) {
            stuIn.stuDispositionChnInfo[i].nChannelID = entry.getKey() - 1;
            stuIn.stuDispositionChnInfo[i].nSimilary = entry.getValue();
        
            i++;
        }
 
        stuIn.nDispositionChnNum = hashMap.size();        // 布控视频通道个数
        
        /*
         * 出参
         */
        NET_OUT_FACE_RECOGNITION_PUT_DISPOSITION_INFO stuOut = new NET_OUT_FACE_RECOGNITION_PUT_DISPOSITION_INFO();
        
        boolean bRet = LoginModule.netsdk.CLIENT_FaceRecognitionPutDisposition(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000);
        if(bRet) {
            System.out.println("通道布控结果个数:" + stuOut.nReportCnt);
        }
        return bRet;
    }
    
    /**
     * 以人脸库的角度进行撤控
     * @param groupId 人脸库ID
     * @param arrayList 撤控通道列表
     */
    public static boolean delDisposition(String groupId, ArrayList<Integer> arrayList) {
        /*
         * 入参
         */
        NET_IN_FACE_RECOGNITION_DEL_DISPOSITION_INFO stuIn = new NET_IN_FACE_RECOGNITION_DEL_DISPOSITION_INFO();
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.szGroupId, 0, groupId.getBytes().length);
        
        // 撤控视频通道列表
        for(int i = 0; i < arrayList.size(); i++) {
            stuIn.nDispositionChn[i] = arrayList.get(i) - 1;  
        }
        
        // 撤控视频通道个数
        stuIn.nDispositionChnNum = arrayList.size();          
        
        /*
         *  出参
         */
        NET_OUT_FACE_RECOGNITION_DEL_DISPOSITION_INFO stuOut = new NET_OUT_FACE_RECOGNITION_DEL_DISPOSITION_INFO();
        
        boolean bRet = LoginModule.netsdk.CLIENT_FaceRecognitionDelDisposition(LoginModule.m_hLoginHandle, stuIn, stuOut, 4000);
        if(bRet) {
            System.out.println("通道撤控结果个数:" + stuOut.nReportCnt);
        }
        return bRet;
    }
    
    /////////////////////////////  按通道布控、撤控   ///////////////////////////////////////
    /**
     * 获取布控在视频通道的组信息
     * @param channel 通道号
     */
    public static void GetGroupInfoForChannel(int channel) {
        /*
         * 入参
         */
        NET_IN_GET_GROUPINFO_FOR_CHANNEL stIn = new NET_IN_GET_GROUPINFO_FOR_CHANNEL();
        
        // 通道号
        stIn.nChannelID = channel;
        
        /*
         * 出参
         */
        NET_OUT_GET_GROUPINFO_FOR_CHANNEL stOut = new NET_OUT_GET_GROUPINFO_FOR_CHANNEL();
        
        if(LoginModule.netsdk.CLIENT_GetGroupInfoForChannel(LoginModule.m_hLoginHandle, stIn, stOut, 4000)) {
            for(int i = 0; i < stOut.nGroupIdNum; i++) {
                System.out.println("人脸库ID:" + new String(stOut.szGroupIdArr[i].szGroupId).trim());
                System.out.println("相似度:" + stOut.nSimilary[i] + "\n");
            }
        } else {
            System.err.println("获取布控在视频通道的组信息失败, " + ToolKits.getErrorCodePrint());
        }    
    }
    /**
     * 布控通道人员组信息
     * @param channel
     * @param groupIds 人脸库ID,长度等于相似度
     * @param similarys 相似度, 长度等于人脸库ID
     */
    public static void SetGroupInfoForChannel(int channel, String[] groupIds, int[] similarys) {
        /*
         * 入参
         */
        NET_IN_SET_GROUPINFO_FOR_CHANNEL stIn = new NET_IN_SET_GROUPINFO_FOR_CHANNEL();
        
        // 通道号
        stIn.nChannelID = channel;
        
        // 人脸库ID个数
        stIn.nGroupIdNum = groupIds.length;
        
        // 相似度个数
        stIn.nSimilaryNum = similarys.length;
        
        for(int i = 0; i < groupIds.length; i++) {
            // 人脸库ID赋值,用数组拷贝
            System.arraycopy(groupIds[i].getBytes(), 0, stIn.szGroupIdArr[i].szGroupId, 0, groupIds[i].getBytes().length);
            
            // 对应的人脸库的相似度
            stIn.nSimilary[i] = similarys[i];
        }
        
        /*
         * 出参
         */
        NET_OUT_SET_GROUPINFO_FOR_CHANNEL stOut = new NET_OUT_SET_GROUPINFO_FOR_CHANNEL();
        
        if(LoginModule.netsdk.CLIENT_SetGroupInfoForChannel(LoginModule.m_hLoginHandle, stIn, stOut, 4000)) {
            
        }
    }
    
    /////////////////////////////   人员操作    ////////////////////////////////////////////
    /**
     * 按条件查询目标识别结果
     * @param groupId  人脸库ID
     * @param isStartBirthday  查询条件是否下发开始生日
     * @param startTime  生日起始时间
     * @param isEndBirthday  查询条件是否下发结束生日
     * @param endTime  生日结束时间
     * @param personName  姓名
     * @param sex  性别
     * @param idType  证件类型
     * @param idNo  证件号
     * @return 查询到的所有人员个数  
     */
    public static int startFindPerson(String groupId, 
                                      boolean isStartBirthday, 
                                      String startTime, 
                                      boolean isEndBirthday,
                                      String endTime, 
                                      String personName, 
                                      int sex, 
                                      int idType, 
                                      String idNo) {    
        
        m_FindHandle = null;
        nToken = 0;
        
        int nTotalCount = 0;  
        
        /*
         * 入参, IVVS设备,查询条件只有  stuInStartFind.stPerson 里的参数有效
         */
        NET_IN_STARTFIND_FACERECONGNITION stuIn = new NET_IN_STARTFIND_FACERECONGNITION();
 
        stuIn.bPersonExEnable = 1;      // 人员信息查询条件是否有效, 并使用扩展结构体
 
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.stPersonInfoEx.szGroupID, 0, groupId.getBytes().length); 
        
        // 姓名
        try {
            System.arraycopy(personName.getBytes("GBK"), 0, stuIn.stPersonInfoEx.szPersonName, 0, personName.getBytes("GBK").length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } 
        
        // 性别
        stuIn.stPersonInfoEx.bySex = (byte)sex;
        
        // 证件类型
        stuIn.stPersonInfoEx.byIDType = (byte)idType;
        
        // 证件号
        System.arraycopy(idNo.getBytes(), 0, stuIn.stPersonInfoEx.szID, 0, idNo.getBytes().length); 
        
        stuIn.stFilterInfo.nGroupIdNum = 1;
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.stFilterInfo.szGroupIdArr[0].szGroupId, 0, groupId.getBytes().length);  
 
        // 待查询人脸类型
        stuIn.stFilterInfo.emFaceType = EM_FACERECOGNITION_FACE_TYPE.EM_FACERECOGNITION_FACE_TYPE_ALL;
        
        // 开始生日
        if(isStartBirthday) {
            String[] startTimeStr = startTime.split("-");
            
            stuIn.stFilterInfo.stBirthdayRangeStart.dwYear = Integer.parseInt(startTimeStr[0]);
            stuIn.stFilterInfo.stBirthdayRangeStart.dwMonth = Integer.parseInt(startTimeStr[1]);
            stuIn.stFilterInfo.stBirthdayRangeStart.dwDay = Integer.parseInt(startTimeStr[2]);
        }
        
        // 结束生日
        if(isEndBirthday) {
            String[] endTimeStr = endTime.split("-");
            
            stuIn.stFilterInfo.stBirthdayRangeEnd.dwYear = Integer.parseInt(endTimeStr[0]);
            stuIn.stFilterInfo.stBirthdayRangeEnd.dwMonth = Integer.parseInt(endTimeStr[1]);
            stuIn.stFilterInfo.stBirthdayRangeEnd.dwDay = Integer.parseInt(endTimeStr[2]);
        }
        
        stuIn.stFilterInfo.nRangeNum = 1;
        stuIn.stFilterInfo.szRange[0] = EM_FACE_DB_TYPE.NET_FACE_DB_TYPE_BLACKLIST;
 
        /*
         * 出参
         */
        NET_OUT_STARTFIND_FACERECONGNITION stuOut = new NET_OUT_STARTFIND_FACERECONGNITION();
        stuIn.write();
        stuOut.write();
        if(LoginModule.netsdk.CLIENT_StartFindFaceRecognition(LoginModule.m_hLoginHandle, stuIn,  stuOut, 4000)) {        
            m_FindHandle = stuOut.lFindHandle;
            nTotalCount = stuOut.nTotalCount;
            nToken = stuOut.nToken;
        } else {
            System.out.println("Failed, Error:" + ToolKits.getErrorCodePrint());
        }
        
        return nTotalCount;
    }
    
    /**
     * 查找目标识别结果
     * @param beginNum 查询起始序号
     * @param nCount  当前想查询的记录条数
     * @return 返回的人员信息数组
     */
    public static CANDIDATE_INFOEX[] doFindPerson(int beginNum, int nCount) {
        /*
         *入参
         */
        NetSDKLib.NET_IN_DOFIND_FACERECONGNITION  stuIn = new NetSDKLib.NET_IN_DOFIND_FACERECONGNITION();
        stuIn.lFindHandle = m_FindHandle;
        stuIn.nCount      = nCount;       // 当前想查询的记录条数
        stuIn.nBeginNum   = beginNum;     // 查询起始序号
        
        /*
         * 出参
         */
        NetSDKLib.NET_OUT_DOFIND_FACERECONGNITION stuOut = new NetSDKLib.NET_OUT_DOFIND_FACERECONGNITION();    
        stuOut.bUseCandidatesEx = 1;                // 是否使用候选对象扩展结构体
        
        // 必须申请内存,每次查询几个,必须至少申请几个,最大申请20个
        for(int i = 0; i < nCount; i++) {
            stuOut.stuCandidatesEx[i].stPersonInfo.szFacePicInfo[0].nFilePathLen = 256;
            stuOut.stuCandidatesEx[i].stPersonInfo.szFacePicInfo[0].pszFilePath = new Memory(256);
        }
        
        stuIn.write();
        stuOut.write();
        if(LoginModule.netsdk.CLIENT_DoFindFaceRecognition(stuIn, stuOut, 4000)) {
            stuIn.read();
            stuOut.read();
            
            if(stuOut.nCadidateExNum == 0) {
                return null;
            }
            
            // 查询到的数据
            CANDIDATE_INFOEX[]    stuCandidatesEx = new CANDIDATE_INFOEX[stuOut.nCadidateExNum];
            for(int i = 0; i < stuOut.nCadidateExNum; i++) {
                stuCandidatesEx[i] = new CANDIDATE_INFOEX();
                stuCandidatesEx[i] = stuOut.stuCandidatesEx[i];
            }   
            
            return stuCandidatesEx;
        } else {
            System.out.println("Failed, Error:" + ToolKits.getErrorCodePrint());
        }
    
        return null;
    }
    
    /**
     * 结束查询
     */
    public static boolean doFindPerson() {
        boolean bRet = false;
        if(m_FindHandle.longValue() != 0) {
            bRet = LoginModule.netsdk.CLIENT_StopFindFaceRecognition(m_FindHandle);
        }
        return bRet;
    }
    
    /**
     * 添加人员
     * @param groupId  人脸库ID
     * @param memory  图片数据
     * @param personName 姓名
     * @param sex  性别
     * @param isBirthday 是否下发生日
     * @param birthday  生日
     * @param byIdType  证件类型
     * @param idNo  证件号
     * @return
     */
    public static boolean addPerson(String groupId, 
                                    Memory memory, 
                                    String personName, 
                                    int sex, 
                                    boolean isBirthday, 
                                    String birthday,  
                                    int byIdType, 
                                    String idNo) {
        /*
         *  入参
         */
        NET_IN_OPERATE_FACERECONGNITIONDB stuIn  = new NET_IN_OPERATE_FACERECONGNITIONDB();
        stuIn.emOperateType = NetSDKLib.EM_OPERATE_FACERECONGNITIONDB_TYPE.NET_FACERECONGNITIONDB_ADD;
        
        ///////// 使用人员扩展信息 //////////
        stuIn.bUsePersonInfoEx = 1;   
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.stPersonInfoEx.szGroupID, 0, groupId.getBytes().length);
        
        // 生日设置
        if(isBirthday) {
            String[] birthdays = birthday.split("-");
                    
            stuIn.stPersonInfoEx.wYear = (short)Integer.parseInt(birthdays[0]);
            stuIn.stPersonInfoEx.byMonth = (byte)Integer.parseInt(birthdays[1]);
            stuIn.stPersonInfoEx.byDay = (byte)Integer.parseInt(birthdays[2]);
        }
        
        // 性别,1-男,2-女,作为查询条件时,此参数填0,则表示此参数无效    
        stuIn.stPersonInfoEx.bySex = (byte)sex;    
        
        // 人员名字    
        try {
            System.arraycopy(personName.getBytes("GBK"), 0, stuIn.stPersonInfoEx.szPersonName, 0, personName.getBytes("GBK").length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } 
        
        // 证件类型
        stuIn.stPersonInfoEx.byIDType = (byte)byIdType;  
        
        // 证件号
        System.arraycopy(idNo.getBytes(), 0, stuIn.stPersonInfoEx.szID, 0, idNo.getBytes().length);                       
        
        // 图片张数、大小、缓存设置
        if(memory != null) {
            stuIn.stPersonInfoEx.wFacePicNum = 1; // 图片张数
            stuIn.stPersonInfoEx.szFacePicInfo[0].dwFileLenth = (int)memory.size();  // 图片大小
            stuIn.stPersonInfoEx.szFacePicInfo[0].dwOffSet = 0;
            
            stuIn.nBufferLen = (int)memory.size();
            stuIn.pBuffer = memory;
        }
        
        /*
         * 出参
         */
        NET_OUT_OPERATE_FACERECONGNITIONDB stuOut = new NET_OUT_OPERATE_FACERECONGNITIONDB() ;    
        
        stuIn.write();
        boolean bRet = LoginModule.netsdk.CLIENT_OperateFaceRecognitionDB(LoginModule.m_hLoginHandle, stuIn, stuOut, 3000);
        stuIn.read();
        
        if(bRet) {
            System.out.println("szUID : " + new String(stuOut.szUID).trim());
        } else {
            System.err.println(ToolKits.getErrorCodePrint());
        }
        
        return bRet;
    }
    
    /**
     * 修改人员信息
     * @param groupId 人脸库ID
     * @param uid  人员唯一标识符
     * @param memory  图片数据
     * @param personName  姓名
     * @param sex  性别
     * @param isBirthday  是否下发生日
     * @param birthday  生日
     * @param byIdType  证件类型
     * @param idNo  证件号
     * @return true:成功 ,  false:失败
     */
    public static boolean modifyPerson(String groupId, 
                                       String uid,
                                       Memory memory, 
                                       String personName, 
                                       int sex, 
                                       boolean isBirthday, 
                                       String birthday,  
                                       int byIdType, 
                                       String idNo) {
        // 入参
        NET_IN_OPERATE_FACERECONGNITIONDB stuIn  = new NET_IN_OPERATE_FACERECONGNITIONDB();
        stuIn.emOperateType = NetSDKLib.EM_OPERATE_FACERECONGNITIONDB_TYPE.NET_FACERECONGNITIONDB_MODIFY;
        
        ///////// 使用人员扩展信息  ////////
        stuIn.bUsePersonInfoEx = 1;    
        
        // 人脸库ID
        System.arraycopy(groupId.getBytes(), 0, stuIn.stPersonInfoEx.szGroupID, 0, groupId.getBytes().length);
        
        // 人员唯一标识符
        System.arraycopy(uid.getBytes(), 0, stuIn.stPersonInfoEx.szUID, 0, uid.getBytes().length); 
        
        // 生日设置
        if(isBirthday) {
            String[] birthdays = birthday.split("-");
                    
            stuIn.stPersonInfoEx.wYear = (short)Integer.parseInt(birthdays[0]);
            stuIn.stPersonInfoEx.byMonth = (byte)Integer.parseInt(birthdays[1]);
            stuIn.stPersonInfoEx.byDay = (byte)Integer.parseInt(birthdays[2]);
        }
        
        // 性别,1-男,2-女,作为查询条件时,此参数填0,则表示此参数无效    
        stuIn.stPersonInfoEx.bySex = (byte)sex;    
        
        // 人员名字    
        try {
            System.arraycopy(personName.getBytes("GBK"), 0, stuIn.stPersonInfoEx.szPersonName, 0, personName.getBytes("GBK").length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } 
        
        // 证件类型
        stuIn.stPersonInfoEx.byIDType = (byte)byIdType;  
        
        // 证件号
        System.arraycopy(idNo.getBytes(), 0, stuIn.stPersonInfoEx.szID, 0, idNo.getBytes().length);                       
        
        // 图片张数、大小、缓存设置
        if(memory != null) {
            stuIn.stPersonInfoEx.wFacePicNum = 1; // 图片张数
            stuIn.stPersonInfoEx.szFacePicInfo[0].dwFileLenth = (int)memory.size();  // 图片大小
            stuIn.stPersonInfoEx.szFacePicInfo[0].dwOffSet = 0;
            
            stuIn.nBufferLen = (int)memory.size();
            stuIn.pBuffer = memory;
        }                      
 
        // 出参
        NET_OUT_OPERATE_FACERECONGNITIONDB stuOut = new NET_OUT_OPERATE_FACERECONGNITIONDB() ;    
        
        stuIn.write();
        if(!LoginModule.netsdk.CLIENT_OperateFaceRecognitionDB(LoginModule.m_hLoginHandle, stuIn, stuOut, 3000)) {
            System.err.println("修改人员失败" + ToolKits.getErrorCodePrint());
            return false;
        }
        stuIn.read();
 
        return true;
    }
    
    /**
     * 删除人员信息
     * @param groupId 人脸库ID
     * @param sUID  人员唯一标识符
     */
    public static boolean delPerson(String groupId, String sUID) {    
        /*
         *  入参
         */
        NET_IN_OPERATE_FACERECONGNITIONDB stuIn  = new NET_IN_OPERATE_FACERECONGNITIONDB();
        stuIn.emOperateType = NetSDKLib.EM_OPERATE_FACERECONGNITIONDB_TYPE.NET_FACERECONGNITIONDB_DELETE;
    
        //////// 使用人员扩展信息  //////////
        stuIn.bUsePersonInfoEx = 1;    
        
        // GroupID 赋值
        System.arraycopy(groupId.getBytes(), 0, stuIn.stPersonInfoEx.szGroupID, 0, groupId.getBytes().length);
 
        // UID赋值
        System.arraycopy(sUID.getBytes(), 0, stuIn.stPersonInfoEx.szUID, 0, sUID.getBytes().length);
 
        /*
         *  出参
         */
        NET_OUT_OPERATE_FACERECONGNITIONDB stuOut = new NET_OUT_OPERATE_FACERECONGNITIONDB() ;    
 
        boolean bRet = LoginModule.netsdk.CLIENT_OperateFaceRecognitionDB(LoginModule.m_hLoginHandle, stuIn, stuOut, 3000);
        if(!bRet) {
            System.err.println(LoginModule.netsdk.CLIENT_GetLastError());
        }
        
        return bRet;
    }
    
    /**
     * 下载图片, 用于修改人员信息
     * @param szFileName 需要下载的文件名
     * @param pszFileDst 存放文件路径
     */
    public static boolean downloadPersonPic(String szFileName, String pszFileDst) {
        /*
         * 入参
         */
        NET_IN_DOWNLOAD_REMOTE_FILE stuIn = new NET_IN_DOWNLOAD_REMOTE_FILE();
        // 需要下载的文件名
        stuIn.pszFileName = new NativeString(szFileName).getPointer();
        
        // 存放文件路径
        stuIn.pszFileDst = new NativeString(pszFileDst).getPointer();
 
        /*
         * 出参
         */
        NET_OUT_DOWNLOAD_REMOTE_FILE stuOut = new NET_OUT_DOWNLOAD_REMOTE_FILE();
        
        if(!LoginModule.netsdk.CLIENT_DownloadRemoteFile(LoginModule.m_hLoginHandle, stuIn, stuOut, 5000)) {
            System.err.println("下载图片失败!" + ToolKits.getErrorCodePrint());
            return false;
        }
        return true;
    }
 
    /**
     * 显示/关闭规则库
     * @param RealPlayHandle  实时预览
     * @param bTrue    1-打开, 0-关闭
     * @return
     */
    public static void renderPrivateData(LLong m_hRealPlayHandle, int bTrue) {
        if(m_hRealPlayHandle.longValue() != 0) {
            LoginModule.netsdk.CLIENT_RenderPrivateData(m_hRealPlayHandle, bTrue);
        }    
    }
    
    //////////////////////////  查询事件对比记录   /////////////////////////
    private static LLong lFindHandle = new LLong(0);    // 查找句柄
    
    /**
     * 获取查找句柄
     * @param nChn  通道号
     * @param startTime 开始时间
     * @param endTime  结束时间
     */
    public static boolean findFile(int nChn, String startTime, String endTime) {
        int type = NetSDKLib.EM_FILE_QUERY_TYPE.NET_FILE_QUERY_FACE;
 
        /**
         *  查询条件
         */
        MEDIAFILE_FACERECOGNITION_PARAM findContion = new MEDIAFILE_FACERECOGNITION_PARAM();
        
        // 开始时间
        String[] starts = startTime.split(" ");
        
        findContion.stStartTime.dwYear = Integer.parseInt(starts[0].split("-")[0]);
        findContion.stStartTime.dwMonth = Integer.parseInt(starts[0].split("-")[1]);
        findContion.stStartTime.dwDay = Integer.parseInt(starts[0].split("-")[2]);
        findContion.stStartTime.dwHour = Integer.parseInt(starts[1].split(":")[0]);
        findContion.stStartTime.dwMinute = Integer.parseInt(starts[1].split(":")[1]);
        findContion.stStartTime.dwSecond = Integer.parseInt(starts[1].split(":")[2]);
 
        // 结束时间
        String[] ends = endTime.split(" ");
        findContion.stEndTime.dwYear = Integer.parseInt(ends[0].split("-")[0]);
        findContion.stEndTime.dwMonth = Integer.parseInt(ends[0].split("-")[1]);
        findContion.stEndTime.dwDay = Integer.parseInt(ends[0].split("-")[2]);
        findContion.stEndTime.dwHour = Integer.parseInt(ends[1].split(":")[0]);
        findContion.stEndTime.dwMinute = Integer.parseInt(ends[1].split(":")[1]);
        findContion.stEndTime.dwSecond = Integer.parseInt(ends[1].split(":")[2]);
        
        // 通道号
        findContion.nChannelId = nChn;
        
        /**
         * 以下注释的查询条件参数,目前设备不支持,后续会逐渐增加
         */
//        // 地点,支持模糊匹配 
//        String machineAddress = "";
//        System.arraycopy(machineAddress.getBytes(), 0, findContion.szMachineAddress, 0, machineAddress.getBytes().length);
//        
//        // 待查询报警类型
//        findContion.nAlarmType = EM_FACERECOGNITION_ALARM_TYPE.NET_FACERECOGNITION_ALARM_TYPE_ALL;
        
//        // 人员组数 
//        findContion.nGroupIdNum = 1;  
//        
//        // 人员组ID(人脸库ID)
//        String groupId = "";
//        System.arraycopy(groupId.getBytes(), 0, findContion.szGroupIdArr[0].szGroupId, 0, groupId.getBytes().length);
//        
//        // 人员信息扩展是否有效
//        findContion.abPersonInfoEx = 1;     
//        
//        // 人员组ID(人脸库ID)
//        System.arraycopy(groupId.getBytes(), 0, findContion.stPersonInfoEx.szGroupID, 0, groupId.getBytes().length);
        
        findContion.write();
        lFindHandle = LoginModule.netsdk.CLIENT_FindFileEx(LoginModule.m_hLoginHandle, type, findContion.getPointer(), null, 3000);
        if(lFindHandle.longValue() == 0) {
            System.err.println("FindFileEx Failed!" + ToolKits.getErrorCodePrint());
            return false;
        }
        findContion.read();
        
        return true;
    }
    
    
    /**
     * 查询对比数据
     * @param nFindCount 每次查询的个数
     */
    public static MEDIAFILE_FACERECOGNITION_INFO[] findNextFile(int nFindCount) {
        MEDIAFILE_FACERECOGNITION_INFO[] msg = new MEDIAFILE_FACERECOGNITION_INFO[nFindCount];
        for (int i = 0; i < msg.length; ++i) {
            msg[i] = new NetSDKLib.MEDIAFILE_FACERECOGNITION_INFO();
            msg[i].bUseCandidatesEx = 1;
        }
        
        int MemorySize = msg[0].size() * nFindCount;
        Pointer pointer = new Memory(MemorySize);
        pointer.clear(MemorySize);
        
        ToolKits.SetStructArrToPointerData(msg, pointer);
 
        int nRetCount = LoginModule.netsdk.CLIENT_FindNextFileEx(lFindHandle, nFindCount, pointer, MemorySize, null, 3000);
        ToolKits.GetPointerDataToStructArr(pointer, msg);
        
        if (nRetCount <= 0) {
            System.err.println("FindNextFileEx failed!" + ToolKits.getErrorCodePrint());
            return null;
        } 
 
        MEDIAFILE_FACERECOGNITION_INFO[] retInfo = new MEDIAFILE_FACERECOGNITION_INFO[nRetCount];
        for (int i = 0; i < retInfo.length; ++i) {
            retInfo[i] = new NetSDKLib.MEDIAFILE_FACERECOGNITION_INFO();
            retInfo[i] = msg[i];
        }
        
        return retInfo;    
    }
    
    public static void findCloseFile() {
        if(lFindHandle.longValue() != 0) {
            LoginModule.netsdk.CLIENT_FindCloseEx(lFindHandle);    
            lFindHandle.setValue(0);
        }
    }
}