You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li><a href="http://www.numpy.org/">NumPy</a> Numpy makes computing in Python easy. Amont other things it contains a powerful implementation of N-dimensional arrays which we will use for feeding data as input to OpenCV functions.</li>
11956
11956
</ol>
11957
11957
11958
11958
</div>
@@ -12093,7 +12093,6 @@ <h3 id="Prepare-training-data">Prepare training data<a class="anchor-link" href=
12093
12093
<li>Read all the images of the subject, detect face from each image.</li>
12094
12094
<li>Add each face to faces vector with corresponding subject label (extracted in above step) added to labels vector. </li>
12095
12095
</ol>
12096
-
<p><strong>[There should be a visualization for above steps here]</strong></p>
<p>You can download the complete code and relevant files from this Github <a href="https://github.com/informramiz/opencv-face-recognition-python">repo</a>.</p>
16566
-
<p>Face Recognition is a fascinating idea to work on and OpenCV has made it extremely simple and easy for us to code it. It just takes a few lines of code to have a fully working face recognition application and we can switch between all three face recognizers with a single line of code change. It's that simple.</p>
16565
+
<p>Face Recognition is a fascinating idea to work on and OpenCV has made it extremely simple and easy for us to code it. It takes just a few lines of code to have a fully working face recognition application and we can switch between all three face recognizers with a single line of code change. It's that simple.</p>
16567
16566
<p>Although EigenFaces, FisherFaces and LBPH face recognizers are good but there are even better ways to perform face recognition like using Histogram of Oriented Gradients (HOGs) and Neural Networks. So the more advanced face recognition algorithms are now a days implemented using a combination of OpenCV and Machine learning. I have plans to write some articles on those more advanced methods as well, so stay tuned!</p>
0 commit comments