MCPcopy Index your code
hub / github.com/apple/ml-pointersect / clone

Method clone

pointersect/inference/structures.py:1653–1659  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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':

Callers 15

index_selectMethod · 0.95
_testMethod · 0.45
_testMethod · 0.45
_testMethod · 0.45
_testMethod · 0.45
reduce_tensorFunction · 0.45
get_k_neighbor_pointsFunction · 0.45
rectify_pointsFunction · 0.45
uv_samplingFunction · 0.45
_stepMethod · 0.45

Calls 1

CameraClass · 0.85

Tested by 4

_testMethod · 0.36
_testMethod · 0.36
_testMethod · 0.36
_testMethod · 0.36