This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
from collections import deque | |
from enum import Enum | |
import time | |
import pyautogui | |
# инициализируем | |
video = cv2.VideoCapture(1) # id устройства камеры | |
hands_haar_cascade = cv2.CascadeClassifier("rpalm.xml") |