vol_window_level — 3D gray op

Datenarten: voxelvoxel

Aufruf: import fullseye as fs; fs.ledger.vol_window_level(vol, center, width, out_range=(0.0, 1.0)) (die Implementierung direkt: import volgray; volgray.vol_window_level(vol, center, width, out_range=(0.0, 1.0)); aus dem Register: ops3d.get("vol_window_level"))

Verwendung

CT-Fenster/-Level (HU-Windowing) — die tägliche lineare Umsetzung des Radiologen.

> Die ausführliche Beschreibung unten ist der Originaltext — Zusammenfassung und Überschriften sind übersetzt.

Maps the intensity window `[center - width/2, center + width/2]` linearly

onto *out_range* `(lo, hi); voxels below the window saturate at lo`,

voxels above at `hi` (clipped, by design — that is what a CT window

*does*). A bone window and a soft-tissue window on the same Hounsfield

volume make entirely different structures visible. HALCON analogue:

`scale_image` (the linear part), plus the clip.

Parameters

----------

vol : array_like, shape (D, H, W)

Input volume (coerced to float64; NaN/Inf rejected). Hounsfield units

or any other physical scale — *center* / *width* live on the same scale.

center, width : float

Window centre and full width. `width must be > 0` (fail-closed).

out_range : (float, float)

Output `(lo, hi) with lo < hi. Default (0.0, 1.0)`.

Returns

-------

ndarray, shape (D, H, W), float64

The windowed volume, everywhere inside `[lo, hi]`.

Raises

------

ValueError

Non-3-D / non-finite input, `width <= 0`, or a malformed *out_range*.

Referenzen (Beispieldaten, Literatur)

• Katalog der Beispieldaten (Download-URLs / Lizenzen) — 2-D nutzt skimage.data (BSD/Public Domain) plus synthetische Bilder, 3-D nennt Download-URLs echter Datenquellen (Stanford, PDS, …).

• Herkunft und Literatur der Operatoren — die Quellen der Forschung/Verfahren, auf denen diese Operatorfamilie beruht.

Ausführbare Beispiele (verifizierte Samples, die diesen Operator wirklich aufrufen)

gray_window_levelpy -3.11 examples_3d/gray_window_level.py

Typkompatible Folge-Operatoren (nehmen voxel als Eingabe)

voxel_to_mips · voxel_to_mesh · signed_distance_field · to_points · sobel3d · hessian3d · curvature_maps · edt_jfa

Gleiche Kategorie (gray)

vol_equalize · vol_gamma · vol_stretch


*Provenance: volgray.py — 3D Operator-Registry. Diese Notiz wird von tools/opdocs.py md erzeugt (nicht von Hand bearbeiten).*

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