├── OneCameraFront.py ├── OneCameraRear.py ├── README.md ├── TwoCamerasFront.py ├── TwoVideoTrackingTest.py ├── VehicleDetectionAndTracking.py ├── VehicleDetectionAndTrackingProject.py └── utilities ├── BoundingBox.py ├── LabelMap.py ├── VehicleDetector.py ├── VehicleTracker.py ├── VideoConversion.py ├── Visualization.py └── __init__.py /OneCameraFront.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/OneCameraFront.py -------------------------------------------------------------------------------- /OneCameraRear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/OneCameraRear.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/README.md -------------------------------------------------------------------------------- /TwoCamerasFront.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/TwoCamerasFront.py -------------------------------------------------------------------------------- /TwoVideoTrackingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/TwoVideoTrackingTest.py -------------------------------------------------------------------------------- /VehicleDetectionAndTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/VehicleDetectionAndTracking.py -------------------------------------------------------------------------------- /VehicleDetectionAndTrackingProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/VehicleDetectionAndTrackingProject.py -------------------------------------------------------------------------------- /utilities/BoundingBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/BoundingBox.py -------------------------------------------------------------------------------- /utilities/LabelMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/LabelMap.py -------------------------------------------------------------------------------- /utilities/VehicleDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/VehicleDetector.py -------------------------------------------------------------------------------- /utilities/VehicleTracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/VehicleTracker.py -------------------------------------------------------------------------------- /utilities/VideoConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/VideoConversion.py -------------------------------------------------------------------------------- /utilities/Visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNICKE/Vehicle-Detection_-And-Traking/HEAD/utilities/Visualization.py -------------------------------------------------------------------------------- /utilities/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------