Features
Key Features
Auto Meshing

Automated Meshing

  • Complete simple, automated workflows for scan to 3D textured mesh.

  • Works with SLAM scans, TLS scans, Mobile Mapping scans

    • Moving objects filter
    • High quality geometry (from point cloud) & texture (from imagery)
    • Parallel computation in cloud
  • Stream & Export

Supermesh

HxDR enables creation of super mesh by fusing reality capture data from different platforms such as aerial, street level and generating high quality optimized datasets. Various Hexagon technologies such as object removal from point clouds, texture optimization in images, vegetation classification, color balance, the geometry, the textures all align nicely and generate a ‘calm city feel’ with minimized artifacts from moving objects or from reflections.

This Supermesh allows new use cases for smart cities like road construction planning, event management, administration, public safety.

Related Pages

GraphQL API reference

This section lists a few examples. Please refer to HxDR GraphQL Playground (opens in a new tab) to explore complete schema.


Manually trigger the meshing pipeline v2 Input: TriggerMeshingInput where grouped assetUUID and ScanningDeviceType are required.

mutation TriggerMeshingV2 {
  triggerMeshingV2(
    params: {
      groupedAssetId: "[groupedAssetId]"
      vegetation: "[vegetation]"
      autoCleaning: "[autoCleaning]"
      scanningDeviceType: "[scanningDeviceType]"
    }
  ) {
    ... on TriggerProcessingOutput {
      success
    }
    ... on ProcessingErrorOperationNotAllowedOutput {
      message
    }
  }
}

A GroupedAsset is a symbolic link to the underneath Asset and the files connected to it. Every grouped asset gets an ID, when it is created. This groupedAssetId variable is used in various asset related API calls.

In the example above, along with the groupedAssetId, additional parameters needs to be specified.

vegetation is a boolean value which you can mark True or False depending upon if your scans have vegetation or not.

autoCleaning is also a boolean value which you can specify if you need auto cleaning such as "moving objects filter" while generating your mesh.

scanningDeviceType corresponds to the enumeration which allows you to select your sensor model which can be either Hexagon geosystems BLK and RTC family sensors or you can select "GENERIC" type as well. Please search for more details on the API at HxDR GraphQL Playground (opens in a new tab).

To successfully execute a request on HxDR GraphQL playground, See following :


JS-SDK reference

  • Automeshing

    Automeshing services