У вашего броузера проблема в совместимости с HTML5
Source Code:
https://codeloop.org/python-eye-detection-with-opencv/
In this OpenCV video i want to talk about Python Eye Detection with OpenCV.
So for this video we are using Haar Cascade Classifier.
What Is Haar Cascade ?
A Haar Cascade is basically a classifier which is used to detect the object for which it has been trained for, from the source.
The Haar Cascade is trained by superimposing the positive image over a set of negative images. The training is generally done on a server and on various stages.
Better results are obtained by using high quality images and increasing the amount of stages for which the classifier is trained.
One can also used predefined Haar Cascades which are available on github.
#PythonOpenCV#EyeDetection#Example