摘要:
```self.graphicsView.scene_img = QGraphicsScene()self.imgShow = QPixmap()self.imgShow.load(fileName)self.imgShowItem = QGraphicsPixmapItem()self.imgShowItem.setPixmap(QPixmap(self.imgShow))#self.imgSh... 阅读全文
摘要:
``` 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 阅读全文