As discussed in the feb. 2021 ngff community call, and following this image.sc thread
The idea is to follow PLY specification to store meshes in ome-zarr. A ply file is organised in:
- a header (translated in the .attrs of the zarr group)
- the points (a zarr.Array)
- for each element (e.g. faces) the list of vertices. Those are group by number of sides, with one zarr.Array per polygon.
There is a draft implementation here: https://github.com/centuri-engineering/ply-zarr
Some questions:
- I don't know how to deal with binary formats
- PLY allows for datatype specification at the column level, how to deal with that in zarr?
As discussed in the feb. 2021 ngff community call, and following this image.sc thread
The idea is to follow PLY specification to store meshes in ome-zarr. A ply file is organised in:
There is a draft implementation here: https://github.com/centuri-engineering/ply-zarr
Some questions: