摘要:
Mtcnn进行人脸剪裁和对齐 阅读全文
摘要:
1 import os 2 fin = 'D:\\data_sex\\' 3 fout = 'D:\\data_sex\\' 4 print(os.listdir(fin)) 5 for file in os.listdir(fin): 6 file_fullname = fin + '\\' +f 阅读全文
摘要:
1 from scipy import misc 2 import tensorflow as tf 3 import detect_face 4 import cv2 5 import matplotlib.pyplot as plt 6 # %pylab inline 7 8 minsize = 20 # minimum size of face 9 thresho... 阅读全文
摘要:
https://pypi.python.org/simple/ http://www.lfd.uci.edu/~gohlke/pythonlibs/ 阅读全文
摘要:
Keras是基于Theano的一个深度学习框架,它的设计参考了Torch,用Python语言编写,是一个高度模块化的神经网络库,支持GPU和CPU。使用文档在这:http://keras.io/,中文文档在这:http://keras-cn.readthedocs.io/en/latest/ ,这个 阅读全文
摘要:
发现了一个非常棒的pyqt5的例子集 https://github.com/892768447/PyQt 各种各样的PyQt测试和例子 [Python3.4.4 or Python3.5][PyQt5] 1.常见例子 1.1 右下角弹出框 1.2 单实例应用 1.3 字体测试 1.4 程序重启 1. 阅读全文
摘要:
人脸识别常用数据集大全(12/20更新) 原文首发地址:人脸识别常用数据集大全(12/20更新) - 极市博客 1.PubFig: Public Figures Face Database(哥伦比亚大学公众人物脸部数据库) The PubFig database is a large, real-w 阅读全文
摘要:
用 opencv和numpy进行图片和字符串互转,并保存至 json 转至 https://zhuanlan.zhihu.com/p/27349847 受 用 base64 进行图片和字符串互转,并保存至 json 作者启发,试了试使用opencv来读取图片,然后用numpy转为list,再转为js 阅读全文
摘要:
机器学习中的范数规则化之(一)L0、L1与L2范数 zouxy09@qq.com http://blog.csdn.net/zouxy09 今天我们聊聊机器学习中出现的非常频繁的问题:过拟合与规则化。我们先简单的来理解下常用的L0、L1、L2和核范数规则化。最后聊下规则化项参数的选择问题。这里因为篇 阅读全文
摘要:
1 from PIL import Image 2 import face_recognition 3 4 # Load the jpg file into a numpy array 5 image = face_recognition.load_image_file(".jpg") 6 7 # Find all the faces in the image 8 face... 阅读全文