-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
Is your feature request related to a problem? Please describe.
the DataStats transform can print basic info about input tensors:
MONAI/monai/transforms/utility/array.py
Lines 681 to 684 in 59593bb
| class DataStats(Transform): | |
| """ | |
| Utility transform to show the statistics of data for debug or analysis. | |
| It can be inserted into any place of a transform chain and check results of previous transforms. |
but it can't call the print_verbose, which makes it impossible to inspect metadata. would be great to make the metadata optionally printed.
MONAI/monai/data/meta_tensor.py
Lines 559 to 561 in 59593bb
| def print_verbose(self) -> None: | |
| """Verbose print with meta data.""" | |
| print(self) |