├── CMakeLists.txt ├── README.md ├── data ├── Test2.jpg ├── Test3.jpg ├── Test4.jpg └── Test5.jpg ├── img_dir ├── pos1.txt ├── sample_neg.txt └── sum_pos.txt ├── normalized_images └── train │ ├── hard_neg │ └── hardexample000001.jpg │ ├── neg │ └── 00000002a.png │ └── pos │ └── crop_000010a.png └── test ├── .DS_Store ├── crop_image.cpp ├── detection.cpp ├── detection.h ├── detection_crop.cpp ├── find_save_hardexample.cpp └── test_main.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/README.md -------------------------------------------------------------------------------- /data/Test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/data/Test2.jpg -------------------------------------------------------------------------------- /data/Test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/data/Test3.jpg -------------------------------------------------------------------------------- /data/Test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/data/Test4.jpg -------------------------------------------------------------------------------- /data/Test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/data/Test5.jpg -------------------------------------------------------------------------------- /img_dir/pos1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/img_dir/pos1.txt -------------------------------------------------------------------------------- /img_dir/sample_neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/img_dir/sample_neg.txt -------------------------------------------------------------------------------- /img_dir/sum_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/img_dir/sum_pos.txt -------------------------------------------------------------------------------- /normalized_images/train/hard_neg/hardexample000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/normalized_images/train/hard_neg/hardexample000001.jpg -------------------------------------------------------------------------------- /normalized_images/train/neg/00000002a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/normalized_images/train/neg/00000002a.png -------------------------------------------------------------------------------- /normalized_images/train/pos/crop_000010a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/normalized_images/train/pos/crop_000010a.png -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/crop_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/crop_image.cpp -------------------------------------------------------------------------------- /test/detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/detection.cpp -------------------------------------------------------------------------------- /test/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/detection.h -------------------------------------------------------------------------------- /test/detection_crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/detection_crop.cpp -------------------------------------------------------------------------------- /test/find_save_hardexample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/find_save_hardexample.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxinglanyu/Pedestrain_Detection/HEAD/test/test_main.cpp --------------------------------------------------------------------------------