(self, standardize_depth=True)
| 245 | class DepthTransform(ImageTransform): |
| 246 | |
| 247 | def __init__(self, standardize_depth=True): |
| 248 | self.standardize_depth = standardize_depth |
| 249 | |
| 250 | def depth_to_tensor(self, img): |
| 251 | img = torch.Tensor( img / (2 ** 16 - 1.0) ) |
nothing calls this directly
no outgoing calls
no test coverage detected