You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great projects you have here! I'm interested in how to tile large 360 panorama images for use with mapillary-js.
Are there standard open source toolsets for generating tile pyramids that are easy to hook up to mapillary-js with a data provider? Is the tiling scheme used by GraphDataProvider documented publicly? Does an equirectangular image get converted to a cubemap prior to tiling?
Thanks!
The text was updated successfully, but these errors were encountered:
Are there standard open source toolsets for generating tile pyramids that are easy to hook up to mapillary-js with a data provider?
It is possible to use an image server like loris. An image tiles request from mapillary-js (imageId + zoom level) need to be converted to the relevant tiles for that level and that specific image and each tile needs to specify the loris URLs including the IIIF region. Something along this line was done in an earlier version of mapillary-js.
Is the tiling scheme used by GraphDataProvider documented publicly?
It is not documented publicly as of now. The tiling scheme is similar to 2D map tiling schemes (e.g. Bing tiles) in general and is built as quad tree.
For the lowest level, 0, an image can have a maximum size of 1px x 1px. For level 1 is an image can have a maximum size of 2px x 2px. I use maximum size here because most images are not square so the downsized image may also be rectangular.
The optimal solution here would be to break out the image tiling functionality into an ImageTileProvider concept (like the DataProvider and GeometryProvider). Then anyone could implement the ImageTileProvider interface and define their own tiling scheme, tile size etc.
Great projects you have here! I'm interested in how to tile large 360 panorama images for use with
mapillary-js
.Are there standard open source toolsets for generating tile pyramids that are easy to hook up to mapillary-js with a data provider? Is the tiling scheme used by
GraphDataProvider
documented publicly? Does an equirectangular image get converted to a cubemap prior to tiling?Thanks!
The text was updated successfully, but these errors were encountered: