|
| | xBin = Field(dtype=float, default=128, doc="Bin size in x") |
| |
| | yBin = Field(dtype=float, default=128, doc="Bin size in y") |
| |
| | minFrac = Field(dtype=float, default=0.1, doc="Minimum fraction of bin size for good measurement") |
| |
| | mask |
| |
| | interpolation |
| |
| | doSmooth = Field(dtype=bool, default=False, doc="Do smoothing?") |
| |
| | smoothScale = Field(dtype=float, default=2.0, doc="Smoothing scale, as a multiple of the bin size") |
| |
| | binning = Field(dtype=int, default=64, doc="Binning to use for warp background model (pixels)") |
| |
Configuration for TractBackground
Parameters `xBin` and `yBin` are in pixels, as translation from warps to
tract and back only requires geometric transformations in the warped pixel
plane.
Definition at line 39 of file tractBackground.py.