From b1c5eaa9974d91263083ea457b65ad60c20cca85 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 24 May 2023 19:05:04 +0200 Subject: removing useless line --- src/argaze/AreaOfInterest/AOIFeatures.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') 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: -- cgit v1.1