diff options
-rw-r--r-- | src/argaze/AreaOfInterest/AOIFeatures.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/argaze/AreaOfInterest/AOIFeatures.py b/src/argaze/AreaOfInterest/AOIFeatures.py index edcfaf2..a40eaca 100644 --- a/src/argaze/AreaOfInterest/AOIFeatures.py +++ b/src/argaze/AreaOfInterest/AOIFeatures.py @@ -272,7 +272,6 @@ class AOIFrame(): heatmap_gray = (255 * self.__point_spread_sum / numpy.max(self.__point_spread_sum)).astype(numpy.uint8) self.__heatmap_matrix = cv2.applyColorMap(heatmap_gray, cv2.COLORMAP_JET) - @property def heatmap_buffer(self) -> int: """Get size of heatmap buffer.""" @@ -291,7 +290,7 @@ class AOIFrame(): """Get heatmap matrix.""" try: - + return self.__heatmap_matrix except AttributeError: |