waymo-open-dataset
waymo-open-dataset copied to clipboard
Convert Self Dataset To Waymo Format
If we follow Waymo's sensors installation plan to obtain our own perception data. How to save the data to waymo tf_record format? Is there any guidance to do this work?
I'm not sure I fully understand the question, but I think the general process would be to use a tf.io.TFRecordWriter object. You can open a file for writing with this object and then create your Frame protocol buffer objects for each frame in the sequence. For each frame you can use the SerializeToString() method of the Frame object to convert it to a binary string and then write that to the file using the tf.ioTFRecordWriter.write() method.