bundles / skimage 0.26.1rc0.dev0+git20260530.b607368ff / skimage / transform / radon_transform / order_angles_golden_ratio
function
skimage.transform.radon_transform:order_angles_golden_ratio
source: /dev/scikit-image/src/skimage/transform/radon_transform.py :326
Signature
def order_angles_golden_ratio ( theta ) Summary
Order angles to reduce the amount of correlated information in subsequent projections.
Parameters
theta: ndarray of dtype float and shape (M,)Projection angles in degrees. Duplicate angles are not allowed.
Yields
indices: np.intpIndices into
thetasuch thattheta[indices]gives the approximate golden ratio ordering of the projections. In total,len(theta)indices are yielded. All non-negative integers <len(theta)are yielded exactly once.
Notes
The method used here is that of the golden ratio introduced by T. Kohler.
Aliases
-
skimage.transform.order_angles_golden_ratio