(self)
| 33 | self.pcd_files = [os.path.join(self.directory, f) for f in sorted(os.listdir(self.directory)) if f.endswith('.pcd')] |
| 34 | |
| 35 | def __len__(self): |
| 36 | return len(self.pcd_files) |
| 37 | |
| 38 | def __getitem__(self, index_): |
| 39 | res_dict = { |
nothing calls this directly
no outgoing calls
no test coverage detected