Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能知道dlib必须为我们提供的所有面部识别功能吗?这是在面部标志的情况下。
dlib 必须为我们提供许多地标检测器。大多数情况下,第一个是: 68 点界标检测器:这种预训练的界标检测器可识别人脸中的 68 个点((x,y) 坐标)。这些点定位眼睛、眉毛、鼻子、嘴巴、下巴和下巴周围的区域。第二个是:5点地标检测器:为了比68点检测器更快,dlib引入了5点检测器,左眼角2点,右眼2点,鼻子1点. 该检测器最常用于人脸对齐。gfg 中有一篇很好的文章:链接 还有另一个链接:很好的例子说明。