Skip to content

Commit bcd6bae

Browse files
committed
docs: Newly exported html after update to .ipynb file
1 parent b5153aa commit bcd6bae

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

OpenCV-Face-Recognition-Python.html

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11952,7 +11952,7 @@ <h3 id="Code-Dependencies">Code Dependencies<a class="anchor-link" href="#Code-D
1195211952
<ol>
1195311953
<li><a href="http://opencv.org/releases.html">OpenCV 3.2.0</a>.</li>
1195411954
<li><a href="https://www.python.org/downloads/">Python v3.5</a>.</li>
11955-
<li><a href="http://www.numpy.org/">NumPy</a></li>
11955+
<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>
1195611956
</ol>
1195711957

1195811958
</div>
@@ -12093,7 +12093,6 @@ <h3 id="Prepare-training-data">Prepare training data<a class="anchor-link" href=
1209312093
<li>Read all the images of the subject, detect face from each image.</li>
1209412094
<li>Add each face to faces vector with corresponding subject label (extracted in above step) added to labels vector. </li>
1209512095
</ol>
12096-
<p><strong>[There should be a visualization for above steps here]</strong></p>
1209712096

1209812097
</div>
1209912098
</div>
@@ -16563,11 +16562,24 @@ <h2 id="End-Notes">End Notes<a class="anchor-link" href="#End-Notes">&#182;</a><
1656316562
<div class="inner_cell">
1656416563
<div class="text_cell_render border-box-sizing rendered_html">
1656516564
<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>
1656716566
<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>
1656816567

1656916568
</div>
1657016569
</div>
16570+
</div>
16571+
<div class="cell border-box-sizing code_cell rendered">
16572+
<div class="input">
16573+
<div class="prompt input_prompt">In&nbsp;[&nbsp;]:</div>
16574+
<div class="inner_cell">
16575+
<div class="input_area">
16576+
<div class=" highlight hl-ipython3"><pre><span></span>
16577+
</pre></div>
16578+
16579+
</div>
16580+
</div>
16581+
</div>
16582+
1657116583
</div>
1657216584
</div>
1657316585
</div>

0 commit comments

Comments
 (0)