Reproducible using the largest czi in the resources directory: ```python from aicsimageio import AICSImage im = AICSImage("s_3_t_1_c_3_z_5.czi") im.data.shape # returns (3, 1, 3, 5, 4029, 5476) ``` It finds the correct `Scene` size but something is wonky about the `Y` and `X`. `Y` should be 325 and `X` should be 475. For comparison here is the output of reading the smallest czi: ```python im = AICSImage("s_1_t_1_c_1_z_1.czi") im.data.shape # returns (1, 1, 1, 1, 325, 475) ```
Reproducible using the largest czi in the resources directory:
It finds the correct
Scenesize but something is wonky about theYandX.Yshould be 325 andXshould be 475.For comparison here is the output of reading the smallest czi: