I am trying to make a game that uses collision with face. But i havent figured what cvHaarDetectObjects returns. Here is a smalll snipet of code.
cascade = cv.Load('haarcascade_frontalface_alt.xml')
faces = cv.HaarDetectObjects(grayscale, cascade, storage, 1.2, 2,
cv.CV_HAAR_DO_CANNY_PRUNING)
if faces:
for i in faces:
print i
I get somthing like this :((74, 22, 149, 149), 3) What is all this information? Ty