以不同的名称循环保存图像

GGz*_*zet 4 python opencv

我在循环保存裁剪的图像时遇到问题。我的代码:

def run(self, image_file):
    print(image_file)
    cap = cv2.VideoCapture(image_file)
    while(cap.isOpened()):
        ret, frame = cap.read()
        if ret == True:
            img = frame
            min_h = int(max(img.shape[0] / self.min_height_dec, self.min_height_thresh))
            min_w = int(max(img.shape[1] / self.min_width_dec, self.min_width_thresh))
            gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
            faces = self.face_cascade.detectMultiScale(gray, 1.3, minNeighbors=5, minSize=(min_h, min_w))

            images = []
            for i, (x, y, w, h) in enumerate(faces):
                images.append(self.sub_image('%s/%s-%d.jpg' % (self.tgtdir, self.basename, i + 1), img, x, y, w, h))
            print('%d faces detected' % len(images))

            for (x, y, w, h) in faces: 
                self.draw_rect(img, x, y, w, h)
                # Fix in case nothing found in the image
            outfile = '%s/%s.jpg' % (self.tgtdir, self.basename)
            cv2.imwrite(outfile, img)
            if cv2.waitKey(1) & 0xFF == ord('q'):
                break
        else:
            break
    cap.release()
    cv2.destroyAllWindows()
    return images, outfile
Run Code Online (Sandbox Code Playgroud)

我对每一帧都有一个循环,并在脸上进行裁剪。问题是,对于每个裁剪的图像和图片,它都给出了相同的名称,而最后我只有最后一帧的面孔。我应该如何修复此代码以保存所有裁剪的面孔和图像?

Col*_*win 5

您正在使用相同的名称保存每个文件。因此,您正在覆盖以前保存的图像

outfile = '%s/%s.jpg' % (self.tgtdir, self.basename)
Run Code Online (Sandbox Code Playgroud)

将行更改为此以在名称中添加随机字符串

outfile = '%s/%s.jpg' % (self.tgtdir, self.basename + str(uuid.uuid4()))
Run Code Online (Sandbox Code Playgroud)

您也需要import uuid在文件顶部