aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/utils/contexts/OpenCV.py
blob: 5a35fba5fc44195c91d203d97ab453861bfe3985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""Define OpenCV window display context

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
"""

__author__ = "Théo de la Hogue"
__credits__ = []
__copyright__ = "Copyright 2023, Ecole Nationale de l'Aviation Civile (ENAC)"
__license__ = "GPLv3"

import sys
import logging
import time

from argaze import ArFeatures, DataFeatures, GazeFeatures
from argaze.utils import UtilsFeatures

import numpy
import cv2

class Window(ArFeatures.ArContext):

	@DataFeatures.PipelineStepInit
	def __init__(self, **kwargs):

		# Init parent classes
		super().__init__()

	@DataFeatures.PipelineStepEnter
	def __enter__(self):

		logging.info('OpenCV context starts...')

		# Create a window to display context
		cv2.namedWindow(self.name, cv2.WINDOW_AUTOSIZE)

		# Init timestamp
		self.__start_time = time.time()

		# Attach mouse event callback to window
		cv2.setMouseCallback(self.name, self.__on_mouse_event)
		
		return self

	def __on_mouse_event(self, event, x, y, flags, param):
		"""Process pointer position."""

		logging.debug('Window.on_mouse_event %i %i', x, y)

		# Process timestamped gaze position
		self._process_gaze_position(
			timestamp = int((time.time() - self.__start_time) * 1e3),
			x = x,
			y = y)