diff --git a/opencsp/common/lib/cv/annotations/HotspotAnnotation.py b/opencsp/common/lib/cv/annotations/HotspotAnnotation.py index 87c51a2f..e2a08a97 100644 --- a/opencsp/common/lib/cv/annotations/HotspotAnnotation.py +++ b/opencsp/common/lib/cv/annotations/HotspotAnnotation.py @@ -6,7 +6,7 @@ class HotspotAnnotation(PointAnnotations): """ A class representing a hotspot annotation, likely created from a :py:class:`HotspotImageProcessor` instance. - + The hotspot is the overall hottest location in an image, when accounting for the surrounding area. It may be the different from the centroid location or the single hottest pixel location. This class extends the `PointAnnotations` class to create a specific type of annotation diff --git a/opencsp/common/lib/cv/annotations/PointAnnotations.py b/opencsp/common/lib/cv/annotations/PointAnnotations.py index bcbab2c7..2ad0ba7c 100644 --- a/opencsp/common/lib/cv/annotations/PointAnnotations.py +++ b/opencsp/common/lib/cv/annotations/PointAnnotations.py @@ -5,7 +5,7 @@ class PointAnnotations(pf.PointFiducials, AbstractAnnotations): """ A class representing point annotations. - + An example of this class is :py:class:`HotspotAnnotation`. This class extends both `PointFiducials` and `AbstractAnnotations` to provide functionality diff --git a/opencsp/common/lib/cv/spot_analysis/SpotAnalysisOperablesStream.py b/opencsp/common/lib/cv/spot_analysis/SpotAnalysisOperablesStream.py index 2251e765..433d58a4 100644 --- a/opencsp/common/lib/cv/spot_analysis/SpotAnalysisOperablesStream.py +++ b/opencsp/common/lib/cv/spot_analysis/SpotAnalysisOperablesStream.py @@ -46,7 +46,7 @@ def set_defaults(self, default_support_images: dict[ImageType, CacheableImage], This stream can be set up with default values for supporting images or other SpotAnalysisOperable data. If set, then all produced operables will have these default values applied. - + See also :py:meth:`SpotAnalysisOperable.replace_use_default_values` Parameters