上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 30 下一页
摘要: import re # 判断是否包含英文 str = "text文本" contain_en = bool(re.search('[a-z]', str)) if contain_en: print("包含英文字符") else: print("不包含英文字符") 阅读全文
posted @ 2019-09-13 15:26 Jumpkin1122 阅读(6266) 评论(0) 推荐(0) 编辑
摘要: import random # 读取文件中的每行的单词保存到列表 lines = open("data/voc01.txt", encoding="utf-8").read().split("\n") # 打乱每行的顺序 random.shuffle(lines) 阅读全文
posted @ 2019-09-13 15:22 Jumpkin1122 阅读(730) 评论(0) 推荐(0) 编辑
摘要: """ 保存视频 保存视频接口:<VideoWriter object> = cv.VideoWriter( filename, fourcc, fps, frameSize[, isColor] ) 参数说明: filename:要保存的视频名称和路径(data/outVideo.mp4) fourcc:视频编码器 fps:帧率 framesize:帧数大小 isColor:True彩色,Fal 阅读全文
posted @ 2019-09-12 02:18 Jumpkin1122 阅读(3531) 评论(0) 推荐(0) 编辑
摘要: import cv2 cap = cv2.VideoCapture('data/zuqiu.mp4') while cap.isOpened(): ret, frame = cap.read() # 显示文字:图片,文字,位置,字体类型,字体大小,字体颜色,字体粗细 cv2.putText(frame, "foot ball", (10, 30), cv2.FONT_... 阅读全文
posted @ 2019-09-12 02:16 Jumpkin1122 阅读(1145) 评论(0) 推荐(0) 编辑
摘要: import cv2 cap = cv2.VideoCapture('data/1.mp4') while cap.isOpened(): ret, frame = cap.read() # 调整窗口大小 cv2.namedWindow("frame", 0) # 0可调大小,注意:窗口名必须imshow里面的一窗口名一直 cv2.resizeWindow(... 阅读全文
posted @ 2019-09-12 02:15 Jumpkin1122 阅读(8201) 评论(0) 推荐(1) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 30 下一页