Easily import your pointclouds with annotations in the LYFT format. LYFT is an annotation format used in the well-regarded Lyft Level 5 Prediction dataset.
Originaly, the dataset is suited to be imported as Pointcloud Episodes, even though it is available in Pointcloud format as well.
Format description
Supported point cloud format:.binWith annotations: yes
Supported annotation format:.jsonData structure: Information is provided below.
The original LYFT dataset's annotations are token-based. The dataset is composed of dozens of scenes, each consisting of 126 point cloud frames, named samples. Samples are linked to annotation data through the use of unique identifiers, known as tokens. These tokens ensure that each point cloud frame is accurately associated with its corresponding annotations, maintaining the integrity and structure of the dataset.
attribute.json
The attribute.json file contains metadata about the attributes of objects in the dataset. Each entry includes a unique token, a name, and a description of the attribute.
The calibrated_sensor.json file contains calibration data for each sensor used in the dataset. This includes information about the sensor's position, orientation, and intrinsic parameters. Each entry in the file is associated with a unique sensor token.
The category.json file contains metadata about the categories of objects in the dataset. Each entry includes a unique token, a name, and a description of the category.
The ego_pose.json file contains the position and orientation of the ego vehicle at each timestamp. Each entry includes a unique token, rotation, translation, and timestamp.
The instance.json file contains metadata about each instance in the dataset. Each entry includes a unique token, category token, and tokens linking to the first and last annotations of the instance. The file also includes the number of annotations associated with each instance.
The log.json file contains metadata about the logging information for each scene in the dataset. Each entry includes a unique token, the date the data was captured, the location, the vehicle used, and a token linking to the corresponding map.
The map.json file contains metadata about the maps used in the dataset. Each entry represents a single map and includes a unique token, the filename of the map image, the category of the map, and a list of tokens linking to the logs associated with the map itself.
The sample.json file contains metadata about each sample in the dataset. Each sample represents a single point cloud frame and includes tokens linking to related data such as annotations and sensor data. The file also includes information about the sample's position in the sequence and the associated scene.
The sample_annotation.json file contains detailed information about each annotation in the dataset. This includes the size, position, and orientation of the annotated objects, as well as tokens linking to related data such as attributes and instances. Each entry in the file represents an instance annotation.
The sample_data.json file contains metadata about each data sample in the dataset. This includes information about the sensor used to capture the data, the file format, and the associated tokens for calibration and ego pose. Each entry in the file represents a single data sample, linking it to the corresponding point cloud or image file.
The scene.json file contains metadata about each scene in the dataset. Each scene is a sequence of point cloud frames captured over a period of time. The file includes tokens linking to the first and last samples in the scene, the number of samples, and a description.
The sensor.json file contains metadata about each sensor used in the dataset. This includes information about the sensor's modality (e.g., camera, lidar), the channel it corresponds to, and a unique token for each sensor.
The visibility.json file contains information about the visibility levels of objects in the dataset. Each entry specifies a visibility level, a description of what that level represents, and a unique token.
Original dataset's file contents:
[ {"level":"v60-80","description":"visibility of whole object is between 60 and 80%","token":"3" }, {"level":"v0-40","description":"visibility of whole object is between 0 and 40%","token":"1" }, {"level":"v40-60","description":"visibility of whole object is between 40 and 60%","token":"2" }, {"level":"v80-100","description":"visibility of whole object is between 80 and 100%","token":"4" }]