资源简介
MATLAB实现的人脸检测代码,CVPR2015级联CNN,按照流程实现,效果绝佳
代码片段和文件信息
import cv2
import os
data_base_dir = “/home/anson/face_pictures/AFLW/aflw_images“ # file containing pictures
read_file_name_faces = “/home/anson/face_pictures/AFLW/AFLW_Faces.txt“ # file saving face ID and corresponding files
read_file_name_rect = “/home/anson/face_pictures/AFLW/AFLW_Rect.txt“ # file saving rect info corresponding to face ID
faceID_fileName_dict = {} # dictionary of str to str
# =========== read face file ===============
with open(read_file_name_faces “r“) as ins:
array_faces = []
for line in ins:
line = line.replace(‘‘ ‘ ‘) # get rid of commas and quotes
array_faces.append(line.replace(‘“‘ ‘‘)) # list of strings
array_faces = array_faces[1:] # ignore header
number_of_lines = len(array_faces)
# =========== construct dict
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-12-22 15:30 CNN_face_detection-master\
文件 1168 2015-12-22 15:30 CNN_face_detection-master\README.md
目录 0 2015-12-22 15:30 CNN_face_detection-master\face_calibration\
目录 0 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\
文件 16 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\.name
文件 284 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\face_calibration.iml
文件 688 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\misc.xm
文件 284 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\modules.xm
文件 164 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\vcs.xm
文件 24261 2015-12-22 15:30 CNN_face_detection-master\face_calibration\.idea\workspace.xm
文件 3626 2015-12-22 15:30 CNN_face_detection-master\face_calibration\calibration_AFLW.py
文件 2131 2015-12-22 15:30 CNN_face_detection-master\face_calibration\calibration_CACD.py
文件 953 2015-12-22 15:30 CNN_face_detection-master\face_calibration\shuffle_write_calibration.py
文件 2505 2015-12-22 15:30 CNN_face_detection-master\face_calibration\write_train_val_calibration.py
目录 0 2015-12-22 15:30 CNN_face_detection-master\face_detection\
目录 0 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\
文件 8 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\.name
文件 688 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\misc.xm
文件 268 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\modules.xm
文件 346 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\unti
文件 164 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\vcs.xm
文件 51896 2015-12-22 15:30 CNN_face_detection-master\face_detection\.idea\workspace.xm
文件 431184 2015-12-22 15:30 CNN_face_detection-master\face_detection\DiscROC.txt
目录 0 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\
文件 6747 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-01.txt
文件 6646 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-02.txt
文件 6392 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-03.txt
文件 7018 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-04.txt
文件 6937 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-05.txt
文件 7024 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-06.txt
文件 6489 2015-12-22 15:30 CNN_face_detection-master\face_detection\FDDB-fold\FDDB-fold-07.txt
............此处省略213个文件信息
相关资源
-
链路预测matlab程序(li
nkPredictionMa - matlab 代码实现的傅里叶描述子
-
UPFC_FACTS 基于Matlab/Simuli
nk建立的仿真 - 粒子群优化算(PSO-SVM)
- matlab实现滚动时域估计算法(MHE算法
- 含UI界面的三种降噪
- 水面船舶三自由度的MATLAB运动仿真(
- ARMA建模的风速预测
- 牛津大学开发的matconvnet工具包
-
matlab/simuli
nk电力系统建模与仿真 - polymax 频域内的模态参数识别方法之多
- 车辆路径优化问题(VRP)
- 前景检测程序(Foreground-detection-proc
- matlab生成高斯随机粗糙表面 (Fracta
- MATLAB电力系统仿真
- rough-set-codes 天津大学胡清华老师在粗
- 美国UDDS工况matlab模型
- 高压直流MMC
- HEV-model-for-Cruise 混合动力汽车仿真模
- 5G_FBMC_BER
- Q学习算法来实现的机器人路径规划
- matlab鲸鱼算法(WOA)工具箱
-
HEV_Model_Simuli
nk 提供了混合动力电动 - matlanb仿真实现下垂控制
- matlab实现的gwo算法的源码含注释
- matlab实现的极化码的信道编码与构造
- PositiveSecrecyProbability 正安全容量概率
- GSA(引力搜索算法)MATLAB源码含中文
- UAV-matlab 无人机PID控制及智能PID控制器
- dg-placement
评论
共有 条评论