(self, pt)
| 72 | self.visib_radius = visib_radius |
| 73 | |
| 74 | def proj(self, pt): |
| 75 | sph_proj = self.do_sph_projection(pt) |
| 76 | sph_proj = sph_proj.reshape([1, self.sph_H, self.sph_W]) |
| 77 | sph_proj = torch.from_numpy(sph_proj).to( |
| 78 | self.device, dtype=torch.float) |
| 79 | return sph_proj |
| 80 | |
| 81 | def proj_img(self, pt): |
| 82 | sph_proj = self.do_sph_projection(pt) |
nothing calls this directly
no test coverage detected