Skip to content
Snippets Groups Projects
Commit e3458864 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Divide through number of projections on backprojection

parent 5ff3ab8a
Branches
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ class ConeBeamProjector:
tuple(map(torch.from_numpy, inv_matrices))).cuda().contiguous()
self._source_points = torch.stack(
tuple(map(torch.from_numpy, source_points))).cuda().contiguous()
self._projection_multiplier = 1.
self._projection_multiplier = 1. / self._projection_matrices.shape[0]
@property
def projection_matrices(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment