config toolkit是当当网开发的开源项目,使用起来非常的方便。对于很多配置都可以写在配置中心中,进行配置数据的获取,这样我们可以不用把很多信息写在了代码里面,例如数据库账号密码等信息。 config toolkit的github 地址为:https://github.com/dangdan ...
分类:
其他好文 时间:
2019-03-17 22:58:25
阅读次数:
199
1 import cv2 as cv 2 import numpy as np 3 import dlib 4 import math 5 6 detector = dlib.get_frontal_face_detector() 7 predictor = dlib.shape_predictor... ...
分类:
其他好文 时间:
2019-03-14 13:37:22
阅读次数:
245
要在阿里云服务器上部署face_recognition。用的是centos7. 千辛万苦啊。感谢网上的各种解答。回报社会,我也把各种坑写下了。整理的有点乱。不过仔细看,有干货的。 感谢这个博主Fate小王子,他的博客 受益匪浅! https://blog.51cto.com/10931223/230 ...
分类:
其他好文 时间:
2019-03-11 01:01:19
阅读次数:
603
apt-get install cmake apt-get install libboost-python-dev apt-get install python3.6-dev pip3 install face_recgnition pip3 install opencv-python apt in ...
分类:
系统相关 时间:
2019-02-28 18:34:47
阅读次数:
250
SpringBootApplication 包含@Configuration、@EnableAutoConfiguration、@ComponentScan通常用在主类上
分类:
编程语言 时间:
2019-02-27 23:32:30
阅读次数:
275
# Sublime Text 编辑器的设定 > gloal setting ```{ "caret_style": "smooth", "default_line_ending": "unix", "draw_white_space": "all", "font_face": "Consolas",... ...
分类:
其他好文 时间:
2019-02-24 19:04:04
阅读次数:
224
1 import cv2 as cv 2 import numpy as np 3 4 # 图片旋转 5 img = cv.imread('../images/face.jpg', flags=1) # flags=1读取为彩色,flags=0读取为灰度 6 h, w = img.shape[:2]... ...
分类:
其他好文 时间:
2019-02-21 18:46:54
阅读次数:
162
We have a machine for painting cubes. It is supplied with three different colors: blue, red and green. Each face of the cube gets one of these colors. ...
分类:
其他好文 时间:
2019-02-20 10:02:54
阅读次数:
261
网站信息案例 字体标签 font color: 颜色 size: 大小 1~7 face: 改变字体 p 段落标签 h标题标签 : 1~6 br 换行 hr 水平线 b 加粗 i 斜体 strong : 加粗 包含语义 em : 斜体 包含语义 网站图片案例 img标签 src : 指定图片的路径 ...
分类:
Web程序 时间:
2019-02-17 10:57:02
阅读次数:
215
在 CSS3 之前,web 设计师必须使用已在用户计算机上安装好的字体。 通过 CSS3,web 设计师可以使用他们喜欢的任意字体。 当您找到或购买到希望使用的字体时,可将该字体文件存放到 web 服务器上,它会在需要时被自动下载到用户的计算机上。 您“自己的”的字体是在 CSS3 @font-fa ...
分类:
Web程序 时间:
2019-02-14 13:45:16
阅读次数:
187