Skip to content

Advanced Parameters

You can set advanced parameters in the SDK JSON configuration file for more flexible control.

Aerial Triangulation Module

ParameterTypeDefaultDescription
num_featuresint20000Number of feature points extracted per image
grid_countint200Pixel grid count for feature sampling; larger values produce more AT sparse points

Reconstruction Module

ParameterTypeDefaultDescription
min_avali_memory_sizedouble0Minimum available memory for the device; controls tile size and count for tiled reconstruction. 0 uses maximum available memory
fill_water_area_with_AIboolfalseUse machine learning for water-area inpainting [requires ML plugin]
build_overviewbooltrueWhether to build image pyramids for 2D deliverables
cut_frame_2dboolfalseWhether to output 2D deliverables in tiles
cut_frame_widthint5000Pixel width per 2D tile when cut_frame_2d is true
dom_gsddouble0Ground resolution of true orthophoto; 0 means auto-compute. SDK applies a minimum guard; values below the limit are ignored
dom_gsd_min_scale_to_originaldouble0.25Minimum guard: dom_gsd will not exceed original image GSD × this factor
tile_extentionstring".webp"Image format for true orthophoto tiles: .png or .webp
use_gcj02boolfalseConvert orthophoto tiles to GCJ-02 coordinate system
fast_modeboolfalseFaster processing at the cost of some mesh detail
keep_undistort_imagesboolfalseKeep undistorted images after reconstruction (default: do not keep)
remove_small_islandsboolfalseRemove isolated floating components from the 3D model
mesh_decimate_ratiodouble1.0Mesh simplification ratio; smaller values mean more simplification
use_draco_compressionbooltrueEnable Draco vertex compression for 3D Tiles
tex_image_type_3dtilesint03D Tiles texture format: 0=JPEG, 1=WebP
roi_for_2droi-Region of interest for 2D reconstruction. See ROI structure
roi_for_3droi-Region of interest for 3D reconstruction. See ROI structure
roi_coordinate_systemJSONWGS84Coordinate system for ROI. See coordinate system

Important

On Windows, enabling fill_water_area_with_AI requires the machine learning plugin: ML plugin. Extract all DLL files into the same directory as reconstruct_full_engine.

Parameter Structures

roi

An ROI defines a spatial extent with a 2D boundary, min_z, and max_z.

FieldTypeDescription
boundaryarray2D polygon vertices of the ROI boundary
min_zdoubleMinimum elevation of the ROI
max_zdoubleMaximum elevation of the ROI

Example:

json
{
  "boundary": [
    [x1, y1],
    [x2, y2],
    [x3, y3]
  ],
  "min_z": 100.0,
  "max_z": 500.0
}

MipMap Desktop Documentation