Skip to content

Commit

Permalink
Merge pull request #14641 from daohu527/fix_record_parse_save
Browse files Browse the repository at this point in the history
tools: fix camera msg parse error
  • Loading branch information
daohu527 authored Oct 11, 2022
2 parents 12ab9e9 + 73122e4 commit aa0c5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tools/record_parse_save/parse_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def parse_data(channelname, msg, out_folder):
parser images from Apollo record file
"""
msg_camera = CompressedImage()
msg_camera.ParseFromString(str(msg))
msg_camera.ParseFromString(msg)

tstamp = msg_camera.measurement_time

Expand Down

0 comments on commit aa0c5eb

Please sign in to comment.