aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThéo de la Hogue2024-07-10 00:53:33 +0200
committerThéo de la Hogue2024-07-10 00:53:33 +0200
commit8b552b5eb94ddb0491b17ec9c88a4c7c45fdc7c2 (patch)
tree3cd0cab7b849ce6225665d7f94675c47595ca854 /src
parent623cb881135f8eb283aa73b24b3105f17346d1e1 (diff)
downloadargaze-8b552b5eb94ddb0491b17ec9c88a4c7c45fdc7c2.zip
argaze-8b552b5eb94ddb0491b17ec9c88a4c7c45fdc7c2.tar.gz
argaze-8b552b5eb94ddb0491b17ec9c88a4c7c45fdc7c2.tar.bz2
argaze-8b552b5eb94ddb0491b17ec9c88a4c7c45fdc7c2.tar.xz
Removing repetitions in comments and documentation.
Diffstat (limited to 'src')
-rw-r--r--src/argaze/ArFeatures.py2
-rw-r--r--src/argaze/ArUcoMarker/ArUcoMarkerGroup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py
index a36cb94..a8b62df 100644
--- a/src/argaze/ArFeatures.py
+++ b/src/argaze/ArFeatures.py
@@ -344,7 +344,7 @@ class ArLayer(DataFeatures.SharedObject, DataFeatures.PipelineStepObject):
if self.__aoi_matcher is not None and self.__aoi_scene is not None:
- # Update looked aoi thanks to aoi matcher
+ # Update looked aoi with aoi matcher
# Note: don't filter valid/invalid and finished/unfinished fixation/saccade as we don't know how the aoi matcher works internally
self.__looked_aoi_name, _ = self.__aoi_matcher.match(gaze_movement, self.__aoi_scene)
diff --git a/src/argaze/ArUcoMarker/ArUcoMarkerGroup.py b/src/argaze/ArUcoMarker/ArUcoMarkerGroup.py
index 5575cad..8cd8043 100644
--- a/src/argaze/ArUcoMarker/ArUcoMarkerGroup.py
+++ b/src/argaze/ArUcoMarker/ArUcoMarkerGroup.py
@@ -149,7 +149,7 @@ class ArUcoMarkerGroup(DataFeatures.PipelineStepObject):
new_marker = ArUcoMarker.ArUcoMarker(self.__dictionary, identifier, size)
- # Build marker corners thanks to translation vector and rotation matrix
+ # Build marker corners considering translation vector and rotation matrix
place_corners = numpy.array([[-size / 2, size / 2, 0], [size / 2, size / 2, 0], [size / 2, -size / 2, 0], [-size / 2, -size / 2, 0]])
place_corners = place_corners.dot(rmat) + tvec