├── Makefile ├── README.md ├── add_age_rec.py ├── convert_rec.py ├── data.py ├── essh_detector.py ├── face_image.py ├── face_model.py ├── face_preprocess.py ├── helper.py ├── model └── m1 │ ├── model-0000.params │ └── model-symbol.json ├── mtcnn-model ├── det1-0001.params ├── det1-symbol.json ├── det2-0001.params ├── det2-symbol.json ├── det3-0001.params ├── det3-symbol.json ├── det4-0001.params └── det4-symbol.json ├── mtcnn_detector.py ├── rcnn ├── __init__.py ├── cython │ ├── __init__.py │ ├── anchors.pyx │ ├── bbox.pyx │ ├── cpu_nms.pyx │ ├── frcnn_cython.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── gpu_nms.hpp │ ├── gpu_nms.pyx │ ├── nms_kernel.cu │ └── setup.py └── processing │ ├── __init__.py │ ├── bbox_regression.py │ ├── bbox_transform.py │ ├── generate_anchor.py │ └── nms.py ├── sample-images ├── detection result_test1_22.02.2019.png ├── test1.jpg └── test2.jpg ├── ssh-model └── README.md ├── symbol_utils.py ├── symbols ├── fmobilenet.py └── fresnet.py ├── test.py ├── train.py └── train.sh /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/README.md -------------------------------------------------------------------------------- /add_age_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/add_age_rec.py -------------------------------------------------------------------------------- /convert_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/convert_rec.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/data.py -------------------------------------------------------------------------------- /essh_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/essh_detector.py -------------------------------------------------------------------------------- /face_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/face_image.py -------------------------------------------------------------------------------- /face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/face_model.py -------------------------------------------------------------------------------- /face_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/face_preprocess.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/helper.py -------------------------------------------------------------------------------- /model/m1/model-0000.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/model/m1/model-0000.params -------------------------------------------------------------------------------- /model/m1/model-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/model/m1/model-symbol.json -------------------------------------------------------------------------------- /mtcnn-model/det1-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det1-0001.params -------------------------------------------------------------------------------- /mtcnn-model/det1-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det1-symbol.json -------------------------------------------------------------------------------- /mtcnn-model/det2-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det2-0001.params -------------------------------------------------------------------------------- /mtcnn-model/det2-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det2-symbol.json -------------------------------------------------------------------------------- /mtcnn-model/det3-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det3-0001.params -------------------------------------------------------------------------------- /mtcnn-model/det3-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det3-symbol.json -------------------------------------------------------------------------------- /mtcnn-model/det4-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det4-0001.params -------------------------------------------------------------------------------- /mtcnn-model/det4-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn-model/det4-symbol.json -------------------------------------------------------------------------------- /mtcnn_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/mtcnn_detector.py -------------------------------------------------------------------------------- /rcnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rcnn/cython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rcnn/cython/anchors.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/anchors.pyx -------------------------------------------------------------------------------- /rcnn/cython/bbox.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/bbox.pyx -------------------------------------------------------------------------------- /rcnn/cython/cpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/cpu_nms.pyx -------------------------------------------------------------------------------- /rcnn/cython/frcnn_cython.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/frcnn_cython.egg-info/PKG-INFO -------------------------------------------------------------------------------- /rcnn/cython/frcnn_cython.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/frcnn_cython.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /rcnn/cython/frcnn_cython.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rcnn/cython/frcnn_cython.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | anchors 2 | bbox 3 | cpu_nms 4 | -------------------------------------------------------------------------------- /rcnn/cython/gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/gpu_nms.hpp -------------------------------------------------------------------------------- /rcnn/cython/gpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/gpu_nms.pyx -------------------------------------------------------------------------------- /rcnn/cython/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/nms_kernel.cu -------------------------------------------------------------------------------- /rcnn/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/cython/setup.py -------------------------------------------------------------------------------- /rcnn/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rcnn/processing/bbox_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/processing/bbox_regression.py -------------------------------------------------------------------------------- /rcnn/processing/bbox_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/processing/bbox_transform.py -------------------------------------------------------------------------------- /rcnn/processing/generate_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/processing/generate_anchor.py -------------------------------------------------------------------------------- /rcnn/processing/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/rcnn/processing/nms.py -------------------------------------------------------------------------------- /sample-images/detection result_test1_22.02.2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/sample-images/detection result_test1_22.02.2019.png -------------------------------------------------------------------------------- /sample-images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/sample-images/test1.jpg -------------------------------------------------------------------------------- /sample-images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/sample-images/test2.jpg -------------------------------------------------------------------------------- /ssh-model/README.md: -------------------------------------------------------------------------------- 1 | Put pretrained ESSH model here 2 | -------------------------------------------------------------------------------- /symbol_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/symbol_utils.py -------------------------------------------------------------------------------- /symbols/fmobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/symbols/fmobilenet.py -------------------------------------------------------------------------------- /symbols/fresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/symbols/fresnet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepinx/age-gender-estimation/HEAD/train.sh --------------------------------------------------------------------------------