代码拉取完成,页面将自动刷新
import os
from keras.models import load_model
import cv2
import numpy as np
from cut_face import cut_face
path1 = "H:\\face_detection\\face_detection\\liuxiang.jpg"
path2 = "H:\\face_detection\\face_detection\\wangziru.jpg"
def get_im_cv2(paths):
imgs = []
for path in paths:
# print(path)
# print(cv2.imread(path))
img = cut_face(path)
img = cv2.resize(img,(150,150))
imgs.append(img/255.0)
cv2.imshow('img',img)
cv2.waitKey(0)
return np.array(imgs).reshape(len(paths),150,150,3)
if os.path.exists("H:/face_detection/LeNet.h5"):
model = load_model("H:/face_detection/LeNet.h5")
img1 = get_im_cv2([path1])
img2 = get_im_cv2([path2])
# img1,img2 = np.array([img1]),np.array([img2])
result = model.predict([img1,img2])
print(result)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。