Skip to content

Instantly share code, notes, and snippets.

View khaidir's full-sized avatar

Khaidir Hasan khaidir

  • Banda Aceh
View GitHub Profile
@khaidir
khaidir / cv2_detect.py
Last active September 7, 2015 06:45 — forked from npinto/cv2_detect.py
Simple face detection with OpenCV 'cv2' python bindings from 2.4.x
import cv2
import cv2.cv as cv
def detect(img, cascade_fn='haarcascades/haarcascade_frontalface_alt.xml',
scaleFactor=1.3, minNeighbors=4, minSize=(20, 20),
flags=cv.CV_HAAR_SCALE_IMAGE):
cascade = cv2.CascadeClassifier(cascade_fn)
rects = cascade.detectMultiScale(img, scaleFactor=scaleFactor,