(self, resolution, normalize=True, eps=0)
| 8 | |
| 9 | class Voxelization(nn.Module): |
| 10 | def __init__(self, resolution, normalize=True, eps=0): |
| 11 | super().__init__() |
| 12 | self.r = int(resolution) |
| 13 | self.normalize = normalize |
| 14 | self.eps = eps |
| 15 | |
| 16 | def forward(self, features, coords): |
| 17 | coords = coords.detach() |
nothing calls this directly
no outgoing calls
no test coverage detected