diff options
-rw-r--r-- | src/argaze/GazeFeatures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/argaze/GazeFeatures.py b/src/argaze/GazeFeatures.py index 2b5cdde..2a0096c 100644 --- a/src/argaze/GazeFeatures.py +++ b/src/argaze/GazeFeatures.py @@ -79,7 +79,7 @@ class GazePosition(): # Draw precision circle if self.precision > 0 and draw_precision: - cv.circle(frame, int_value, round(self.precision), color_precision, 1) + cv.circle(frame, int_value, round(self.precision), color, 1) class UnvalidGazePosition(GazePosition): """Unvalid gaze position.""" |