(self, others)
| 333 | resolution=image_size) |
| 334 | |
| 335 | def concat(self, others) -> 'MMCamerasBase': |
| 336 | if isinstance(others, type(self)): |
| 337 | others = [others] |
| 338 | else: |
| 339 | raise TypeError('Could only concat with same type cameras.') |
| 340 | return concat_cameras([self] + others) |
| 341 | |
| 342 | |
| 343 | @CAMERAS.register_module(name=('WeakPerspectiveCameras', 'WeakPerspective', |
no test coverage detected