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.
1 parent 6086483 commit e94840dCopy full SHA for e94840d
monai/deploy/operators/dicom_series_to_volume_operator.py
@@ -134,7 +134,7 @@ def _get_rescaled_pixel_array(sop_instance):
134
135
# The following tests are expecting the array is already of the Numpy type.
136
if rescaled_pixel_data.dtype == np.uint8 or rescaled_pixel_data.dtype == np.uint16:
137
- logging.info("Rescaled pixel array is alreadydy of type uint8 or uint16.")
+ logging.info("Rescaled pixel array is already of type uint8 or uint16.")
138
# Check if casting to uint16 and back to float results in the same values.
139
elif np.all(rescaled_pixel_data > 0) and np.array_equal(
140
rescaled_pixel_data, rescaled_pixel_data.astype(np.uint16)
0 commit comments