Create frames directory if it doesn't exist
This commit is contained in:
parent
c75f298353
commit
f3c4337fc2
|
@ -2,10 +2,15 @@ import cv2
|
||||||
import time
|
import time
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import os
|
||||||
|
|
||||||
# Folder
|
# Folder
|
||||||
folder = "frames"
|
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
|
# Initialize the webcam
|
||||||
cap = cv2.VideoCapture(0)
|
cap = cv2.VideoCapture(0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue