├── .gitattributes ├── .gitignore ├── README.md ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── private │ ├── config.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── src └── gui ├── FaceDetection.form ├── FaceDetection.java └── haarcascade_frontalface_alt.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/README.md -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/gui/FaceDetection.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/src/gui/FaceDetection.form -------------------------------------------------------------------------------- /src/gui/FaceDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/src/gui/FaceDetection.java -------------------------------------------------------------------------------- /src/gui/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahaemara/real-time-face-detection-using-opencv-with-java/HEAD/src/gui/haarcascade_frontalface_alt.xml --------------------------------------------------------------------------------