List all scenes in the dataset.
(self)
| 143 | return res |
| 144 | |
| 145 | def list_scenes(self): |
| 146 | """List all scenes in the dataset.""" |
| 147 | res = [] |
| 148 | for scene in self.data: |
| 149 | res.append(scene['sample_idx']) |
| 150 | return res |
| 151 | |
| 152 | def list_cameras(self, scene): |
| 153 | """List all the camera frames in the scene. |
nothing calls this directly
no outgoing calls
no test coverage detected