├── README.md ├── VehicleDetection.ipynb ├── data └── get_data.sh ├── examples ├── .DS_Store ├── HOG_example.jpg ├── bboxes_and_heat.png ├── box_matches.png ├── car_not_car.png ├── dog.jpg ├── heatmap.png ├── hog_subsample.png ├── labels_map.png ├── output_bboxes.png ├── persp_transform.png ├── results.png ├── sample_region_matches.png ├── sliding_window.jpg ├── sliding_windows.jpg └── yolo_network.png ├── lesson_functions.py ├── output_images ├── .DS_Store └── save_output_here.txt ├── process_vid_yolo.py ├── project_video_out.mp4 ├── project_video_yolo.mp4 └── test_images ├── .DS_Store ├── test1.jpg ├── test2.jpg ├── test3.jpg ├── test4.jpg ├── test5.jpg └── test6.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/README.md -------------------------------------------------------------------------------- /VehicleDetection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/VehicleDetection.ipynb -------------------------------------------------------------------------------- /data/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/data/get_data.sh -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/HOG_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/HOG_example.jpg -------------------------------------------------------------------------------- /examples/bboxes_and_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/bboxes_and_heat.png -------------------------------------------------------------------------------- /examples/box_matches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/box_matches.png -------------------------------------------------------------------------------- /examples/car_not_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/car_not_car.png -------------------------------------------------------------------------------- /examples/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/dog.jpg -------------------------------------------------------------------------------- /examples/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/heatmap.png -------------------------------------------------------------------------------- /examples/hog_subsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/hog_subsample.png -------------------------------------------------------------------------------- /examples/labels_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/labels_map.png -------------------------------------------------------------------------------- /examples/output_bboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/output_bboxes.png -------------------------------------------------------------------------------- /examples/persp_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/persp_transform.png -------------------------------------------------------------------------------- /examples/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/results.png -------------------------------------------------------------------------------- /examples/sample_region_matches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/sample_region_matches.png -------------------------------------------------------------------------------- /examples/sliding_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/sliding_window.jpg -------------------------------------------------------------------------------- /examples/sliding_windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/sliding_windows.jpg -------------------------------------------------------------------------------- /examples/yolo_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/examples/yolo_network.png -------------------------------------------------------------------------------- /lesson_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/lesson_functions.py -------------------------------------------------------------------------------- /output_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/output_images/.DS_Store -------------------------------------------------------------------------------- /output_images/save_output_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/output_images/save_output_here.txt -------------------------------------------------------------------------------- /process_vid_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/process_vid_yolo.py -------------------------------------------------------------------------------- /project_video_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/project_video_out.mp4 -------------------------------------------------------------------------------- /project_video_yolo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/project_video_yolo.mp4 -------------------------------------------------------------------------------- /test_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/.DS_Store -------------------------------------------------------------------------------- /test_images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test1.jpg -------------------------------------------------------------------------------- /test_images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test2.jpg -------------------------------------------------------------------------------- /test_images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test3.jpg -------------------------------------------------------------------------------- /test_images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test4.jpg -------------------------------------------------------------------------------- /test_images/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test5.jpg -------------------------------------------------------------------------------- /test_images/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tawnkramer/CarND-Vehicle-Detection/HEAD/test_images/test6.jpg --------------------------------------------------------------------------------