CentroidDefault#
- class lsst.ts.wep.centroid.CentroidDefault#
Bases:
objectDefault Centroid class.
Methods Summary
getCenterAndR(imgDonut, **kwargs)Get the centroid data and effective weighting radius.
getCenterAndRfromImgBinary(imgBinary, **kwargs)Get the centroid data and effective weighting radius from the binary image.
getImgBinary(imgDonut)Get the binary image.
Methods Documentation
- getCenterAndR(imgDonut, **kwargs)#
Get the centroid data and effective weighting radius.
- getCenterAndRfromImgBinary(imgBinary, **kwargs)#
Get the centroid data and effective weighting radius from the binary image.
- getImgBinary(imgDonut)#
Get the binary image.
- Parameters:
imgDonut (numpy.ndarray) – Donut image to do the analysis.
- Returns:
Binary image of donut.
- Return type:
numpy.ndarray [int]
- Raises:
NotImplementedError – Child class should implement this.