├── .gitignore ├── .ipynb_checkpoints └── vehicle_detection_project-checkpoint.ipynb ├── README.md ├── examples ├── .DS_Store ├── HOG_example.jpg ├── bboxes_and_heat.png ├── car_not_car.png ├── labels_map.png ├── output_bboxes.png ├── sliding_window.jpg └── sliding_windows.jpg ├── lesson_functions.py ├── output_images ├── .DS_Store ├── 01_random_data_grid.png ├── 02_hog_visualization.png ├── 03_detections.png ├── 04_boxes_1.png ├── 05_boxes_2.png ├── 06_boxes_3.png ├── 06a_boxes_4.png ├── 07_all_detections.png ├── 08_heatmap.png ├── 09_heatmap_threshold.png ├── 10_label_heatmap.png ├── 11_final_boxes.png ├── 12_all_test_detects.png ├── first_attempt │ ├── 03_detections.png │ ├── 04_boxes_1.png │ ├── 05_boxes_2.png │ ├── 06_boxes_3.png │ ├── 07_all_detections.png │ ├── 08_heatmap.png │ ├── 09_heatmap_threshold.png │ ├── 10_label_heatmap.png │ └── 11_final_boxes.png └── save_output_here.txt ├── project_assignment.md ├── project_video.mp4 ├── project_video_out.mp4 ├── test_images ├── .DS_Store ├── project1.jpg ├── test1.jpg ├── test2.jpg ├── test3.jpg ├── test4.jpg ├── test5.jpg └── test6.jpg ├── test_video.mp4 ├── test_video_out.mp4 ├── test_video_out_2.mp4 ├── vehicle_detection_project.ipynb └── writeup_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/vehicle_detection_project-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/.ipynb_checkpoints/vehicle_detection_project-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/README.md -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/HOG_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/HOG_example.jpg -------------------------------------------------------------------------------- /examples/bboxes_and_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/bboxes_and_heat.png -------------------------------------------------------------------------------- /examples/car_not_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/car_not_car.png -------------------------------------------------------------------------------- /examples/labels_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/labels_map.png -------------------------------------------------------------------------------- /examples/output_bboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/output_bboxes.png -------------------------------------------------------------------------------- /examples/sliding_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/sliding_window.jpg -------------------------------------------------------------------------------- /examples/sliding_windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/examples/sliding_windows.jpg -------------------------------------------------------------------------------- /lesson_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/lesson_functions.py -------------------------------------------------------------------------------- /output_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/.DS_Store -------------------------------------------------------------------------------- /output_images/01_random_data_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/01_random_data_grid.png -------------------------------------------------------------------------------- /output_images/02_hog_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/02_hog_visualization.png -------------------------------------------------------------------------------- /output_images/03_detections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/03_detections.png -------------------------------------------------------------------------------- /output_images/04_boxes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/04_boxes_1.png -------------------------------------------------------------------------------- /output_images/05_boxes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/05_boxes_2.png -------------------------------------------------------------------------------- /output_images/06_boxes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/06_boxes_3.png -------------------------------------------------------------------------------- /output_images/06a_boxes_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/06a_boxes_4.png -------------------------------------------------------------------------------- /output_images/07_all_detections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/07_all_detections.png -------------------------------------------------------------------------------- /output_images/08_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/08_heatmap.png -------------------------------------------------------------------------------- /output_images/09_heatmap_threshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/09_heatmap_threshold.png -------------------------------------------------------------------------------- /output_images/10_label_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/10_label_heatmap.png -------------------------------------------------------------------------------- /output_images/11_final_boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/11_final_boxes.png -------------------------------------------------------------------------------- /output_images/12_all_test_detects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/12_all_test_detects.png -------------------------------------------------------------------------------- /output_images/first_attempt/03_detections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/03_detections.png -------------------------------------------------------------------------------- /output_images/first_attempt/04_boxes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/04_boxes_1.png -------------------------------------------------------------------------------- /output_images/first_attempt/05_boxes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/05_boxes_2.png -------------------------------------------------------------------------------- /output_images/first_attempt/06_boxes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/06_boxes_3.png -------------------------------------------------------------------------------- /output_images/first_attempt/07_all_detections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/07_all_detections.png -------------------------------------------------------------------------------- /output_images/first_attempt/08_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/08_heatmap.png -------------------------------------------------------------------------------- /output_images/first_attempt/09_heatmap_threshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/09_heatmap_threshold.png -------------------------------------------------------------------------------- /output_images/first_attempt/10_label_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/10_label_heatmap.png -------------------------------------------------------------------------------- /output_images/first_attempt/11_final_boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/first_attempt/11_final_boxes.png -------------------------------------------------------------------------------- /output_images/save_output_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/output_images/save_output_here.txt -------------------------------------------------------------------------------- /project_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/project_assignment.md -------------------------------------------------------------------------------- /project_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/project_video.mp4 -------------------------------------------------------------------------------- /project_video_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/project_video_out.mp4 -------------------------------------------------------------------------------- /test_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/.DS_Store -------------------------------------------------------------------------------- /test_images/project1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/project1.jpg -------------------------------------------------------------------------------- /test_images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test1.jpg -------------------------------------------------------------------------------- /test_images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test2.jpg -------------------------------------------------------------------------------- /test_images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test3.jpg -------------------------------------------------------------------------------- /test_images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test4.jpg -------------------------------------------------------------------------------- /test_images/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test5.jpg -------------------------------------------------------------------------------- /test_images/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_images/test6.jpg -------------------------------------------------------------------------------- /test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_video.mp4 -------------------------------------------------------------------------------- /test_video_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_video_out.mp4 -------------------------------------------------------------------------------- /test_video_out_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/test_video_out_2.mp4 -------------------------------------------------------------------------------- /vehicle_detection_project.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/vehicle_detection_project.ipynb -------------------------------------------------------------------------------- /writeup_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-shannon/CarND-Vehicle-Detection/HEAD/writeup_template.md --------------------------------------------------------------------------------