摘要: ```self.graphicsView.scene_img = QGraphicsScene()self.imgShow = QPixmap()self.imgShow.load(fileName)self.imgShowItem = QGraphicsPixmapItem()self.imgShowItem.setPixmap(QPixmap(self.imgShow))#self.imgSh... 阅读全文
posted @ 2020-04-14 11:12 willwuss 阅读(6446) 评论(0) 推荐(0) 编辑
摘要: ``` import cv2 from cv2 import VideoWriter, VideoWriter_fourcc, imread, resize import os from PIL import Image def PicToVideo(imgPath, videoPath): images = os.listdir(imgPath) fps = 25 //帧数 fourcc = V 阅读全文
posted @ 2020-04-14 09:46 willwuss 阅读(1300) 评论(0) 推荐(1) 编辑