
opencv人脸识别
文章平均质量分 85
nanjingdreamfly
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
从0到1实现基于Tornado和Tensorflow的人脸、年龄、性别识别(2)
年龄识别模型的训练过程def main(argv=None): ### 一个图中包含有一个名称范围的堆栈,在使用name_scope(...)之后,将压(push)新名称进栈中, #并在下文中使用该名称 with tf.Graph().as_default(): ##这句比较重要选择模型 model_fn = select_model(FLAGS.mod原创 2017-03-17 17:34:22 · 5129 阅读 · 2 评论 -
用python、opencv快速实现人脸检测
Prerequisites:python2.7、openCV3.0代码及注释def detectface(filename): files = [] print('Using face detector %s' % FLAGS.face_detection_model) face_detect = FaceDetector('haarcascade_frontalface_d原创 2017-03-13 15:32:08 · 1144 阅读 · 0 评论