Headings

Heading 1

Heading 2

Heading 3


Alerts

Several alerts.

Success: Your changes were saved successfully!

Info: You can update your profile in the settings page.

Warning: Proceed with caution!

Danger: This will permanently delete your account.

Note: This feature is in beta.


Code

Markdown code snippet

#!/usr/bin/env python3
import open3d as o3d
import copy
import numpy as np

HTML code snippet

This is done using highlight.js library.

main.py

#!/usr/bin/env python3
import open3d as o3d
import copy
import numpy as np
from pathlib import Path


# ============================================================
# Configuration
# ============================================================

INPUT_PLY = Path("../DATA/point-cloud.ply")
OUTPUT_DIR = Path("../RESULTS")
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)

VOXEL_SIZE = 0.01
OUTLIER_NB_NEIGHBORS = 30
OUTLIER_STD_RATIO = 2.0

NORMAL_RADIUS_MULT = 15
NORMAL_MAX_NN = 50
NORMAL_ORIENT_K = 50

POISSON_DEPTH = 9
POISSON_SCALE = 1.1
POISSON_DENSITY_QUANTILE = 0.05

LOD_TARGETS = [100_000, 50_000, 10_000]


print("Meshing complete")