Mtcnn进行人脸剪裁和对齐

简介: 1 from scipy import misc 2 import tensorflow as tf 3 import detect_face 4 import cv2 5 import matplotlib.

 

 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 threshold = [0.6, 0.7, 0.7]  # three steps's threshold
10 factor = 0.709  # scale factor
11 margin = 44
12 frame_interval = 3
13 batch_size = 1000
14 image_size = 182
15 input_image_size = 160
16 
17 print('Creating networks and loading parameters')
18 
19 with tf.Graph().as_default():
20     gpu_options = tf.GPUOptions(per_process_gpu_memory_fraction=0.6)
21     sess = tf.Session(config=tf.ConfigProto(gpu_options=gpu_options, log_device_placement=False))
22     with sess.as_default():
23         pnet, rnet, onet = detect_face.create_mtcnn(sess, 'D:\\pycode\\real-time-deep-face-recognition-master\\20170512-110547')
24 
25 image_path = 'D:\\Users\\a\\Pictures\\test_pho\\5.jpg'
26 
27 img = misc.imread(image_path)
28 bounding_boxes, _ = detect_face.detect_face(img, minsize, pnet, rnet, onet, threshold, factor)
29 nrof_faces = bounding_boxes.shape[0]  # 人脸数目
30 print('找到人脸数目为:{}'.format(nrof_faces))
31 
32 print(bounding_boxes)
33 
34 crop_faces = []
35 for face_position in bounding_boxes:
36     face_position = face_position.astype(int)
37     print(face_position[0:4])
38     cv2.rectangle(img, (face_position[0], face_position[1]), (face_position[2], face_position[3]), (0, 255, 0), 2)
39     crop = img[face_position[1]:face_position[3],
40            face_position[0]:face_position[2], ]
41 
42     crop = cv2.resize(crop, (96, 96), interpolation=cv2.INTER_CUBIC)
43     print(crop.shape)
44     crop_faces.append(crop)
45     print(crop)
46     plt.imshow(crop)
47     plt.show()
48 
49 plt.imshow(img)
50 plt.show()

 

 

相关实践学习
部署Stable Diffusion玩转AI绘画(GPU云服务器)
本实验通过在ECS上从零开始部署Stable Diffusion来进行AI绘画创作,开启AIGC盲盒。
目录
相关文章
|
算法 数据可视化
Halcon边缘检测和线条检测(1),文章含自适应/动态二值化等算子
Halcon边缘检测和线条检测(1),文章含自适应/动态二值化等算子
1542 0
|
5月前
|
算法 Python
扭曲图像 鼻子拉伸
【6月更文挑战第28天】
26 0
|
6月前
|
算法 计算机视觉
缩放图像
【5月更文挑战第12天】缩放图像。
43 5
|
6月前
|
计算机视觉 索引
【OpenCV】—ROI区域图像叠加&图像混合
【OpenCV】—ROI区域图像叠加&图像混合
|
6月前
|
编解码 物联网 计算机视觉
【OpenCV】—图像金子塔与图片尺寸缩放
【OpenCV】—图像金子塔与图片尺寸缩放
ENVI:影像的规则裁剪和不规则裁剪
ENVI:影像的规则裁剪和不规则裁剪
361 0
|
C++ 计算机视觉
C++-图像目标区裁剪ImageCropping
C++-图像目标区裁剪ImageCropping
OpenCV-图像阴影调整
OpenCV-图像阴影调整
190 0
|
数据可视化 算法 数据挖掘
使用Gabor滤镜对图像进行纹理分割
演示如何使用纹理分割根据纹理识别区域。目标是将狗从浴室地板上分开。由于浴室地板的规则、周期性图案与狗皮毛规则、光滑的纹理之间的质地差异,这种分割在视觉上很明显。
158 0
|
算法 Java 计算机视觉
基于 Laplacian 实现简单的图像模糊检测
基于 Laplacian 实现简单的图像模糊检测
698 0
基于 Laplacian 实现简单的图像模糊检测