openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
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.
 
 
 
 
 
 
Dean Lee 66ca3985c9 replay : move utility functions into separate file (#22414) 4 years ago
..
include logcatd, loggerd, mapd, modeld, proclogd 5 years ago
tests replay : move utility functions into separate file (#22414) 4 years ago
tools Uploader speedup (#2214) 5 years ago
.gitignore LoggerState: test cases (#21855) 4 years ago
README.md small typo 4 years ago
SConscript replay : move utility functions into separate file (#22414) 4 years ago
__init__.py logcatd, loggerd, mapd, modeld, proclogd 5 years ago
bootlog.cc capnp:Text::Reader: use implicit conversion from string (#21980) 4 years ago
config.py use same env variable for loggerd, deleter, and uploader 4 years ago
deleter.py deleter.py: delete boot and crash folders last (#21028) 4 years ago
encoder.h loggerd: remove the segment variable from encoders (#20034) 4 years ago
logger.cc LoggerState: test cases (#21855) 4 years ago
logger.h LoggerState: test cases (#21855) 4 years ago
loggerd.cc remove loggerd todo about encodeIdx decimation 4 years ago
omx_encoder.cc Handle EINTR for all syscalls that can return it (#21948) 4 years ago
omx_encoder.h Revert "tici: give loggerd rt priority (#21503)" 4 years ago
raw_logger.cc Handle EINTR for all syscalls that can return it (#21948) 4 years ago
raw_logger.h Cleanup selfdrive/ includes (#20822) 4 years ago
uploader.py Upload when on ethernet (#22188) 4 years ago
xattr_cache.py Uploader speedup (#2214) 5 years ago

README.md

loggerd

openpilot records routes in one minute chunks called segments. A route starts on the rising edge of ignition and ends on the falling edge.

Check out our python library for reading openpilot logs. Also checkout our tools to replay and view your data. These are the same tools we use to debug and develop openpilot.

log types

For each segment, openpilot records the following log types:

rlog.bz2

rlogs contain all the messages passed amongst openpilot's processes. See cereal/services.py for a list of all the logged services. They're a bzip2 archive of the serialized capnproto messages.

{f,e,d}camera.hevc

Each camera stream is H.265 encoded and written to its respective file.

  • fcamera.hevc is the road camera
  • ecamera.hevc is the wide road camera
  • dcamera.hevc is the driver camera

qlog.bz2 & qcamera.ts

qlogs are a decimated subset of the rlogs. Check out cereal/services.py for the decimation.

qcameras are H.264 encoded, lower res versions of the fcamera.hevc. The video shown in comma connect is from the qcameras.

qlogs and qcameras are designed to be small enough to upload instantly on slow internet and store forever, yet useful enough for most analysis and debugging.