Source code for pyAPIC.core.parameters
from dataclasses import dataclass
[docs]
@dataclass
class ReconParams:
"""
Parameters for phase reconstruction.
Attributes:
reconstruct_aberration: Whether to perform aberration reconstruction.
stitch_method: Method used to stitch the Fourier patches ("average" or
"nearest").
"""
reconstruct_aberration: bool = False
stitch_method: str = "average"