├── .gitignore ├── .idea ├── .gitignore ├── age-gender-detector.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE.md ├── README.md ├── age_deploy.prototxt ├── age_net.caffemodel ├── detection_matrix.txt ├── document.txt ├── gender_deploy.prototxt ├── gender_net.caffemodel ├── main.py ├── opencv_face_detector.pbtxt └── opencv_face_detector_uint8.pb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/age-gender-detector.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/age-gender-detector.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/README.md -------------------------------------------------------------------------------- /age_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/age_deploy.prototxt -------------------------------------------------------------------------------- /age_net.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/age_net.caffemodel -------------------------------------------------------------------------------- /detection_matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/detection_matrix.txt -------------------------------------------------------------------------------- /document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/document.txt -------------------------------------------------------------------------------- /gender_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/gender_deploy.prototxt -------------------------------------------------------------------------------- /gender_net.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/gender_net.caffemodel -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/main.py -------------------------------------------------------------------------------- /opencv_face_detector.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/opencv_face_detector.pbtxt -------------------------------------------------------------------------------- /opencv_face_detector_uint8.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixrajput/age-gender-detector-python/HEAD/opencv_face_detector_uint8.pb --------------------------------------------------------------------------------