Class to wrap nrrd image array and metadata header
| 1447 | |
| 1448 | @dataclass |
| 1449 | class NrrdImage: |
| 1450 | """Class to wrap nrrd image array and metadata header""" |
| 1451 | |
| 1452 | array: np.ndarray |
| 1453 | header: dict |
| 1454 | |
| 1455 | |
| 1456 | @require_pkg(pkg_name="nrrd") |
no outgoing calls
no test coverage detected
searching dependent graphs…