dragonpilot - 基於 openpilot 的開源駕駛輔助系統
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Shane Smiskol 35a4a773f1
Revert "selfdrive/car: ban imports from external modules" (#32993)
1 year ago
..
lib Replace ui.py with a Rerun visualizer (#32850) 1 year ago
tests replay: bug fixes and improvements (#32193) 1 year ago
.gitignore move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago
README.md Replace ui.py with a Rerun visualizer (#32850) 1 year ago
SConscript Restructure msgq (#32652) 1 year ago
__init__.py merge in tools 6 years ago
camera.cc replay: fix hangs on exit (#32795) 1 year ago
camera.h Split cereal into cereal/msgq (#32631) 1 year ago
can_replay.py Revert "selfdrive/car: ban imports from external modules" (#32993) 1 year ago
consoleui.cc cabana: bug fixes and improvements (#32934) 1 year ago
consoleui.h replay: support for setting a custom playback speed (#30462) 2 years ago
filereader.cc replay: bug fixes and improvements (#32193) 1 year ago
filereader.h move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago
framereader.cc replay: shared decoder context (#32255) 1 year ago
framereader.h Split cereal into cereal/msgq (#32631) 1 year ago
logreader.cc cabana: avoid dead locks and improve responsiveness (#32740) 1 year ago
logreader.h replay: optimize memory usage with `MonotonicBuffer` (#32278) 1 year ago
main.cc replay: support for setting a custom playback speed (#30462) 2 years ago
replay.cc cabana: bug fixes and improvements (#32934) 1 year ago
replay.h cabana: bug fixes and improvements (#32934) 1 year ago
route.cc replay: handle route not found error with user warning message (#32895) 1 year ago
route.h cabana: improved error messaging (#32768) 1 year ago
rp_visualization.py Replace ui.py with a Rerun visualizer (#32850) 1 year ago
unlog_ci_segment.py LogReader: move opci to tools/lib (#31021) 2 years ago
util.cc Processor definition check for __APPLE__ has a typo on replay (#32930) 1 year ago
util.h cabana: avoid dead locks and improve responsiveness (#32740) 1 year ago

README.md

Replay

Replay driving data

replay replays all the messages logged while running openpilot.

# Log in via browser to have access to routes from your comma account
python tools/lib/auth.py

# Start a replay
tools/replay/replay <route-name>

# Example:
tools/replay/replay 'a2a0ccea32023010|2023-07-27--13-01-19'
# or use --demo to replay the default demo route:
tools/replay/replay --demo

# watch the replay with the normal openpilot UI
cd selfdrive/ui && ./ui

# or try out radar point visualization in Rerun:
python replay/rp_visualization.py

# NOTE: To visualize radar points, make sure tools/replay/replay is running.

usage

$ tools/replay/replay -h
Usage: tools/replay/replay [options] route
Mock openpilot components by publishing logged messages.

Options:
  -h, --help             Displays this help.
  -a, --allow <allow>    whitelist of services to send
  -b, --block <block>    blacklist of services to send
  -c, --cache <n>        cache <n> segments in memory. default is 5
  -s, --start <seconds>  start from <seconds>
  -x <speed>             playback <speed>. between 0.2 - 3
  --demo                 use a demo route instead of providing your own
  --data_dir <data_dir>  local directory with routes
  --prefix <prefix>      set OPENPILOT_PREFIX
  --dcam                 load driver camera
  --ecam                 load wide road camera
  --no-loop              stop at the end of the route
  --no-cache             turn off local cache
  --qcam                 load qcamera
  --no-hw-decoder        disable HW video decoding
  --no-vipc              do not output video
  --all                  do output all messages including uiDebug, userFlag.
                         this may causes issues when used along with UI

Arguments:
  route                  the drive to replay. find your drives at
                         connect.comma.ai

watch3

watch all three cameras simultaneously from your comma three routes with watch3

simply replay a route using the --dcam and --ecam flags:

# start a replay
cd tools/replay && ./replay --demo --dcam --ecam

# then start watch3
cd selfdrive/ui && ./watch3

Stream CAN messages to your device

Replay CAN messages as they were recorded using a panda jungle. The jungle has 6x OBD-C ports for connecting all your comma devices. Check out the jungle repo for more info.

In order to run your device as if it was in a car:

  • connect a panda jungle to your PC
  • connect a comma device or panda to the jungle via OBD-C
  • run can_replay.py
batman:replay$ ./can_replay.py -h
usage: can_replay.py [-h] [route_or_segment_name]

Replay CAN messages from a route to all connected pandas and jungles
in a loop.

positional arguments:
  route_or_segment_name
                        The route or segment name to replay. If not
                        specified, a default public route will be
                        used. (default: None)

optional arguments:
  -h, --help            show this help message and exit