volume opvoxel → sinostackimport fullseye as fs; fs.ledger.radon_volume(volume, angles_deg=None, n_detectors=None, oversample=1) (実装を直接呼ぶなら import tomography; tomography.radon_volume(volume, angles_deg=None, n_detectors=None, oversample=1)、台帳から引くなら opstomography.get("radon_volume"))Project every slice of a (Z, H, W) volume -> a (Z, A, D) stack.
Parallel-beam geometry with the rotation axis along Z, which is the case
where the 3-D problem really is a stack of independent 2-D ones — each slice
projects into its own sinogram and nothing crosses between them. (A cone beam
does not have this property and is not implemented; saying so is cheaper than
a wrong FDK.)
The output’s axis order is (slice, angle, detector) so that stack[k]
is a sinogram in this module’s own convention and every 2-D operator here
applies to it unchanged.
:param volume: (Z, H, W) float volume, Z >= 1.
:param angles_deg: view angles; None -> uniform [0, 180), 180 views.
:param n_detectors: bins; None -> covers the in-plane diagonal.
:param oversample: ray samples per pixel, 1 .. 8.
:returns: (Z, n_angles, n_detectors) float64 stack.
:raises ValueError: on a non-3-D input or a stack over
:data:MAX_STACK_ELEMENTS.
py -3.11 examples/poc_battery_ct_degradation.pypy -3.11 examples/tomography_reconstruct.pysinostack を入力に取れる)volume)Provenance: tomography.py — TOMOGRAPHY operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.