Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an investigation into supporting overlays of multiple images in vizarr, with the support of coordinateTransformations to allow relative positioning and scaling.
Test at https://deploy-preview-259--vizarr.netlify.app/?source=https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.4/idr0101A/13457537.zarr&source=https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.4/idr0101A/13457227.zarr
Multiple
source
query parameters are supported for loading multiple images: `?source=url1&source=url2E.g. using the sample images from idr0101: https://ome.github.io/ome-ngff-validator/?source=https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.4/idr0101A/13457537.zarr and https://ome.github.io/ome-ngff-validator/?source=https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.4/idr0101A/13457227.zarr which have
scale
andtransform
metadata, we can see them overlaid as expected.If there is any matrix specified in the URL e.g.
&model_matrix=[0.5403023058681398,0.8414709848078965,0,0,-0.8414709848078965,0.5403023058681398,0,0,0,0,1,0,0,0,0,1]
, thecoordinateTransformations
are applied on top of this.A couple questions/issues:
addImage()
calls happend asynchronously, we can't reliably control which image appears "on top" of the other. Refreshing the page can lead to the images displayed in different orders.In the example you can see that the smaller image has fewer Z sections than the larger one, but it's not possible to "align" them in any way.