terrain_region_mask — 3D terrain op

数据种类:meshsignal

调用: import fullseye as fs; fs.ledger.terrain_region_mask(V, F, *, smooth_fraction: 'float' = 0.3, method: 'str' = 'neck', seed: 'int' = 0) -> 'np.ndarray'(要直接调用实现,import render3d; render3d.terrain_region_mask(V, F, *, smooth_fraction: 'float' = 0.3, method: 'str' = 'neck', seed: 'int' = 0) -> 'np.ndarray';从台账取用则 ops3d.get("terrain_region_mask"))

用法

逐面的地形权重 (M,) ∈ [0,1]:0 = 平滑风化层「海」,1 = 粗糙高地。

> 以下的详细说明为原文 —— 摘要与标题已翻译。

`method='neck'` (default, Itokawa-motivated): the sea is the band of faces around the

narrowest cross-section along the principal (long) axis — MUSES-C Regio sits in the neck

between head and body — widened until it covers `smooth_fraction` of the surface area.

`method='noise'`: low-frequency seeded fBm thresholded at the area-weighted

`smooth_fraction quantile (generic patches). method='slope'`: faces are ranked by

local slope (angle between face normal and the smoothed neighbourhood normal); the

flattest `smooth_fraction` of the area is sea. Deterministic; fail-closed on bad input.

返り値は面ごとの float64 `(M,)` で値は 0 か 1 の二値(中間値は出ない)。手順は

`method` ごとにスコアを 1 つ作り、スコアの小さい面から面積を累積して全面積の

`smooth_fraction` に達するまでを「海」(0)にする。

• `'neck'`: 面重心の面積重み付き主軸(SVD 第 1 成分)に沿って、主軸座標の 20〜80 %

区間を 24 ビンに切り、各ビンの半径 90 percentile が最小のビン中心を「くびれ」とし、

くびれ面からの距離をスコアにする。8 面未満のビンは無視。`seed` は使わない。

• `'noise': 面重心での :func:fbm_noise`(波長 = 境界箱対角 / 3、2 オクターブ、

`seed`)をスコアにする。

• `'slope'`: 面法線と「3 頂点の頂点法線平均」のなす角(ラジアン)をスコアにする。

`seed` は使わない。

`smooth_fraction は [0, 1] (範囲外・非有限は ValueError`)。0 なら全面 1、1 なら

全面 0 を即返す。`method が上記以外なら ValueError`。得た重みは

`mesh_scatter_boulders / sample_bouldersregion_weights` に渡して海に岩を

置かないようにする用途。

参考(示例数据・文献)

• 示例数据目录(下载 URL / 许可证) —— 2-D 用 skimage.data(BSD/公有领域)加合成图,3-D 给出真实数据源(Stanford/PDS 等)的下载 URL。

• 算子来历与参考文献 —— 该算子族所依据的研究/方法出处。

可运行的示例(实际调用该算子并已验证的样例)

itokawa_regolith_heropy -3.11 examples_3d/itokawa_regolith_hero.py

类型可衔接的下一个算子(可接受 signal 作为输入)

fuse_to_voxel

同类别(terrain)

mesh_displace_fbm · mesh_scatter_boulders · mesh_edge_lengths · mesh_subdivide · displacement_band_weights · mesh_displace_spectrum · bump_normals_fbm


*Provenance: render3d.py — 3D 算子登记表。本条目由 tools/opdocs.py md 自动生成(请勿手工编辑)。*

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.