(self)
| 1651 | return self |
| 1652 | |
| 1653 | def clone(self) -> 'Camera': |
| 1654 | return Camera( |
| 1655 | H_c2w=self.H_c2w.clone() if self.H_c2w is not None else None, |
| 1656 | intrinsic=self.intrinsic.clone() if self.intrinsic is not None else None, |
| 1657 | width_px=self.width_px, |
| 1658 | height_px=self.height_px, |
| 1659 | ) |
| 1660 | |
| 1661 | @staticmethod |
| 1662 | def cat(cameras: T.List['Camera'], dim: int) -> 'Camera': |