├── .idea ├── .gitignore ├── Human_Detecion_Counter.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Human_Detection.py ├── README.md ├── image_op.py ├── requirements.txt ├── t1.jpg └── video-cam.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Human_Detecion_Counter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/Human_Detecion_Counter.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Human_Detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/Human_Detection.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/README.md -------------------------------------------------------------------------------- /image_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/image_op.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-contrib-python 2 | numpy 3 | imutils -------------------------------------------------------------------------------- /t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/t1.jpg -------------------------------------------------------------------------------- /video-cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spidy20/Pedestrian_Detection_OpenCV/HEAD/video-cam.py --------------------------------------------------------------------------------