gitextract_1s41k4rv/ ├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── TODO.md ├── assets/ │ ├── opencv_haarcascade_converter.html │ ├── opencv_haarcascade_eye.js │ ├── opencv_haarcascade_frontalface_alt.js │ ├── opencv_haarcascade_mouth.js │ └── opencv_haarcascade_upper_body.js ├── bower.json ├── build/ │ ├── data/ │ │ ├── eye-min.js │ │ ├── eye.js │ │ ├── face-min.js │ │ ├── face.js │ │ ├── mouth-min.js │ │ └── mouth.js │ ├── tracking-min.js │ └── tracking.js ├── examples/ │ ├── assets/ │ │ ├── color_camera_gui.js │ │ ├── demo.css │ │ ├── fish_tank/ │ │ │ └── FishTankRenderer.js │ │ ├── franck.ogv │ │ ├── franck.webm │ │ └── minions.ogv │ ├── brief.html │ ├── brief_camera.html │ ├── color_camera.html │ ├── color_draw_something.html │ ├── color_fish_tank.html │ ├── color_hello_world.html │ ├── color_video.html │ ├── face_alignment_image.html │ ├── face_alignment_video.html │ ├── face_alignment_webcam.html │ ├── face_camera.html │ ├── face_fish_tank.html │ ├── face_hello_world.html │ ├── face_tag_friends.html │ ├── fast.html │ └── fast_camera.html ├── gulpfile.js ├── package.json ├── src/ │ ├── alignment/ │ │ ├── LBF.js │ │ ├── Regressor.js │ │ └── training/ │ │ ├── Landmarks.js │ │ └── Regressor.js │ ├── detection/ │ │ ├── ViolaJones.js │ │ └── training/ │ │ └── haar/ │ │ ├── eye.js │ │ ├── face.js │ │ └── mouth.js │ ├── features/ │ │ ├── Brief.js │ │ └── Fast.js │ ├── math/ │ │ ├── Math.js │ │ └── Matrix.js │ ├── pose/ │ │ └── EPnP.js │ ├── trackers/ │ │ ├── ColorTracker.js │ │ ├── LandmarksTracker.js │ │ ├── ObjectTracker.js │ │ ├── Tracker.js │ │ └── TrackerTask.js │ ├── tracking.js │ └── utils/ │ ├── Canvas.js │ ├── DisjointSet.js │ ├── EventEmitter.js │ └── Image.js └── test/ ├── Benchmark.js ├── Brief.js ├── ColorTracker.js ├── Fast.js ├── ObjectTracker.js ├── perf/ │ ├── Brief.js │ ├── ColorTracker.js │ ├── Fast.js │ └── ObjectTracker.js └── utils/ ├── benchmark.js └── sandbox.js