forked from yhdgs/ArcFaceSDK_Delphi_Windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArcFaceSDK.pas
2081 lines (1808 loc) · 53.8 KB
/
ArcFaceSDK.pas
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
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(*******************************************************
* 虹软人脸识别SDK封装 TBitmap 版
* 版权所有 (C) 2017 NJTZ eMail:[email protected]
*******************************************************)
unit ArcFaceSDK;
interface
uses Windows, Messages, SysUtils, System.Classes, math,
amcomdef, ammemDef,
arcsoft_fsdk_face_detection,
arcsoft_fsdk_face_recognition,
arcsoft_fsdk_face_tracking, asvloffscreendef, merrorDef,
arcsoft_fsdk_age_estimation, arcsoft_fsdk_gender_estimation,
Vcl.Graphics, Vcl.Imaging.jpeg, System.Generics.Collections;
type
TOnLogEvent = procedure(Const Msg: String) of object;
//图像数据信息结构
TImgDataInfo = record
pImgData: PByte;
Width: Integer;
Height: Integer;
LineBytes: Integer;
BitCount: Integer;
public
procedure Init;
end;
//人脸基本信息
TFaceBaseInfo = record
FaceRect: MRECT; //人脸矩形框
FaceOrient: Integer; //人脸方向
Age: Integer; //年龄
Gender: Integer; //性别,0男,1女
private
public
procedure Init;
end;
//人脸基本信息
TFaceFullInfo = record
FaceRect: MRECT; //人脸矩形框
FaceOrient: Integer; //人脸方向
Age: Integer; //年龄
Gender: Integer; //性别,0男,1女
Model: AFR_FSDK_FACEMODEL; //人脸特征
private
public
procedure Init;
end;
//人脸特征集
TFaceModels = class(TObject)
private
FModels: TList<AFR_FSDK_FACEMODEL>;
function GetCount: Integer;
function GetFaceModel(Index: Integer): AFR_FSDK_FACEMODEL;
function GetItems(Index: Integer): AFR_FSDK_FACEMODEL;
public
constructor Create;
destructor Destroy; override;
function AddModel(AModel: AFR_FSDK_FACEMODEL): Integer;
procedure Assign(ASource: TFaceModels); virtual;
procedure AddModels(ASource: TFaceModels);
procedure Clear; virtual;
procedure Delete(Index: Integer);
property Count: Integer read GetCount;
property FaceModel[Index: Integer]: AFR_FSDK_FACEMODEL read GetFaceModel;
property Items[Index: Integer]: AFR_FSDK_FACEMODEL read GetItems;
end;
//ArcFaceSDK封装主类
TArcFaceSDK = class(TObject)
private
FAppID: string;
FEstimationBufferSize: Int64;
FFaceAgeKey: String;
FFaceRecognitionKey: string;
FFaceTrackingKey: string;
FFaceDetectionKey: string;
FFaceGenderKey: String;
FMaxFace: Integer;
FScale: Integer;
FWorkKBufferSize: Int64;
FOnLog: TOnLogEvent;
FOrientPriority: TAFD_FSDK_OrientPriority;
FpFaceRecognitionBuf: PByte;
FpFaceTrackingBuf: PByte;
FpFaceDetectionBuf: PByte;
FpFaceAgeBuf: PByte;
FpFaceGenderBuf: PByte;
procedure SetMaxFace(const Value: Integer);
procedure SetScale(const Value: Integer);
protected
FFaceRecognitionEngine: MHandle;
FFaceTrackingEngine: MHandle;
FFaceDetectionEngine: MHandle;
FFaceAgeEngine: MHandle;
FFaceGenderEngine: MHandle;
procedure DoLog(const Msg: String);
public
constructor Create;
destructor Destroy; override;
function DetectAndRecognitionFacesFromBmp(ABitmap: TBitmap; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>; var AFaceModels: TFaceModels): Boolean;
function DetectFacesAndAgeGenderFromBitmap(ABitmap: TBitmap; var AFaceInfos:
TList<TFaceBaseInfo>): Boolean;
function DetectFacesFromBmp(ABitmap: TBitmap; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>): Boolean;
function TrackFacesFromBmp(ABitmap: TBitmap; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>): Boolean;
function DetectFacesFromBmpFile(AFile: string; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>): Boolean;
function DRAGfromJPGFile(AFileName: string; var AFaceInfos:
TList<TFaceBaseInfo>; var AFaceModels: TFaceModels): Boolean; overload;
function DRAGfromBmp(ABitmap: TBitmap; var AFaceInfos: TList<TFaceBaseInfo>;
var AFaceModels: TFaceModels): Boolean; overload;
function DRAGfromBmpFile(AFileName: string; var AFaceInfos:
TList<TFaceBaseInfo>; var AFaceModels: TFaceModels): Boolean; overload;
class procedure DrawFaceRectAgeGender(ACanvas: TCanvas; AFaceIdx: Integer;
AFaceInfo: TFaceBaseInfo; AColor: TColor = clBlue; AWidth: Integer = 2;
ADrawIndex: Boolean = true; ATextSize: Integer = 0);
class procedure DrawFaceRect(ACanvas: TCanvas; AFaceIdx: Integer; AFaceInfo:
AFR_FSDK_FACEINPUT; AColor: TColor = clBlue; AWidth: Integer = 2;
ADrawIndex: Boolean = true; ATextSize: Integer = 0);
function TrackFacesFromBmpFile(AFile: string; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>): Boolean;
class procedure ExtractFaceBoxs(AFaces: AFD_FSDK_FACERES; AFaceRegions:
TList<AFR_FSDK_FACEINPUT>); overload;
class procedure ExtractFaceBoxs(AFaces: AFT_FSDK_FACERES; var AFaceRegions:
TList<AFR_FSDK_FACEINPUT>); overload;
class procedure ExtractFaceAges(AFaceAgeResults: ASAE_FSDK_AGERESULT; var
AFaceAges: TArray<Integer>); overload;
class procedure ExtractFaceGenders(AFaceGenderResults
: ASGE_FSDK_GENDERRESULT;
var AFaceGenders: TArray<Integer>); overload;
function ExtractFaceFeature(AFaceInput: ASVLOFFSCREEN; AFaceRegion:
AFR_FSDK_FACEINPUT; var AFaceModel: AFR_FSDK_FACEMODEL): Boolean;
function ExtractFaceFeatures(AFaceInput: ASVLOFFSCREEN; AFaceRegions:
TList<AFR_FSDK_FACEINPUT>; var AFaceModels: TFaceModels): Boolean;
function ExtractFaceFeatureFromBmp(ABitmap: TBitmap; AFaceRegion:
AFR_FSDK_FACEINPUT; var AFaceModel: AFR_FSDK_FACEMODEL): Boolean;
function ExtractFaceFeaturesFromBmp(ABitmap: TBitmap; AFaceRegions:
TList<AFR_FSDK_FACEINPUT>; var AFaceModels: TFaceModels): Boolean;
function ExtractFaceFeatureFromBmpFile(AFile: string; AFaceRegion:
AFR_FSDK_FACEINPUT; var AFaceModel: AFR_FSDK_FACEMODEL): Boolean;
function ExtractFaceFeaturesFromBmpFile(AFile: string; AFaceRegions:
TList<AFR_FSDK_FACEINPUT>; var AFaceModels: TFaceModels): Boolean;
function InitialFaceDetectionEngine(Deinitial: Boolean): Integer;
function InitialFaceTrackingEngine(Deinitial: Boolean): Integer;
function InitialFaceRecognitionEngine(Deinitial: Boolean): Integer;
function InitialFaceAgeEngine(Deinitial: Boolean): Integer;
function InitialFaceGenderEngine(Deinitial: Boolean): Integer;
function MatchFace(AFaceModel1, AFaceModel2: AFR_FSDK_FACEMODEL): Single;
function MatchFaceWithBitmaps(ABitmap1, ABitmap2: TBitmap): Single;
function UnInitialFaceDetectionEngine: Integer;
function UnInitialFaceTrackingEngine: Integer;
function UnInitialFaceRecognitionEngine: Integer;
class function ReadBmp(ABitmap: TBitmap; var AImgDataInfo: TImgDataInfo):
Boolean;
class function ReadBmpFile(AFileName: string;
var AImgDataInfo: TImgDataInfo):
Boolean; overload;
class function ReadBmpFile(AFileName: string; ABitmap: TBitmap): Boolean;
overload;
class function ReadJpegFile(AFileName: string;
var AImgDataInfo: TImgDataInfo):
Boolean; overload;
class function ReadBmpStream(AStream: TMemoryStream; var AImgDataInfo:
TImgDataInfo): Boolean;
class function ReadJpegFile(AFileName: string; ABitmap: TBitmap): Boolean;
overload;
function TrackFacesAndAgeGenderFromBmp(ABitmap: TBitmap; var AFaceInfos:
TList<TFaceBaseInfo>): Boolean;
function UnInitialFaceAgeEngine: Integer;
function UnInitialFaceGenderEngine: Integer;
property AppID: String read FAppID write FAppID;
property FaceDetectionKey: string read FFaceDetectionKey write
FFaceDetectionKey;
property FaceRecognitionKey: string read FFaceRecognitionKey write
FFaceRecognitionKey;
property FaceTrackingKey: string read FFaceTrackingKey
write FFaceTrackingKey;
property MaxFace: Integer read FMaxFace write SetMaxFace;
property OnLog: TOnLogEvent read FOnLog write FOnLog;
property EstimationBufferSize: Int64 read FEstimationBufferSize write
FEstimationBufferSize;
property FaceAgeKey: String read FFaceAgeKey write FFaceAgeKey;
property FaceGenderKey: String read FFaceGenderKey write FFaceGenderKey;
property OrientPriority: TAFD_FSDK_OrientPriority read FOrientPriority write
FOrientPriority;
property Scale: Integer read FScale write SetScale;
property WorkKBufferSize: Int64 read FWorkKBufferSize
write FWorkKBufferSize;
end;
//自定义TJpegImage
TuJpegImage = class(TJPEGImage)
public
function BitmapData: TBitmap;
end;
TEdzFaceModels = class(TFaceModels)
private
FRyID: String;
FParams: String;
public
constructor Create;
procedure Assign(ASource: TFaceModels); override;
procedure Clear; override;
property RyID: String read FRyID write FRyID;
property Params: String read FParams write FParams;
end;
implementation
constructor TArcFaceSDK.Create;
begin
inherited;
FAppID := 您的Key;
//人脸检测(FD) Key
FFaceDetectionKey := '您的Key';
//人脸识别(FR) Key
FFaceRecognitionKey := '您的Key';
//人脸追踪(FT) Key
FFaceTrackingKey := '您的Key';
//年龄识别(Age)Key
FFaceAgeKey := '您的Key';
//性别评估(Gender)Key
FFaceGenderKey := '您的Key';
FWorkKBufferSize := 40 * 1024 * 1024;
FEstimationBufferSize := 30 * 1024 * 1024;
FScale := 16;
FMaxFace := 10;
FOrientPriority := TAFD_FSDK_OrientPriority.AFD_FSDK_OPF_0_HIGHER_EXT;
FFaceDetectionEngine := nil;
FFaceRecognitionEngine := nil;
FFaceTrackingEngine := nil;
FFaceAgeEngine := nil;
FFaceGenderEngine := nil;
FpFaceDetectionBuf := nil;
FpFaceRecognitionBuf := nil;
FpFaceTrackingBuf := nil;
FpFaceAgeBuf := nil;
FpFaceGenderBuf := nil;
end;
destructor TArcFaceSDK.Destroy;
begin
UnInitialFaceDetectionEngine;
UnInitialFaceTrackingEngine;
UnInitialFaceRecognitionEngine;
UnInitialFaceAgeEngine;
UnInitialFaceGenderEngine;
inherited;
end;
//检测人脸位置并提取特征(支持多人脸)
function TArcFaceSDK.DetectAndRecognitionFacesFromBmp(
ABitmap: TBitmap; //源位图
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>; //输出人脸位置信息列表
var AFaceModels: TFaceModels//输出人脸特征信息
): Boolean;
var
lImgDataInfo: TImgDataInfo;
offInput: ASVLOFFSCREEN;
pFaceRes: LPAFD_FSDK_FACERES;
nRet: MRESULT;
{$IFDEF DEBUG}
T: Cardinal;
{$ENDIF}
begin
Result := False;
if FFaceDetectionEngine = nil then
Exit;
if AFaceRegions = nil then
AFaceRegions := TList<AFR_FSDK_FACEINPUT>.Create;
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
if not ReadBmp(ABitmap, lImgDataInfo) then
Exit;
{$IFDEF DEBUG}
T := GetTickCount - T;
DoLog('载入数据耗时:' + IntToStr(T));
{$ENDIF}
offInput.u32PixelArrayFormat := ASVL_PAF_RGB24_B8G8R8;
FillChar(offInput.pi32Pitch, SizeOf(offInput.pi32Pitch), 0);
FillChar(offInput.ppu8Plane, SizeOf(offInput.ppu8Plane), 0);
offInput.i32Width := lImgDataInfo.Width;
offInput.i32Height := lImgDataInfo.Height;
offInput.ppu8Plane[0] := IntPtr(lImgDataInfo.pImgData);
offInput.pi32Pitch[0] := lImgDataInfo.LineBytes;
//人脸检测
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
nRet := AFD_FSDK_StillImageFaceDetection(FFaceDetectionEngine, @offInput,
pFaceRes);
{$IFDEF DEBUG}
T := GetTickCount - T;
DoLog('检测人脸耗时:' + IntToStr(T));
{$ENDIF}
if nRet = MOK then
begin
ExtractFaceBoxs(pFaceRes^, AFaceRegions);
if AFaceModels = nil then
AFaceModels := TFaceModels.Create;
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
Result := ExtractFaceFeatures(offInput, AFaceRegions, AFaceModels);
{$IFDEF DEBUG}
T := GetTickCount - T;
DoLog('提取特征耗时:' + IntToStr(T));
{$ENDIF}
end;
if lImgDataInfo.pImgData <> nil then
FreeMem(lImgDataInfo.pImgData);
end;
//从Bitmap中获取人脸位置、性别和年龄信息列表
function TArcFaceSDK.DetectFacesAndAgeGenderFromBitmap(
ABitmap: TBitmap; //源位图
var AFaceInfos: TList<TFaceBaseInfo>//输出人脸信息
): Boolean;
var
lImgDataInfo: TImgDataInfo;
offInput: ASVLOFFSCREEN;
pFaceRes: LPAFD_FSDK_FACERES;
lFaceRes_Age: ASAE_FSDK_AGEFACEINPUT;
lFaceRes_Gender: ASGE_FSDK_GENDERFACEINPUT;
lFaceRegions: TList<AFR_FSDK_FACEINPUT>;
lAgeRes: ASAE_FSDK_AGERESULT;
lGenderRes: ASGE_FSDK_GENDERRESULT;
lAges: TArray<Integer>;
lGenders: TArray<Integer>;
lFaceInfo: TFaceBaseInfo;
i, iFaces: Integer;
ArrFaceOrient: array of AFD_FSDK_OrientCode;
ArrFaceRect: array of MRECT;
begin
Result := False;
if AFaceInfos = nil then
AFaceInfos := TList<TFaceBaseInfo>.Create;
if FFaceDetectionEngine = nil then
Exit;
//从源位图中读取数据
if not ReadBmp(ABitmap, lImgDataInfo)
then
Exit;
//初始化数据输入信息
offInput.u32PixelArrayFormat := ASVL_PAF_RGB24_B8G8R8;
FillChar(offInput.pi32Pitch, SizeOf(offInput.pi32Pitch), 0);
FillChar(offInput.ppu8Plane, SizeOf(offInput.ppu8Plane), 0);
offInput.i32Width := lImgDataInfo.Width;
offInput.i32Height := lImgDataInfo.Height;
offInput.ppu8Plane[0] := IntPtr(lImgDataInfo.pImgData);
offInput.pi32Pitch[0] := lImgDataInfo.LineBytes;
lFaceRegions := TList<AFR_FSDK_FACEINPUT>.Create;
try
//人脸检测
if AFD_FSDK_StillImageFaceDetection(FFaceDetectionEngine, @offInput,
pFaceRes) = MOK then
begin
//分解人脸位置信息
ExtractFaceBoxs(pFaceRes^, lFaceRegions);
if lFaceRegions.Count > 0 then
begin
iFaces := lFaceRegions.Count;
SetLength(ArrFaceOrient, iFaces);
SetLength(ArrFaceRect, iFaces);
for i := 0 to iFaces - 1 do
begin
ArrFaceOrient[i] := lFaceRegions.Items[i].lOrient;
ArrFaceRect[i] := lFaceRegions.Items[i].rcFace;
end;
//检测年龄
if (FFaceAgeEngine <> nil) then
begin
with lFaceRes_Age do
begin
pFaceRectArray := @ArrFaceRect[0];
pFaceOrientArray := @ArrFaceOrient[0];
lFaceNumber := iFaces;
end;
if ASAE_FSDK_AgeEstimation_StaticImage(
FFaceAgeEngine, //[in]年龄评估引擎实例句柄
@offInput, //[in]图像数据
@lFaceRes_Age, //[in]人脸框信息
lAgeRes//[out]年龄评估结果
) = MOK then
//分解人脸年龄
ExtractFaceAges(lAgeRes, lAges);
end;
//性别评估
if (FFaceGenderEngine <> nil) then
begin
with lFaceRes_Gender do
begin
pFaceRectArray := @ArrFaceRect[0];
pFaceOrientArray := @ArrFaceOrient[0];
lFaceNumber := iFaces;
end;
if ASGE_FSDK_GenderEstimation_StaticImage(
FFaceGenderEngine, //[in]性别评估引擎实例句柄
@offInput, //[in]图像数据
@lFaceRes_Gender, //[in]人脸框信息
lGenderRes//[out]性别评估结果
) = MOK then
//分解人脸性别
ExtractFaceGenders(lGenderRes, lGenders);
end;
for i := 0 to iFaces - 1 do
begin
lFaceInfo.Init;
lFaceInfo.FaceRect := ArrFaceRect[i];
lFaceInfo.FaceOrient := ArrFaceOrient[i];
if i < Length(lAges) then
lFaceInfo.Age := lAges[i];
if i < Length(lGenders) then
lFaceInfo.Gender := lGenders[i];
AFaceInfos.Add(lFaceInfo);
end;
end;
end;
finally
FreeAndNil(lFaceRegions);
end;
if lImgDataInfo.pImgData <> nil then
FreeMem(lImgDataInfo.pImgData)
end;
//从位图中获取人脸位置信息列表
function TArcFaceSDK.DetectFacesFromBmp(
ABitmap: TBitmap; //源位图
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>//输出人脸位置列表
): Boolean;
var
lImgDataInfo: TImgDataInfo;
offInput: ASVLOFFSCREEN;
pFaceRes: LPAFD_FSDK_FACERES;
begin
Result := False;
if FFaceDetectionEngine = nil then
Exit;
//读取位图到内存中
if not ReadBmp(ABitmap, lImgDataInfo) then
Exit;
offInput.u32PixelArrayFormat := ASVL_PAF_RGB24_B8G8R8;
FillChar(offInput.pi32Pitch, SizeOf(offInput.pi32Pitch), 0);
FillChar(offInput.ppu8Plane, SizeOf(offInput.ppu8Plane), 0);
offInput.i32Width := lImgDataInfo.Width;
offInput.i32Height := lImgDataInfo.Height;
offInput.ppu8Plane[0] := IntPtr(lImgDataInfo.pImgData);
offInput.pi32Pitch[0] := lImgDataInfo.LineBytes;
//调用API检测人脸
if AFD_FSDK_StillImageFaceDetection(FFaceDetectionEngine, @offInput, pFaceRes)
= MOK then
begin
//提取人脸位置框信息到列表
ExtractFaceBoxs(pFaceRes^, AFaceRegions);
end;
if lImgDataInfo.pImgData <> nil then
FreeMem(lImgDataInfo.pImgData);
end;
//获取人脸位置信息列表,跟踪模式
function TArcFaceSDK.TrackFacesFromBmp(
ABitmap: TBitmap; //源位图
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>//输出人脸位置信息列表
): Boolean;
var
lImgDataInfo: TImgDataInfo;
offInput: ASVLOFFSCREEN;
pFaceRes: LPAFT_FSDK_FACERES;
begin
Result := False;
if FFaceTrackingEngine = nil then
Exit;
if not ReadBmp(ABitmap, lImgDataInfo) then
Exit;
offInput.u32PixelArrayFormat := ASVL_PAF_RGB24_B8G8R8;
FillChar(offInput.pi32Pitch, SizeOf(offInput.pi32Pitch), 0);
FillChar(offInput.ppu8Plane, SizeOf(offInput.ppu8Plane), 0);
offInput.i32Width := lImgDataInfo.Width;
offInput.i32Height := lImgDataInfo.Height;
offInput.ppu8Plane[0] := IntPtr(lImgDataInfo.pImgData);
offInput.pi32Pitch[0] := lImgDataInfo.LineBytes;
//offInput.pi32Pitch[1] := offInput.i32Width div 2;
//offInput.pi32Pitch[2] := offInput.i32Width div 2;
//人脸检测
if AFT_FSDK_FaceFeatureDetect(FFaceTrackingEngine, @offInput, pFaceRes)
= MOK then
begin
ExtractFaceBoxs(pFaceRes^, AFaceRegions);
end;
if lImgDataInfo.pImgData <> nil then
FreeMem(lImgDataInfo.pImgData);
end;
//从文件Bmp文件中获取人脸位置信息列表,请确保文件为正确的BMP格式
function TArcFaceSDK.DetectFacesFromBmpFile(
AFile: string; //源文件
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>//输出人脸位置信息列表
): Boolean;
var
BMP: TBitmap;
begin
Result := False;
if FFaceDetectionEngine = nil then
Exit;
if not FileExists(AFile) then
Exit;
BMP := TBitmap.Create;
try
BMP.LoadFromFile(AFile);
Result := DetectFacesFromBmp(BMP, AFaceRegions);
finally
BMP.Free;
end;
end;
//从文件中获取人脸位置信息列表(追踪模式)
function TArcFaceSDK.TrackFacesFromBmpFile(
AFile: string; //源文件
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>//输出人脸位置信息
): Boolean;
var
BMP: TBitmap;
begin
Result := False;
if FFaceTrackingEngine = nil then
Exit;
if not FileExists(AFile) then
Exit;
BMP := TBitmap.Create;
try
//载入文件
BMP.LoadFromFile(AFile);
//检测人脸
Result := TrackFacesFromBmp(BMP, AFaceRegions);
finally
BMP.Free;
end;
end;
procedure TArcFaceSDK.DoLog(const Msg: String);
begin
if Assigned(FOnLog) then
FOnLog(Msg);
end;
//从JPG文件中获取人脸位置、年龄、性别和特征信息列表
function TArcFaceSDK.DRAGfromJPGFile(
AFileName: string; //JPEG文件名
var AFaceInfos: TList<TFaceBaseInfo>; //输出人脸基本信息列表
var AFaceModels: TFaceModels//人脸特征集
): Boolean;
var
lBitmap: TBitmap;
begin
Result := False;
if not FileExists(AFileName) then
Exit;
lBitmap := TBitmap.Create;
try
if ReadJpegFile(AFileName, lBitmap) then
Result := DRAGfromBmp(lBitmap, AFaceInfos, AFaceModels);
finally
lBitmap.Free;
end;
end;
//Bitmap中获取人脸位置、年龄、性别和特征信息列表
function TArcFaceSDK.DRAGfromBmp(
ABitmap: TBitmap; //源位图
var AFaceInfos: TList<TFaceBaseInfo>; //输出人脸基本信息列表
var AFaceModels: TFaceModels//人脸特征集
): Boolean;
var
offInput: ASVLOFFSCREEN;
pFaceRes: LPAFD_FSDK_FACERES;
lFaceRes_Age: ASAE_FSDK_AGEFACEINPUT;
lFaceRes_Gender: ASGE_FSDK_GENDERFACEINPUT;
nRet: MRESULT;
lFaceRegions: TList<AFR_FSDK_FACEINPUT>;
lAgeRes: ASAE_FSDK_AGERESULT;
lGenderRes: ASGE_FSDK_GENDERRESULT;
lAges: TArray<Integer>;
lGenders: TArray<Integer>;
lFaceInfo: TFaceBaseInfo;
i, iFaces: Integer;
lImgDataInfo: TImgDataInfo;
ArrFaceOrient: array of AFD_FSDK_OrientCode;
ArrFaceRect: array of MRECT;
{$IFDEF DEBUG}
T: Cardinal;
{$ENDIF}
begin
Result := False;
if AFaceInfos = nil then
AFaceInfos := TList<TFaceBaseInfo>.Create;
if AFaceModels = nil then
AFaceModels := TFaceModels.Create;
if FFaceDetectionEngine = nil then
Exit;
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
if not ReadBmp(ABitmap, lImgDataInfo) then
Exit;
{$IFDEF DEBUG}
T := GetTickCount - T;
DoLog('载入数据耗时:' + IntToStr(T));
{$ENDIF}
offInput.u32PixelArrayFormat := ASVL_PAF_RGB24_B8G8R8;
FillChar(offInput.pi32Pitch, SizeOf(offInput.pi32Pitch), 0);
FillChar(offInput.ppu8Plane, SizeOf(offInput.ppu8Plane), 0);
offInput.i32Width := lImgDataInfo.Width;
offInput.i32Height := lImgDataInfo.Height;
offInput.ppu8Plane[0] := IntPtr(lImgDataInfo.pImgData);
offInput.pi32Pitch[0] := lImgDataInfo.LineBytes;
//人脸检测
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
nRet := AFD_FSDK_StillImageFaceDetection(FFaceDetectionEngine, @offInput,
pFaceRes);
{$IFDEF DEBUG}
DoLog('检测人脸耗时:' + IntToStr(GetTickCount - T));
{$ENDIF}
if nRet = MOK then
begin
Result := true;
lFaceRegions := TList<AFR_FSDK_FACEINPUT>.Create;
try
ExtractFaceBoxs(pFaceRes^, lFaceRegions);
if lFaceRegions.Count > 0 then
begin
iFaces := lFaceRegions.Count;
SetLength(ArrFaceOrient, iFaces);
SetLength(ArrFaceRect, iFaces);
for i := 0 to iFaces - 1 do
begin
ArrFaceOrient[i] := lFaceRegions.Items[i].lOrient;
ArrFaceRect[i] := lFaceRegions.Items[i].rcFace;
end;
//===================================================
//检测年龄
//===================================================
if (FFaceAgeEngine <> nil) then
begin
with lFaceRes_Age do
begin
pFaceRectArray := @ArrFaceRect[0];
pFaceOrientArray := @ArrFaceOrient[0];
lFaceNumber := iFaces;
end;
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
if ASAE_FSDK_AgeEstimation_StaticImage(
FFaceAgeEngine, //[in]年龄评估引擎实例句柄
@offInput, //[in]图像数据信息
@lFaceRes_Age, //[in]人脸框信息
lAgeRes//[out]性别评估结果
) = MOK then
//分解人脸年龄
ExtractFaceAges(lAgeRes, lAges)
else
Result := False;
{$IFDEF DEBUG}
DoLog('检测年龄耗时:' + IntToStr(GetTickCount - T));
{$ENDIF}
end
else
Result := False;
//===================================================
//性别评估
//===================================================
if (FFaceGenderEngine <> nil) then
begin
with lFaceRes_Gender do
begin
pFaceRectArray := @ArrFaceRect[0];
pFaceOrientArray := @ArrFaceOrient[0];
lFaceNumber := iFaces;
end;
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
if ASGE_FSDK_GenderEstimation_StaticImage(
FFaceGenderEngine, //[in]性别评估引擎实例句柄
@offInput, //[in]图像数据
@lFaceRes_Gender, //[in]人脸框信息
lGenderRes//[out]性别评估结果
) = MOK then
//分解人脸性别
ExtractFaceGenders(lGenderRes, lGenders)
else
Result := False;
{$IFDEF DEBUG}
DoLog('检测性别耗时:' + IntToStr(GetTickCount - T));
{$ENDIF}
end
else
Result := False;
for i := 0 to iFaces - 1 do
begin
lFaceInfo.Init;
lFaceInfo.FaceRect := ArrFaceRect[i];
lFaceInfo.FaceOrient := ArrFaceOrient[i];
if i < Length(lAges) then
lFaceInfo.Age := lAges[i];
if i < Length(lGenders) then
lFaceInfo.Gender := lGenders[i];
AFaceInfos.Add(lFaceInfo);
end;
//===================================================
//提取特征
//===================================================
{$IFDEF DEBUG}
T := GetTickCount;
{$ENDIF}
if not ExtractFaceFeatures(offInput, lFaceRegions, AFaceModels) then
Result := False;
{$IFDEF DEBUG}
DoLog('提取特征耗时:' + IntToStr(GetTickCount - T));
{$ENDIF}
end;
finally
lFaceRegions.Free;
end;
end;
if lImgDataInfo.pImgData <> nil then
FreeMem(lImgDataInfo.pImgData);
end;
//从BMP文件中获取人脸位置、年龄、性别和特征信息列表
function TArcFaceSDK.DRAGfromBmpFile(
AFileName: string; //文件名
var AFaceInfos: TList<TFaceBaseInfo>; //输出人脸基本信息列表
var AFaceModels: TFaceModels//人脸特征集
): Boolean;
var
lBitmap: TBitmap;
begin
Result := False;
if not FileExists(AFileName) then
Exit;
lBitmap := TBitmap.Create;
try
if ReadBmpFile(AFileName, lBitmap) then
Result := DRAGfromBmp(lBitmap, AFaceInfos, AFaceModels);
finally
lBitmap.Free;
end;
end;
//在Canvas上画人脸框、年龄、性别
class procedure TArcFaceSDK.DrawFaceRectAgeGender(
ACanvas: TCanvas; //目标画板
AFaceIdx: Integer; //人脸索引
AFaceInfo: TFaceBaseInfo; //人脸基本信息
AColor: TColor = clBlue; //画笔颜色
AWidth: Integer = 2; //框线像素
ADrawIndex: Boolean = true; //是否画索引
ATextSize: Integer = 0//文字大小
);
var
sText: string;
iTextHeight, iTextWidth: Integer;
begin
ATextSize := 0;
ACanvas.Pen.Color := AColor;
ACanvas.Pen.Width := AWidth;
ACanvas.Brush.Style := bsClear;
if ATextSize = 0 then
ACanvas.Font.Size :=
Round((AFaceInfo.FaceRect.bottom - AFaceInfo.FaceRect.top) / (10 * 1.5))
else
ACanvas.Font.Size := ATextSize;
ACanvas.Font.Color := AColor;
ACanvas.RoundRect(AFaceInfo.FaceRect.left,
AFaceInfo.FaceRect.top,
AFaceInfo.FaceRect.right, AFaceInfo.FaceRect.bottom, 0, 0);
sText := '';
case AFaceInfo.Gender of
0:
sText := '性别:男';
1:
sText := '性别:女';
else
sText := '性别:未知';
end;
sText := sText + ' 年龄:' + IntToStr(AFaceInfo.Age);
if ADrawIndex then
begin
if AFaceIdx <> -1 then
sText := IntToStr(AFaceIdx) + ' ' + sText;
end;
if sText <> '' then
begin
iTextWidth := ACanvas.TextWidth(sText);
iTextHeight := ACanvas.TextHeight(sText);
ACanvas.Brush.Style := bsSolid;
ACanvas.Brush.Color := AColor;
if ACanvas.Brush.Color = clWhite then
ACanvas.Font.Color := clBlack
else
ACanvas.Font.Color := clWhite;
ACanvas.Font.Quality := fqClearType;
ACanvas.RoundRect(AFaceInfo.FaceRect.left,
AFaceInfo.FaceRect.top - iTextHeight - 6,
Max(AFaceInfo.FaceRect.right,
AFaceInfo.FaceRect.left + iTextWidth + 10),
AFaceInfo.FaceRect.top, 0, 0);
ACanvas.TextOut(AFaceInfo.FaceRect.left + 5,
AFaceInfo.FaceRect.top - 3 - iTextHeight, sText);
end;
ACanvas.Refresh;
end;
//在Canvas上画人脸框
class procedure TArcFaceSDK.DrawFaceRect(
ACanvas: TCanvas; //目标画板
AFaceIdx: Integer; //人脸索引
AFaceInfo: AFR_FSDK_FACEINPUT; //人脸框信息
AColor: TColor = clBlue; //画笔颜色
AWidth: Integer = 2; //框线像素
ADrawIndex: Boolean = true; //是否画索引
ATextSize: Integer = 0//文字大小
);
var
sText: string;
iTextHeight, iTextWidth: Integer;
begin
ATextSize := 0;
ACanvas.Pen.Color := AColor;
ACanvas.Pen.Width := AWidth;
ACanvas.Brush.Style := bsClear;
if ATextSize = 0 then
ACanvas.Font.Size :=
Round((AFaceInfo.rcFace.bottom - AFaceInfo.rcFace.top) / (10 * 1.5))
else
ACanvas.Font.Size := ATextSize;
ACanvas.Font.Color := AColor;
ACanvas.RoundRect(AFaceInfo.rcFace.left,
AFaceInfo.rcFace.top,
AFaceInfo.rcFace.right, AFaceInfo.rcFace.bottom, 0, 0);
sText := '';
if ADrawIndex then
begin
if AFaceIdx <> -1 then
sText := IntToStr(AFaceIdx);
end;
if sText <> '' then
begin
iTextWidth := ACanvas.TextWidth(sText);
iTextHeight := ACanvas.TextHeight(sText);
ACanvas.Brush.Style := bsSolid;
ACanvas.Brush.Color := AColor;
if ACanvas.Brush.Color = clWhite then
ACanvas.Font.Color := clBlack
else
ACanvas.Font.Color := clWhite;
ACanvas.Font.Quality := fqClearType;
ACanvas.RoundRect(AFaceInfo.rcFace.left,
AFaceInfo.rcFace.top - iTextHeight - 6,
Max(AFaceInfo.rcFace.right,
AFaceInfo.rcFace.left + iTextWidth + 10),
AFaceInfo.rcFace.top, 0, 0);
ACanvas.TextOut(Round((AFaceInfo.rcFace.left - iTextWidth) /
2), AFaceInfo.rcFace.top - 3 - iTextHeight, sText);
end;
ACanvas.Refresh;
end;
//提取API人脸检测结果列表到Delphi泛型列表(跟踪模式)
class procedure TArcFaceSDK.ExtractFaceBoxs(
AFaces: AFT_FSDK_FACERES; //人脸位置框原始数据
var AFaceRegions: TList<AFR_FSDK_FACEINPUT>//分解输出列表
);
var
i, j: Integer;
lFace: AFR_FSDK_FACEINPUT;
begin
//if AFaceRegions = nil then
//AFaceRegions := TList<AFR_FSDK_FACEINPUT>.Create;
j := SizeOf(Integer);
for i := 0 to AFaces.nFace - 1 do
begin
lFace.rcFace := pmrect(AFaces.rcFace + i * SizeOf(MRECT))^;
//if AFaces.lfaceOrient < 100 then
lFace.lOrient := AFaces.lfaceOrient;
//else
//lFace.lOrient := Pint(AFaces.lfaceOrient + i * j)^;
AFaceRegions.Add(lFace);
end;
end;
//提取API人脸检测结果列表到Delphi泛型列表
class procedure TArcFaceSDK.ExtractFaceBoxs(
AFaces: AFD_FSDK_FACERES; //人脸位置框原始数据
AFaceRegions: TList<AFR_FSDK_FACEINPUT>//分解输出列表
);
var
i, j: Integer;
lFace: AFR_FSDK_FACEINPUT;
begin