aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/ArFeatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze/ArFeatures.py')
-rw-r--r--src/argaze/ArFeatures.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py
index 599b81f..6170f47 100644
--- a/src/argaze/ArFeatures.py
+++ b/src/argaze/ArFeatures.py
@@ -1477,7 +1477,7 @@ class ArCamera(ArFrame):
yield self, super().look(timestamp, gaze_position)
# Lock camera frame exploitation
- super().acquire()
+ self.acquire()
# Project gaze position into each scene frames if possible
for scene_frame in self.scene_frames:
@@ -1505,7 +1505,7 @@ class ArCamera(ArFrame):
pass
# Unlock camera frame exploitation
- super().release()
+ self.release()
def map(self):
"""Project camera frame background into scene frames background.
@@ -1515,7 +1515,7 @@ class ArCamera(ArFrame):
"""
# Lock camera frame exploitation
- super().acquire()
+ self.acquire()
# Project camera frame background into each scene frame if possible
for frame in self.scene_frames:
@@ -1539,7 +1539,7 @@ class ArCamera(ArFrame):
pass
# Unlock camera frame exploitation
- super().release()
+ self.release()
def to_json(self, json_filepath):
"""Save camera to .json file."""