-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
360 panorama image tiling #584
Comments
Thanks for the interest in
It is possible to use an image server like loris. An image tiles request from
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 In The best documentation for now is the code in the
No conversion is performed, the equirectangular image is the one that is tiled. Let me know if you want to pursue a solution and I can provide more insight. |
Thanks for the info and links @oscarlorentzon ! |
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: