We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1b4c405 + 48e691d commit 12bfa87Copy full SHA for 12bfa87
src/recon_buildblock/ProjMatrixByBinUsingRayTracing.cxx
@@ -264,6 +264,13 @@ ProjMatrixByBinUsingRayTracing::set_up(
264
265
ProjMatrixByBin::set_up(proj_data_info_sptr_v, density_info_sptr_v);
266
267
+ if (proj_data_info_sptr->get_scanner_ptr()->get_scanner_geometry() == "BlocksOnCylindrical" && !use_actual_detector_boundaries)
268
+ {
269
+ warning("Setting use_actual_detector_boundaries to true, since this is the only supported setting for "
270
+ "BlocksOnCylindrical geometry");
271
+ use_actual_detector_boundaries = true;
272
+ }
273
+
274
voxel_size = image_info_ptr->get_voxel_size();
275
origin = image_info_ptr->get_origin();
276
if (std::abs(origin.x()) > .05F || std::abs(origin.y()) > .05F)
0 commit comments