代码拉取完成,页面将自动刷新
同步操作将从 cungudafa/hand-keras-yolo3-recognize 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
import os
from keras.layers import Input
from yolo import YOLO, detect_video
from pose_hand import getImageInfo,getVideoInfo
from PIL import Image
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['SimHei'] # 用来正常显示中文标签
plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号
def main(yolo):
#img_file = 'docs/wangyu_hand_img/job_32.jpg'#'docs/img/write_51.jpg'
#print("[INFO]img_file",img_file)
path= 'D:/myworkspace/dataset/My_test/small_img/67_img/'
outfile = 'D:/myworkspace/dataset/My_test/hand_img/67_img/'#处理完的帧
if not os.path.exists(outfile):
os.makedirs(outfile)
files = [os.path.join(path, file1) for file1 in os.listdir(path)]
# pose
modelpath = "model/"
for img_file in files:
name = os.path.split(img_file)[1]
if name[-4:] == ".png":
r_image,info = getImageInfo(img_file,modelpath)
print(info)
r_image.save(outfile + name[:-4]+".jpg")# 保存
print("成功保存",outfile,name[:-4]+".jpg")
#r_image,info = getImageInfo(img_file,modelpath)
#print("[INFO]Pose[25] and Hands[20]: ", info)
video_name = "docs/write"
#getVideoInfo(modelpath,video_name+".mp4", video_name+"_detect.mp4")
if __name__ == '__main__':
_yolo = YOLO()
main(_yolo)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。