├── .gitignore ├── README.md ├── VehicleDetection.ipynb ├── VehicleDetection.pdf ├── examples ├── HOG_example.jpg ├── bboxes_and_heat.png ├── car_not_car.png ├── labels_map.png ├── output_bboxes.png ├── sliding_window.jpg └── sliding_windows.jpg ├── output_images ├── .DS_Store └── save_output_here.txt ├── project_video.mp4 ├── project_video_output.mp4 ├── resources ├── color.png ├── heatmap.png ├── hog.png ├── sample_car.png ├── spatial.png ├── window.png └── window_search.png ├── test_images ├── .DS_Store ├── test1.jpg ├── test2.jpg ├── test3.jpg ├── test4.jpg ├── test5.jpg └── test6.jpg ├── test_video.mp4 └── writeup_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/README.md -------------------------------------------------------------------------------- /VehicleDetection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/VehicleDetection.ipynb -------------------------------------------------------------------------------- /VehicleDetection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/VehicleDetection.pdf -------------------------------------------------------------------------------- /examples/HOG_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/HOG_example.jpg -------------------------------------------------------------------------------- /examples/bboxes_and_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/bboxes_and_heat.png -------------------------------------------------------------------------------- /examples/car_not_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/car_not_car.png -------------------------------------------------------------------------------- /examples/labels_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/labels_map.png -------------------------------------------------------------------------------- /examples/output_bboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/output_bboxes.png -------------------------------------------------------------------------------- /examples/sliding_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/sliding_window.jpg -------------------------------------------------------------------------------- /examples/sliding_windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/examples/sliding_windows.jpg -------------------------------------------------------------------------------- /output_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/output_images/.DS_Store -------------------------------------------------------------------------------- /output_images/save_output_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/output_images/save_output_here.txt -------------------------------------------------------------------------------- /project_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/project_video.mp4 -------------------------------------------------------------------------------- /project_video_output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/project_video_output.mp4 -------------------------------------------------------------------------------- /resources/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/color.png -------------------------------------------------------------------------------- /resources/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/heatmap.png -------------------------------------------------------------------------------- /resources/hog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/hog.png -------------------------------------------------------------------------------- /resources/sample_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/sample_car.png -------------------------------------------------------------------------------- /resources/spatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/spatial.png -------------------------------------------------------------------------------- /resources/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/window.png -------------------------------------------------------------------------------- /resources/window_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/resources/window_search.png -------------------------------------------------------------------------------- /test_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/.DS_Store -------------------------------------------------------------------------------- /test_images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test1.jpg -------------------------------------------------------------------------------- /test_images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test2.jpg -------------------------------------------------------------------------------- /test_images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test3.jpg -------------------------------------------------------------------------------- /test_images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test4.jpg -------------------------------------------------------------------------------- /test_images/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test5.jpg -------------------------------------------------------------------------------- /test_images/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_images/test6.jpg -------------------------------------------------------------------------------- /test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/test_video.mp4 -------------------------------------------------------------------------------- /writeup_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirksey3/vehicle-detection-with-svm/HEAD/writeup_template.md --------------------------------------------------------------------------------