├── .gitignore ├── LICENSE ├── README.md ├── api.py ├── heads ├── __init__.py ├── direct.py ├── direct_normalize.py ├── fc1024.py └── fc1024_normalize.py ├── model └── .keep ├── nets ├── README.md ├── __init__.py ├── mobilenet_v1.py ├── mobilenet_v1_1_224.py ├── resnet_utils.py ├── resnet_v1.py ├── resnet_v1_101.py └── resnet_v1_50.py ├── requirements.txt ├── test.ipynb └── test ├── test1.png ├── test2.png └── test3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/api.py -------------------------------------------------------------------------------- /heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/heads/__init__.py -------------------------------------------------------------------------------- /heads/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/heads/direct.py -------------------------------------------------------------------------------- /heads/direct_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/heads/direct_normalize.py -------------------------------------------------------------------------------- /heads/fc1024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/heads/fc1024.py -------------------------------------------------------------------------------- /heads/fc1024_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/heads/fc1024_normalize.py -------------------------------------------------------------------------------- /model/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/README.md -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/__init__.py -------------------------------------------------------------------------------- /nets/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/mobilenet_v1.py -------------------------------------------------------------------------------- /nets/mobilenet_v1_1_224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/mobilenet_v1_1_224.py -------------------------------------------------------------------------------- /nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/resnet_utils.py -------------------------------------------------------------------------------- /nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/resnet_v1.py -------------------------------------------------------------------------------- /nets/resnet_v1_101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/resnet_v1_101.py -------------------------------------------------------------------------------- /nets/resnet_v1_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/nets/resnet_v1_50.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==1.8.0 2 | opencv-python==3.4.0.12 3 | -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/test.ipynb -------------------------------------------------------------------------------- /test/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/test/test1.png -------------------------------------------------------------------------------- /test/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/test/test2.png -------------------------------------------------------------------------------- /test/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cftang0827/pedestrian_recognition/HEAD/test/test3.png --------------------------------------------------------------------------------