├── .gitignore ├── CMakeLists.txt ├── CMakeLists_bin.txt ├── CMakeLists_lib.txt ├── LICENSE ├── README.md ├── deploy.prototxt ├── fd.cpp ├── fd.h ├── fdStandAlone.cpp ├── res10_300x300_ssd_iter_140000.caffemodel ├── test.cpp ├── test.jpg └── testLib.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists_bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/CMakeLists_bin.txt -------------------------------------------------------------------------------- /CMakeLists_lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/CMakeLists_lib.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/README.md -------------------------------------------------------------------------------- /deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/deploy.prototxt -------------------------------------------------------------------------------- /fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/fd.cpp -------------------------------------------------------------------------------- /fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/fd.h -------------------------------------------------------------------------------- /fdStandAlone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/fdStandAlone.cpp -------------------------------------------------------------------------------- /res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/test.cpp -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/test.jpg -------------------------------------------------------------------------------- /testLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugaoxiang/FaceDetectionWithOpenCVDNN/HEAD/testLib.cpp --------------------------------------------------------------------------------