Skip to content

Commit 724599a

Browse files
Update README.md
1 parent ddc3582 commit 724599a

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

README.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
11
# facetrack
2-
face-tracking and applying image filters
2+
In this face-tracking tutorial you will learn to:
3+
4+
- install and run Python with the Anaconda package manager
5+
- create a new Anaconda environment and install packages in it
6+
- use the OpenCV package to do face-tracking with images from a webcam
7+
- apply some mathematical filters to modify images
8+
9+
10+
11+
# installing Anaconda
12+
13+
Installation instructions for Mac, Windows and Linux: https://conda.io/docs/user-guide/install/index.html
14+
15+
Anaconda is a package manager for Python. Packages (also called modules) are like recipe books - they have instructions for performing a specific task. Imagine you want to bake a pie: you might want to a import package with a recipe for making a crust so that you don't have to write your own instructions for doing that task. The package with the crust recipe would itself refer to other packages with recipes for things like how to churn butter or grow wheat and mill flour. In this way, it's possibile to do some cool stuff with Python without having to understand all the details about how the software is performing every task.
16+
17+
You can run Python and install packages without a package manager, but it's better to use one because it will make your life a lot easier. When you install a new package, Anaconda will make sure that the other packages that your new module relies on are up-to-date. Another advantage is that Anaconda allows you to create a new "environment" for each project you do: that way if an old project uses an old version of a package
18+
19+
20+
21+
22+
# getting started with OpenCV
23+
24+
# trouble-shooting your webcam
25+
26+
27+
# project ideas
28+
- apply snapchat filters to faces in images from your webcam (http://blog.stickpng.com/create-snapchat-filters-png-stickers/)
29+
- write a program that will save a still photo 3 seconds after you wink. Your program might include a numerical countdown on the viewer window as well as some beeps so that the user knows when the photo will be taken.

0 commit comments

Comments
 (0)