Ask Your Question

Wilfred Hughes's profile - activity

2013-09-20 10:59:23 -0600 commented question Python. Simple image Face Detection using OpenCV

That should be cv2.rectangle(img, (face[0], face[1]), (face[0] + face[2], face[1] + face[3]), (255, 0, 0), 3) -- not face[0] + face[3]

2013-09-20 10:58:38 -0600 commented answer Python. Simple image Face Detection using OpenCV

Works fine in my testing without converting to grayscale.