vol_edge_probe — 3D probe op

数据种类:voxeltable

调用: import fullseye as fs; fs.ledger.vol_edge_probe(vol, p0, p1, sigma=1.0, threshold=0.1, spacing=None, polarity='all')(要直接调用实现,import volprobe; volprobe.vol_edge_probe(vol, p0, p1, sigma=1.0, threshold=0.1, spacing=None, polarity='all');从台账取用则 ops3d.get("vol_edge_probe"))

用法

沿探针 `p0 -> p1` 以亚采样精度定位边缘。

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

The profile (default sampling of :func:vol_profile_line) is smoothed

with a 1-D Gaussian of `sigma` samples, differentiated with respect

to the physical abscissa `t_mm`, and local extrema of the derivative

magnitude are taken as edges. Each is refined to sub-sample precision by a

3-point parabolic fit; plateau twins closer than 1.5 samples are merged.

`threshold` is an absolute derivative amplitude in intensity per

physical distance unit (per mm when `spacing` is given, per voxel

otherwise) — edges with `|d gray / d t| < threshold` at the peak are

discarded. It is *not* relative to the profile's own maximum: choose it

for your data's intensity range and spacing.

`polarity selects "positive"` (rising, dark -> bright along the

probe), `"negative" (falling) or "all"`.

Returns a list of dicts ordered by distance, each::

{"t_mm": physical distance of the edge from p0,

"position": (z, y, x) interpolated voxel coordinate of the edge,

"amplitude": |d gray / d t| at the peak (intensity / distance unit),

"polarity": +1 rising, -1 falling}

Raises `ValueError` on the same malformed inputs as

:func:vol_profile_line, a negative / non-finite `sigma` or

`threshold, or an unknown polarity`.

参考(示例数据・文献)

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

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

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

wall_thickness_probepy -3.11 examples_3d/wall_thickness_probe.py

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

fuse_to_voxel · mesh_select_lod

同类别(probe)

vol_profile_line · vol_wall_thickness


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

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