Skip to content

Commit eb8fc98

Browse files
updating AutoSpeed README with more detailed explanation and demo video link
1 parent 693fd73 commit eb8fc98

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Models/model_library/AutoSpeed/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ Maintaining the vehicle speed and keep safe distance from the vehicle in front i
66
determine the closest inpath object AutoSpeed network is used. This network is inspired by YOLOv11 architecture, with
77
substituted c3K2 by a new block ASC block to improve CIPO object detection.
88

9+
The AutoSpeed model detects all foreground objects and classifies into three categories depending on the object's position with respect to the predicted future driving path of the ego-car:
10+
11+
- objects directly within the future driving path of the ego-car
12+
- objects cutting-in/cutting-out of the future driving path of the ego-car
13+
- objects outside of the future driving path of the ego-car
14+
15+
We use an inverse-perspective mapping to convert the image pixels to world coordinates. We take the bottom/centre point of the in-path object's bounding box and measure its real-world distance through the inverse-perspective mapping. A Kalman filter is separately used to track the distance and infer the speed of this object.
16+
17+
You can find more information about how we calculate the inverse-perspective mapping for Waymo Open Dataset here: https://github.com/autowarefoundation/autoware_vision_pilot/tree/main/VisionPilot/Middleware_Recipes/Calibration
18+
19+
### You can see our object tracking implementation here:
20+
21+
**src**: https://github.com/autowarefoundation/autoware_vision_pilot/tree/main/VisionPilot/Production_Releases/0.9/src/object_tracking
22+
23+
**include**:
24+
https://github.com/autowarefoundation/autoware_vision_pilot/tree/main/VisionPilot/Production_Releases/0.9/include/object_tracking
25+
26+
## Watch the explainer video
27+
Please click the video link to play - [***Video link***](https://drive.google.com/file/d/1kUMtZWmU3vQ6ApNk3q1dbS-vAUUFKYut/view?usp=sharing)
28+
29+
930
<img src="../../../Media/AutoSpeed_GIF_2.gif" width="100%">
1031

1132
### Performance Results

0 commit comments

Comments
 (0)