conradfoo
conradfoo
**Is your feature request related to a problem? Please describe.** Currently, if I parse an xarray DataArray into an image container, the coordinates are overwritten with pixel coordinates even if...
When constructing an Image2DModel, the following code will work: ``` from multiscale_spatial_image.to_multiscale.to_multiscale import Methods sdata.images['my_image'] = sd.models.Image2DModel.parse( imarr, dims=['c','y','x'], c_coords=['DAPI','ATP1A1/CD45/E-Cadherin','18S','alphaSMA/Vimentin'], scale_factors=[2,2,2,2,2,2,2,2], method=Methods.XARRAY_COARSEN, chunks=(1,256,256), ) ``` However, the following code will...