:param x: (b, c, d, h, w) :return: (b, 1, d, h, w)
(self, x)
| 443 | ) |
| 444 | |
| 445 | def forward(self, x): |
| 446 | """ |
| 447 | :param x: (b, c, d, h, w) |
| 448 | :return: (b, 1, d, h, w) |
| 449 | """ |
| 450 | w = self.w_net(x) |
| 451 | return w |
| 452 | |
| 453 | |
| 454 | def depth_regression(p, depth_values,axis=1): |
nothing calls this directly
no outgoing calls
no test coverage detected