1 | initial version |
faces = face_cascade.detectmultiScale(gray, 1.3, 5);
The line above should be:
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
I imagine the capitalization and the semicolon are throwing off your compiler. Especially if this is Python.