forked from ShiqiYu/libfacedetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
49 lines (39 loc) · 1.57 KB
/
ChangeLog
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
2019-03-13
---------------------
* Release the source code and the model files. Removed the binary libary.
2018-11-17
---------------------
* Replaced the AdaBoost methods with a CNN based one.
2017-02-24
---------------------
* landmark detection speed reaches to 0.8ms per face. The former version is 1.7ms per face.
2017-01-20
---------------------
* 68-point landmark detection added.
2016-11-24
---------------------
* Added benchmark.cpp which can run face detection in multiple threads using OpenMP.
2016-11-16
---------------------
* Bugs in the previous version were fixed. std::vector was removed from the API because it can cause error.
2016-11-10
---------------------
* The API was updated. std::vector was involved.
* The functions can be called in multiple threads at the same time.
2016-10-6
---------------------
* The algorithm has been speeded up greatly (2x to 3x).
* The true positive rates (FDDB) have been improved 1% to 2% at FP=100.
* Multi-core parallelization has been disabled. The detection time is still the same.
2016-9-16
---------------------
* Speedup again.
* Change function name facedetect_frontal_tmp() to facedetect_frontal_surveillance(). This function now uses a new trained classifier which can achieve a higher detection speed.
2016-6-28
---------------------
* 64-bit dll added since there are so many users request it.
* An easter egg is hidden in the 64-bit dll. Can you find it?
2016-6-8
---------------------
* Speedup 1.2x
* Added an experimental function facedetect_frontal_tmp(). The function can gain a higher detection rate in video surveillance.