A(.*?)B 表示截取 A/B 中间的字符串 import re txt='@font-face{font-family:"customfont"; src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAACHMAH ...
分类:
编程语言 时间:
2020-01-16 18:45:03
阅读次数:
1213
因近期公司项目需求,需要从监控视频里识别出人脸信息。OpenCV非常庞大,其中官方提供的人脸模型分类器也可以满足基本的人脸识别,当然我们也可以训练自己的人脸模型数据,但是从精确度和专业程度上讲OpenCV所提供的人脸识别要弱于face_recognition,所以我们采取OpenCV处理视频流、fa ...
分类:
其他好文 时间:
2020-01-15 14:03:38
阅读次数:
116
1图片静态识别 import cv2 as cv import numpy as np def face_deftect_demo(): #转化为灰度图 gray =cv.cvtColor(src,cv.COLOR_BGR2GRAY) #加载特征数据 face_detector = cv.Casca ...
分类:
其他好文 时间:
2020-01-12 15:14:28
阅读次数:
90
一位来自gryz的蒟蒻 友链 62级 巨强 "lzx" 最强(skkyk) "zkx" 最单纯(AFO) "zzh" 不要face "zsf" 巨骚 "sjp" 贼卡的 "cgp" 看的最多的bolg "yxj" 你倒是去问wxy啊 "liuzt" 神仙 "tzt" 二区最高 "sts" 花手 "l ...
分类:
其他好文 时间:
2020-01-11 13:23:34
阅读次数:
86
``` #include #include int main() { FILE *image = fopen("big_face.yuv", "r"); if(NULL == image) { printf("open file failed!"); return 0; } fseek(image,... ...
分类:
编程语言 时间:
2020-01-10 23:49:05
阅读次数:
97
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>测试字体</title> <style> @font-face { font-family: 测试字体; src: url("jan.otf"); } body { font-fa ...
分类:
Web程序 时间:
2020-01-07 10:35:49
阅读次数:
176
字体 font familu:"Consolas,Helvetica,"Helvetica Neue",Arial,sans serif; font size:3em; @font face{ font family:"Abc",sans serif;//名字 src:url("....") } f ...
分类:
Web程序 时间:
2020-01-06 17:42:55
阅读次数:
88
-- 实验效果图 原图(只用于算法实验侵权联系作者删除)、beauty_face 与 beauty_face2 对比如下: 原图 原图 beauty_face beauty_face beauty_face2 beauty_face2 -- ...
分类:
编程语言 时间:
2020-01-05 20:47:44
阅读次数:
126
html的标签以及常用的属性 1.段落标签 :<p> <br> 2.文字标签:font-size <h1><font face = "verdana">666666</font></h1> <p><font size = "5" face = "arial" color = "red">897897 ...
分类:
Web程序 时间:
2020-01-05 00:00:06
阅读次数:
110
1.css文件中引入外部字体 @font-face { font-family: 'hwhp'; src: url('../font/hwhp.ttf') format('truetype'), url('../font/hwhp.eot'), url('../font/hwhp.woff') fo ...
分类:
其他好文 时间:
2019-12-31 12:36:39
阅读次数:
298