From a4f6baf40f1d75a14d346b8a8c4029c3cfbd4607 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 24 Jan 2023 16:52:59 +0100 Subject: Setting precision circle color as position point color --- src/argaze/GazeFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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.""" -- cgit v1.1