02 2018 档案

摘要:#利用openCV裁脸import cv2 def draw_rects(img, rects): for x, y, w, h in rects: cv2.rectangle(img, (x, y), (x+w, y+h), (255, 255, 00), 2) cv2.circle(img, (x, y), 1, (0, 0, 255), 10) ... 阅读全文
posted @ 2018-02-16 13:59 ayew 阅读(193) 评论(0) 推荐(0)
摘要:1 string = "word 2 3 4 5 6 7" 2 string = ",".join(string.split()) 3 4 5 6 import numpy as np 7 import pandas as pd 8 a = pd.read_csv('list_landmarks_a 阅读全文
posted @ 2018-02-09 11:28 ayew 阅读(2447) 评论(0) 推荐(0)
摘要:查看文件夹内各文件数目 阅读全文
posted @ 2018-02-08 19:58 ayew 阅读(436) 评论(0) 推荐(0)
摘要:摘要 越深层次的神经网络越难以训练。我们提供了一个残差学习框架,以减轻对网络的训练,这些网络的深度比以前的要大得多。我们明确地将这些层重新规划为通过参考输入层x,学习残差函数,来代替没有参考的学习函数。 我们提供了综合的经验证据,表明残差网络更容易优化,并且可以从显著增加的深度中获得准确性。在Ima 阅读全文
posted @ 2018-02-04 11:21 ayew 阅读(2032) 评论(0) 推荐(0)