Create frames folder if it doesn't exist

This commit is contained in:
Matt Mazur 2023-11-15 13:46:10 -05:00
parent feeb0cfbd2
commit 61e458e95b
1 changed files with 5 additions and 0 deletions

View File

@ -2,10 +2,15 @@ import cv2
import time
from PIL import Image
import numpy as np
import os
# Folder
folder = "frames"
# Create the frames folder if it doesn't exist
frames_dir = os.path.join(os.getcwd(), folder)
os.makedirs(frames_dir, exist_ok=True)
# Initialize the webcam
cap = cv2.VideoCapture(0)