We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f2e31 commit 3065ebdCopy full SHA for 3065ebd
1 file changed
Wrappers/Python/cil/processors/Slicer.py
@@ -414,9 +414,6 @@ def process(self, out=None):
414
else:
415
new_geometry = None
416
417
- print("New geometry: ", new_geometry)
418
- print("Shape out: ", self._shape_out)
419
-
420
# return if just acting on geometry
421
if not self._data_array:
422
return new_geometry
@@ -425,7 +422,6 @@ def process(self, out=None):
425
if out is None:
426
423
if new_geometry is not None:
427
424
data_out = new_geometry.allocate(None)
428
- print("New geometry shape: ", data_out.shape)
429
430
processed_array = np.empty(self._shape_out,dtype=np.float32)
431
data_out = DataContainer(processed_array,False, self._labels_out)
0 commit comments