aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThéo de la Hogue2023-08-30 23:30:45 +0200
committerThéo de la Hogue2023-08-30 23:30:45 +0200
commitbef479cd1df8934b44ac0c264dcbae627db55fb5 (patch)
tree297fec2905ae9df706d5b0babb534982ed9211de /src
parent6ba7d69e36cdae670d49897daa300d371fddfc42 (diff)
downloadargaze-bef479cd1df8934b44ac0c264dcbae627db55fb5.zip
argaze-bef479cd1df8934b44ac0c264dcbae627db55fb5.tar.gz
argaze-bef479cd1df8934b44ac0c264dcbae627db55fb5.tar.bz2
argaze-bef479cd1df8934b44ac0c264dcbae627db55fb5.tar.xz
Returning (None, None) by default.
Diffstat (limited to 'src')
-rw-r--r--src/argaze/GazeAnalysis/DeviationCircleCoverage.py2
-rw-r--r--src/argaze/GazeAnalysis/FocusPointInside.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/GazeAnalysis/DeviationCircleCoverage.py b/src/argaze/GazeAnalysis/DeviationCircleCoverage.py
index 99453d6..b1d4c6a 100644
--- a/src/argaze/GazeAnalysis/DeviationCircleCoverage.py
+++ b/src/argaze/GazeAnalysis/DeviationCircleCoverage.py
@@ -96,7 +96,7 @@ class AOIMatcher(GazeFeatures.AOIMatcher):
self.__post_init__()
- return self.__looked_aoi_data
+ return (None, None)
def draw(self, image: numpy.array, draw_matched_fixation: dict = None, draw_matched_fixation_positions: dict = None, draw_matched_region: dict = None, draw_looked_aoi: dict = None, looked_aoi_name_color: tuple = None, looked_aoi_name_offset: tuple = (0, 0)):
"""Draw matching into image.
diff --git a/src/argaze/GazeAnalysis/FocusPointInside.py b/src/argaze/GazeAnalysis/FocusPointInside.py
index 57c9467..8261869 100644
--- a/src/argaze/GazeAnalysis/FocusPointInside.py
+++ b/src/argaze/GazeAnalysis/FocusPointInside.py
@@ -52,7 +52,7 @@ class AOIMatcher(GazeFeatures.AOIMatcher):
self.__post_init__()
- return self.__looked_aoi_data
+ return (None, None)
def draw(self, image: numpy.array, draw_matched_fixation: dict = None, draw_matched_fixation_positions: dict = None, draw_looked_aoi: dict = None, looked_aoi_name_color: tuple = None, looked_aoi_name_offset: tuple = (0, 0)):
"""Draw matching into image.