https://github.com/vspiewak/webcam-facedetection
Webcam face detection using Scala/OpenCV
https://github.com/vspiewak/webcam-facedetection
face-detection opencv scala webcam
Last synced: about 2 months ago
JSON representation
Webcam face detection using Scala/OpenCV
- Host: GitHub
- URL: https://github.com/vspiewak/webcam-facedetection
- Owner: vspiewak
- Created: 2013-07-24T04:37:53.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-07-24T04:47:07.000Z (almost 13 years ago)
- Last Synced: 2025-02-17T04:48:58.070Z (over 1 year ago)
- Topics: face-detection, opencv, scala, webcam
- Language: Scala
- Size: 30.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Webcam Face Detecition
=======================
This is a minimal Scala project using OpenCV.
OpenCV is provided as a static library.
Run on Linux:
sbt -Djava.library.path=lib/linux run
Run on OSX:
sbt -Djava.library.path=lib/osx run
Run on Windows (You must compile *first* OpenCV into lib/win):
sbt -Djava.library.path=lib/win run
TODO:
* use async to refresh ui
* include libjpeg static for linux
* compile for Windows
Related links:
* http://experienceopencv.blogspot.fr/2011/02/cascade-classifier-and-face-detection.html
* http://note.sonots.com/SciSoftware/haartraining.html
* http://docs.opencv.org/doc/user_guide/ug_traincascade.html
* http://opencvuser.blogspot.fr/2011/08/creating-haar-cascade-classifier-aka.html
* http://blog.csdn.net/caiye917015406/article/details/8558792