File tree Expand file tree Collapse file tree
autoarray/inversion/mesh/mesh Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,6 +33,18 @@ def __init__(
3333
3434 Coordinates on the ``source_plane_data_grid`` are therefore given higher weights when paired with Delaunay
3535 triangle corners they are a closer distance to.
36+
37+ Parameters
38+ ----------
39+ pixels : int
40+ The number of Delaunay pixels to use before accounting for any zeroed pixels. The total number of
41+ pixels in the mesh is ``pixels + zeroed_pixels``.
42+ areas_factor : float, optional
43+ A scaling factor used when computing pixel areas for the mesh. Defaults to ``0.5``.
44+ zeroed_pixels : int, optional
45+ The number of additional pixels to allocate that are treated as zeroed / inactive when using the mesh.
46+ These pixels increase the total mesh size to ``pixels + zeroed_pixels`` but are not expected to
47+ contribute to the reconstructed signal. Defaults to ``0``.
3648 """
3749
3850 pixels = int (pixels ) + zeroed_pixels
You can’t perform that action at this time.
0 commit comments