aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/PupilFeatures.py
blob: e73176d0c172b11a633908d1af51d073d4816da9 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
""" 

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 <https://www.gnu.org/licenses/>.
"""

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

import math

from argaze import DataFeatures


class PupilDiameter(float, DataFeatures.TimestampedObject):
    """Define pupil diameter as a single float value.

    Parameters:
         value: pupil diameter value.
    """
    def __new__(cls, value: float = math.nan, **kwargs):

        return float.__new__(cls, value)

    def __init__(self, value: float = math.nan, **kwargs):

        super().__init__(**kwargs)

    @property
    def value(self):
        """Get pupil diameter value."""
        return float(self)
    
class TimeStampedPupilDiameters(DataFeatures.TimestampedObjectsList):
    """Handle timestamped pupil diameters into a list."""

    def __init__(self, pupil_diameters: list = []):

        DataFeatures.TimestampedObjectsList.__init__(self, PupilDiameter, pupil_diameters)

class PupilDiameterAnalyzer(DataFeatures.PipelineStepObject):
    """Abstract class to define what should provide a pupil diameter analyser."""

    @DataFeatures.PipelineStepMethod
    def analyze(self, pupil_diameter: PupilDiameter) -> any:
        """Analyze pupil diameter from successive timestamped pupil diameters."""

        raise NotImplementedError('analyze() method not implemented')

    def browse(self, ts_pupil_diameters: TimeStampedPupilDiameters) -> list:
        """Analyze by browsing timestamped pupil diameters.

        Parameters:
            ts_pupil_diameters: list of timestamped pupil diameters.

        Returns:
            ts_analysis: list of (timestamp, analysis).
        """

        assert(type(ts_pupil_diameters) == TimeStampedPupilDiameters)

        # TODO: Have TimestampedDataDictionary and TimestampedDataDictionaryList classes?
        ts_analysis = []

        # Iterate on pupil diameters
        for pupil_diameter in ts_pupil_diameters:

            analysis = self.analyze(pupil_diameter.timestamp, pupil_diameter)

            if analysis is not None:

                ts_analysis.append((pupil_diameter.timestamp, analysis))

        return ts_analysis