Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to move mouse by detected face and eye using opencv

import cv2
import sys
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml')
video_capture = cv2.VideoCapture(0)
while True:
    ret, img = video_capture.read()
    gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
    Face = face_cascade.detectMultiScale(gray, 1.3, 5)
    for (x,y,w,h) in Face:
         cv2.rectangle(img,(x,y),(x+w,y+h),(0,0,255),2)
         roi_gray = gray[y:y+h, x:x+w]
         roi_color = img[y:y+h, x:x+w]
         eyes = eye_cascade.detectMultiScale(roi_gray)
         for (ex,ey,ew,eh) in eyes:
             cv2.rectangle(roi_color,(ex,ey), (ex+ew,ey+eh), (0,255,0), 2)
   # Display the resulting frame
   cv2.imshow('Face and Eye Detected', img)
   if cv2.waitKey(1) & 0xFF == ord('q'):
        break
#cv2.waitKey(0)
video_capture.release()
cv2.destroyAllWindows()
Comment

PREVIOUS NEXT
Code Example
Python :: strain rate 
Python :: bulet in jupyter notebook 
Python :: Use xarray to open a ncdf file 
Python :: docstring return list of tuple 
Python :: python 2 pages 
Python :: using glob module to search all html files in current directory in python 
Python :: pyt last of range of numbers 
Python :: python evenly spaced integers 
Python :: python run docker interactively subprocess 
Python :: Python NumPy atleast_2d Function Example when inputs are in high dimension 
Python :: Updating hash password in python 
Python :: python f strings 
Python :: 123bum123 
Python :: Python NumPy asscalar Function Example 01 
Python :: python function arguments multiple lines 
Python :: How can Clone or Duplicate a Row Using np.tile 
Python :: merge pdf with python at same page 
Python :: Exception has occurred: FileNotFoundError 
Python :: use every character with python to get probabilities 
Python :: Snippet for inverse a matrix using numpy 
Python :: data base creation 
Python :: geopandas cmap change options 
Python :: Remove Brackets from List Using String Slicing method 
Python :: add ing to the end of a string or add ly if the string ends with ing python 
Python :: qmenu 
Python :: matrix implement 
Python :: Which of the following is not a core data type in Python programming? 
Python :: Converting Data Types 
Python :: Invenco Order Dict 
Python :: ring Creating a Multi-Dimensional Array using List 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =