diff options
author | Théo de la Hogue | 2023-09-26 13:03:25 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-09-26 13:03:25 +0200 |
commit | 69d9b4d26d2956d65e0c24fe262071b0c4569c90 (patch) | |
tree | dfa1505e8266443edc0eb35b8be70cafd75c58f7 | |
parent | 460069c2f16028ad1da8ae8669b084d6c4100b78 (diff) | |
download | argaze-69d9b4d26d2956d65e0c24fe262071b0c4569c90.zip argaze-69d9b4d26d2956d65e0c24fe262071b0c4569c90.tar.gz argaze-69d9b4d26d2956d65e0c24fe262071b0c4569c90.tar.bz2 argaze-69d9b4d26d2956d65e0c24fe262071b0c4569c90.tar.xz |
Removing drawing fixation positions option from FocusPointInside module.
-rw-r--r-- | src/argaze/GazeAnalysis/FocusPointInside.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/argaze/GazeAnalysis/FocusPointInside.py b/src/argaze/GazeAnalysis/FocusPointInside.py index 88cfbed..24c319e 100644 --- a/src/argaze/GazeAnalysis/FocusPointInside.py +++ b/src/argaze/GazeAnalysis/FocusPointInside.py @@ -76,11 +76,6 @@ class AOIMatcher(GazeFeatures.AOIMatcher): self.__matched_gaze_movement.draw(image, **draw_matched_fixation) - # Draw matched fixation positions if required - if draw_matched_fixation_positions is not None: - - self.__matched_gaze_movement.draw_positions(image, **draw_matched_fixation_positions) - # Draw matched aoi if self.looked_aoi.all() is not None: |