英文摘要 |
This article uses today's artificial intelligencetechnology to implement an automatic face recognitionand comparison program, and practically applies thisprogram to the online teaching system that is widelyused in the epidemic era, so as to quickly obtain thenumber of online teaching participants and the number ofparticipants. After a series of programming process, theimplementation results are as follows:1. When using OpenCV's CascadeClassifier tosearch for faces in the image, the face classifier generatedby Haar features is used. For faces that are too skewed inthe image, this method is still unable to detect.2. Dlib's face search is mainly implemented usingHOG features. This method has high accuracy. When theface position is found, Dlib then uses the Ensemble ofRegression Trees theory to predict the specified featureposition on each face. When the feature position data ofall faces is available, after the face alignment procedure,the deep residual learning model is used to calculate the128D vector information of each face, and the Euclideandistance calculation can be used for face comparison. Inour implementation, the accuracy of face recognition canbe achieved 100%. |