├── .DS_Store ├── .gitignore ├── README.md ├── Vinayak_Agarwal.pdf ├── _config.yml ├── keras-frcnn ├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── default model │ └── config.pickle ├── keras_frcnn │ ├── FixedBatchNormalization.py │ ├── RoiPoolingConv.py │ ├── __init__.py │ ├── config.py │ ├── data_augment.py │ ├── data_generators.py │ ├── losses.py │ ├── pascal_voc_parser.py │ ├── resnet.py │ ├── roi_helpers.py │ ├── simple_parser.py │ └── vgg.py ├── measure_map.py ├── neg_img_train │ └── config.pickle ├── requirements.txt ├── test_frcnn.py └── train_frcnn.py └── test_results ├── .DS_Store ├── multiperson.png ├── plot.png ├── screeenshot1.png ├── screenshot.png └── verbose.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/README.md -------------------------------------------------------------------------------- /Vinayak_Agarwal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/Vinayak_Agarwal.pdf -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/_config.yml -------------------------------------------------------------------------------- /keras-frcnn/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/.DS_Store -------------------------------------------------------------------------------- /keras-frcnn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/.gitignore -------------------------------------------------------------------------------- /keras-frcnn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/LICENSE -------------------------------------------------------------------------------- /keras-frcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/README.md -------------------------------------------------------------------------------- /keras-frcnn/default model/config.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/default model/config.pickle -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/FixedBatchNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/FixedBatchNormalization.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/RoiPoolingConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/RoiPoolingConv.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/config.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/data_augment.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/data_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/data_generators.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/losses.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/pascal_voc_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/pascal_voc_parser.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/resnet.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/roi_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/roi_helpers.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/simple_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/simple_parser.py -------------------------------------------------------------------------------- /keras-frcnn/keras_frcnn/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/keras_frcnn/vgg.py -------------------------------------------------------------------------------- /keras-frcnn/measure_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/measure_map.py -------------------------------------------------------------------------------- /keras-frcnn/neg_img_train/config.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/neg_img_train/config.pickle -------------------------------------------------------------------------------- /keras-frcnn/requirements.txt: -------------------------------------------------------------------------------- 1 | h5py 2 | Keras==2.0.3 3 | numpy 4 | opencv-python 5 | sklearn 6 | -------------------------------------------------------------------------------- /keras-frcnn/test_frcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/test_frcnn.py -------------------------------------------------------------------------------- /keras-frcnn/train_frcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/keras-frcnn/train_frcnn.py -------------------------------------------------------------------------------- /test_results/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/.DS_Store -------------------------------------------------------------------------------- /test_results/multiperson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/multiperson.png -------------------------------------------------------------------------------- /test_results/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/plot.png -------------------------------------------------------------------------------- /test_results/screeenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/screeenshot1.png -------------------------------------------------------------------------------- /test_results/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/screenshot.png -------------------------------------------------------------------------------- /test_results/verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinayak96/people_detection/HEAD/test_results/verbose.png --------------------------------------------------------------------------------