(self, attributes)
| 516 | return cropped |
| 517 | |
| 518 | def create_new_object_entry(self, attributes): |
| 519 | self.objects_track_dict[self.id_index] = {} |
| 520 | self.objects_track_dict[self.id_index].update(self.attributes) |
| 521 | self.objects_track_dict[self.id_index].update(attributes) |
| 522 | self.objects_track_dict[self.id_index]["ID"] = self.id_index |
| 523 | self.id_index += 1 |
| 524 | |
| 525 | def filter_centroids_out_of_bounds(self): |
| 526 | reachable = self.navigation.get_reachable_map_locations(sample=False) |
no test coverage detected