Skip to content

Commit

Permalink
Update extract_data.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxq committed Apr 4, 2019
1 parent d1290db commit 2cf7b51
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
the data is not qualified, and reduce the size of uploaded data significantly.
"""

import os
import sys
import argparse
from datetime import datetime
import argparse
import os
import re
import sys
import tarfile

import six
import numpy as np
import cv2
import numpy as np
import pypcd
import six

from cyber_py.record import RecordReader
from cyber.proto import record_pb2

from modules.drivers.proto import sensor_image_pb2
from modules.drivers.proto import pointcloud_pb2
import pypcd

CYBER_PATH = os.environ['CYBER_PATH']

Expand Down Expand Up @@ -358,7 +358,7 @@ def main():

print("parsing the following channels:%s" % args.channel_list)

# (TODO: Liujie) Add logger info to trace the extraction process
# TODO(Liujie): Add logger info to trace the extraction process
ret = validate_record(args.record_path)
if ret is False:
print('Failed to validate record file: %s' % args.record_path)
Expand Down

0 comments on commit 2cf7b51

Please sign in to comment.