sep.sum_circann#
- sep.sum_circann(data, x, y, rin, rout, err=None, var=None, mask=None, maskthresh=0.0, seg_id=None, segmap=None, gain=None, subpix=5)#
Sum data in circular annular aperture(s).
- Parameters:
- data
ndarray 2-d array to be summed.
- x, y, rin, routarray_like
Center coordinates and inner and outer radii of aperture(s).
xcorresponds to the second (“fast”) axis of the input array andycorresponds to the first (“slow”) axis.x, y = (0.0, 0.0)corresponds to the center of the first element of the array. These inputs obey numpy broadcasting rules. It is required thatrout >= rin >= 0.0.- err, varfloat or ndarray
Error or variance (specify at most one).
- mask
ndarray, optional Mask array. If supplied, a given pixel is masked if its value is greater than
maskthresh.- maskthreshfloat, optional
Threshold for a pixel to be masked. Default is
0.0.- segmap
ndarray, optional Segmentation image with dimensions of
dataand dtypenp.int32. This is an optional input and corresponds to the segmentation map output byextract.- seg_idarray_like, optional
Array of segmentation ids used to mask additional pixels in the image. Dimensions correspond to the dimensions of
xandy. The behavior differs depending on whetherseg_idis negative or positive. Ifseg_idis positive, all pixels belonging to other objects are masked. (Pixelj, iis masked ifseg[j, i] != seg_id and seg[j, i] != 0). Ifseg_idis negative, all pixels other than those belonging to the object of interest are masked. (Pixelj, iis masked ifseg[j, i] != -seg_id). NB: must be included ifsegmapis provided.- gainfloat, optional
Conversion factor between data array units and poisson counts, used in calculating poisson noise in aperture sum. If
None(default), do not add poisson noise.- subpixint, optional
Subpixel sampling factor. Default is 5.
- data
- Returns: