vvoovv / blosm

Blosm addon for Blender. A few clicks import of Google 3D cities, OpenStreetMap, terrain. Global coverage. Source code is in the branch 'release'.
1.59k stars 188 forks source link

OGC 3D Tiles support #497

Open vvoovv opened 5 months ago

vvoovv commented 5 months ago

This issue is used to track everything related to OGC 3D Tiles support in Blender.

A table with existing OGC 3D Tiles data sets is maintained at #498.

vvoovv commented 5 months ago

The first task is to load files with the extension b3dm into Blender. There is no built-in importer for them in Blender.

Google 3D Tiles use files with the externsion glb which can be loaded by Blender's built-in glTF importer.

An example b3dm file from the Aarhus data set: Tile_69_L18_00110.zip. Unzip it first.

jo-chemla commented 5 months ago

Quick comment, b3dm is the ancestor version of OGC/Cesium 3D-tiles spec (the tiled mesh pendant of 3d-tiles, similar to pnts for tiled pointclouds, i3dm for instances and cmpt for composite) - see the release post introducing 3d-tiles next now 3d-tiles 1.1 spec - also see version history. So if you can read Google Photorealistic Cities, you already read OGC/3D-tiles 1.1 format.

CesiumGS/3d-tiles-tools and donmccurdy/glTF-Transform are useful tooling to convert and upgrade tilesets from the 1.0 version to the newest 1.1 version - but it usually requires processing the whole tileset, not meant for on-the-fly conversion. Although these are js packages, so you could use some of the underlying methods rather than using the CLI.

A long discussion here discusses whether the portion to merge tiles of a tileset to a single mesh should be part of 3d-tiles-tools or belong somewhere else. Also, donmccurdy was thinking about integrating 3d-tiles IO tooling to gltf-transform, see discussion here. Hope this is useful!

vvoovv commented 5 months ago

Batched 3D Model (b3dm) was deprecated in 3D Tiles 1.1. See b3dm migration guide. From here.

image

vvoovv commented 5 months ago

An example b3dm file from the Aarhus data set: Tile_69_L18_00110.zip. Unzip it first.

The following code does convert the attached file Tile_69_L18_00110.b3dm to the glb format which Blender's glTF built-in addon can import.

The package py3dtiles is required:

pip install py3dtiles
from pathlib import Path

from py3dtiles.tileset.content import read_binary_tile_content

# input file
b3dmFile = "Tile_69_L18_00110.b3dm"
# output file
glbFile = "Tile_69_L18_00110.glb"

b3dm = read_binary_tile_content(Path(b3dmFile))
gltf = b3dm.body.gltf
with Path(glbFile).open('wb') as f:
    f.write(gltf.to_array())
vvoovv commented 5 months ago

Neither py3dtiles nor the online viewer https://www.3dpea.com/en/view-B3DM-online can process b3dm files from the Helsinki data set.

vvoovv commented 5 months ago

The following code does convert the attached file Tile_69_L18_00110.b3dm to the glb format which Blender's glTF built-in addon can import.

That code generates a glb file positioned at the origin. However it must be positioned somewhere on the Earth surface as it is the case with the Google 3D Tiles in the glb format.

I've found how to achieve that, so 3D tiles in both glb and b3dm formats can be processed in the same way by the Blosm addon.

from pathlib import Path

from py3dtiles.tileset.content import read_binary_tile_content

# input file
b3dmFile = Tile_69_L18_00110.b3dm"
# output file
glbFile = b3dmFile[:-4] + "glb"

b3dm = read_binary_tile_content(Path(b3dmFile))
gltf = b3dm.body.gltf
rtc_center = b3dm.body.feature_table.header.data.get("RTC_CENTER")
if rtc_center:
    gltf.header["nodes"] = [
        {'mesh': 0, 'translation': [rtc_center[0], rtc_center[2], -rtc_center[1]]}
    ]
with Path(glbFile).open('wb') as f:
    f.write(gltf.to_array())
vvoovv commented 4 months ago

A new GUI:

image

vvoovv commented 4 months ago

I added a stripped off package py3dtiles to blosm/threed_tiles. The package py3dtiles is required to read a b3dm file and save it as a glb file.

Below is the description of what was modified in the package py3dtiles (version 7.0.0 downloaded from here).

jo-chemla commented 4 months ago

Nice to see that custom tileset url within the UI! Will this work - in the end - only with version 1.0 3D-tiles tilesets (with tiles stored as b3dm) or also with 1.1 3D-Tiles (where tiles are actually glb)?

vvoovv commented 4 months ago

@jo-chemla

Both glb and b3dm tiles will be supported, as long as the resulting glb files can be imported by Blender's glTF importer.

vvoovv commented 4 months ago

I was able to import some data sets:

image

image

I've been relying on the parameter geometricError to import a specific Level of Details. However the scales of this parameter are different in Google 3D Tiles and the above data sets. This has to be reconsidered.

The bounding volume is defined by a box in the Google 3D Tiles, while it's defined by a sphere in the above data sets. The intersection test of a box and a sphere also needs more attention.

luccagandra commented 2 months ago

I'm trying to import NASA AMMOS's b3dm tile "https://raw.githubusercontent.com/NASA-AMMOS/3DTilesSampleData/master/msl-dingo-gap/0528_0260184_to_s64o256_colorize/0528_0260184_to_s64o256_colorize/0528_0260184_to_s64o256_colorize_tileset.json", but I'm getting the error 'BaseManager' object has no attribute 'setGeometricErrorRange'. Do you know how can I approach this problem?

vvoovv commented 2 months ago

Hi @luccagandra

Import OGC is not yet available in the release version of the Blosm addon. The remaining think is implement checking if a sphere and a box intersect.

What is that data about?

vvoovv commented 2 months ago

I think the feature is ready to be released.

Aarhus:

image


Helsinki:

image

vvoovv commented 2 months ago

The scale of the geometric error is different from the one in Google 3D Tiles. I ended up entering it as a number.

The smaller the geometric error, the more detailed the imported scene will be. The first tile in the tileset's tree of tiles with the geometric error equal or less than the given one, will be imported.

To get a more detailed scene, the current value of the geometric error can be divided by two.

vvoovv commented 2 months ago

It's a pity that only 2 public data sets (Aarhus and Helsinki) are known at the moment. The data sets by Aerometrex are for a demonstration and of a low resolution.

jo-chemla commented 2 months ago

🚀 Impressive feature to allow importing of arbitrary tileset! Just added a few more open-data tileset.json to the other thread in case you want to try them out.

vvoovv commented 2 months ago

Just added a few more open-data tileset.json to the other thread in case you want to try them out.

The Blosm can not import any of them due to some features of the 3D Tiles specification that are not present in Google 3D Tiles and other data sets tested so far. Namely:

The task for now is to implement those missing features.

jo-chemla commented 2 months ago

The whole 3D-tiles spec is pretty complex, these are probably additions that you can bring forward in future iterations of your implementation:

vvoovv commented 1 month ago

the value region for the attribute boundingVolume

This feature is implemented. The remaining feature to be implemented is the attribute transform.


image

jo-chemla commented 1 month ago

Really impressive work, congrats on your implementation!

Also looks like this is laying groundwork for a potential real-time implementation, like domlysz/BlenderGIS does for 2d tiles tms streaming

In that event, 3DTilesRendererJS, loadersgl and cesiumjs are great reference js implementations for selection of which tiles to load given a viewport.

vvoovv commented 1 month ago

The current implementation is now released publicly. Install the version 2.7.9 of the addon.

vvoovv commented 1 month ago

Also looks like this is laying groundwork for a potential real-time implementation

@jo-chemla What you use-cases do you see for this interactive viewing experience?

softyoda commented 1 month ago

If I may respond, as a 3D graphic designer and not a developer, I think the addition of an "interactive" viewer (similar to Google Earth) could be a significant advantage in content creation, to move beyond the beaten paths of Google Earth Studio, and far beyond that, the uses are multiple. @jo-chemla has already opened a proposal on blender.community.

The support of an IO viewer (viewport as well as render) that has the ability to load tiles of certain detail levels (depending of pixel-projection-error) would have a real advantage, whether it's streamed data cached for rendering/preview, or data that would load more quickly from an NVMe drive. This would finally allow Blender to enter the competition of loading large scenes that were previously impossible (Blender limited between 10M and 100M poly depending on the hardware) where only Unreal Engine 5 or Clarisse IFX (or other internal software in large studios) have the capacity to render larger scenes.

I think that from my point of view, this greatly limits Blender's ability to cope with the multiple and varied uses sometimes required. Photogrammetry is almost inaccessible to Blender outside of scenes worked on and optimized only for a camera point of view (which greatly increases work friction and prevents the creative freedoms offered by new rendering engines with acceleration structures allowing the display of large content (via LOD/HLOD, Clusterized-decimation, virtual-texture and meshes, etc.)

I think having ways to load tiles from point of view (with/without frustum depending on if panoramic camera or else) would really help. WCCFunrealengine52