I followed the tutorial provided in the README of RoboInterData to extract annotation.segmentation, but when I try to print it, the result is None. Could you please clarify why this happens? Additionally, could you guide me on where I can access the mask annotations like those provided in the Video Annotation Visualizer demo?
codes:
for batch in dataloader:
images = batch["observation.images.primary"] # (B, H, W, 3)
actions = batch["action"] # (B, 16, 7)
trace = batch["annotation.trace"] # JSON strings
skill = batch["annotation.primitive_skill"] # List[str]
mask = batch["annotation.segmentation"]
print("mask:", mask)
break
Thank you for your time and assistance. I look forward to your guidance.