Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

HISTORY.rst 2.8 KB

You have to be logged in to leave a comment. Sign In
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
  1. History
  2. =======
  3. 1.2.2 (2018-04-02)
  4. ------------------
  5. * Added the face_detection CLI command
  6. * Removed dependencies on scipy to make installation easier
  7. * Cleaned up KNN example and fixed a bug with drawing fonts to label detected faces in the demo
  8. 1.2.1 (2018-02-01)
  9. ------------------
  10. * Fixed version numbering inside of module code.
  11. 1.2.0 (2018-02-01)
  12. ------------------
  13. * Fixed a bug where batch size parameter didn't work correctly when doing batch face detections on GPU.
  14. * Updated OpenCV examples to do proper BGR -> RGB conversion
  15. * Updated webcam examples to avoid common mistakes and reduce support questions
  16. * Added a KNN classification example
  17. * Added an example of automatically blurring faces in images or videos
  18. * Updated Dockerfile example to use dlib v19.9 which removes the boost dependency.
  19. 1.1.0 (2017-09-23)
  20. ------------------
  21. * Will use dlib's 5-point face pose estimator when possible for speed (instead of 68-point face pose esimator)
  22. * dlib v19.7 is now the minimum required version
  23. * face_recognition_models v0.3.0 is now the minimum required version
  24. 1.0.0 (2017-08-29)
  25. ------------------
  26. * Added support for dlib's CNN face detection model via model="cnn" parameter on face detecion call
  27. * Added support for GPU batched face detections using dlib's CNN face detector model
  28. * Added find_faces_in_picture_cnn.py to examples
  29. * Added find_faces_in_batches.py to examples
  30. * Added face_rec_from_video_file.py to examples
  31. * dlib v19.5 is now the minimum required version
  32. * face_recognition_models v0.2.0 is now the minimum required version
  33. 0.2.2 (2017-07-07)
  34. ------------------
  35. * Added --show-distance to cli
  36. * Fixed a bug where --tolerance was ignored in cli if testing a single image
  37. * Added benchmark.py to examples
  38. 0.2.1 (2017-07-03)
  39. ------------------
  40. * Added --tolerance to cli
  41. 0.2.0 (2017-06-03)
  42. ------------------
  43. * The CLI can now take advantage of multiple CPUs. Just pass in the -cpus X parameter where X is the number of CPUs to use.
  44. * Added face_distance.py example
  45. * Improved CLI tests to actually test the CLI functionality
  46. * Updated facerec_on_raspberry_pi.py to capture in rgb (not bgr) format.
  47. 0.1.14 (2017-04-22)
  48. -------------------
  49. * Fixed a ValueError crash when using the CLI on Python 2.7
  50. 0.1.13 (2017-04-20)
  51. -------------------
  52. * Raspberry Pi support.
  53. 0.1.12 (2017-04-13)
  54. -------------------
  55. * Fixed: Face landmarks wasn't returning all chin points.
  56. 0.1.11 (2017-03-30)
  57. -------------------
  58. * Fixed a minor bug in the command-line interface.
  59. 0.1.10 (2017-03-21)
  60. -------------------
  61. * Minor pref improvements with face comparisons.
  62. * Test updates.
  63. 0.1.9 (2017-03-16)
  64. ------------------
  65. * Fix minimum scipy version required.
  66. 0.1.8 (2017-03-16)
  67. ------------------
  68. * Fix missing Pillow dependency.
  69. 0.1.7 (2017-03-13)
  70. ------------------
  71. * First working release.
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...