MCPcopy Create free account
hub / github.com/QWTforGithub/T2LDM / Compose

Class Compose

utils/common.py:857–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

855 return coord, coord1
856
857class Compose(object):
858 def __init__(self, transforms):
859 self.transforms = transforms
860
861 def __call__(self, pcd, pcd1=None):
862 for t in self.transforms:
863 pcd, pcd1 = t(pcd, pcd1)
864 return pcd, pcd1
865
866def get_lidar_transform(aug, training):
867 transform_list = []

Callers 2

get_lidar_transformFunction · 0.85
_transformFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected