Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion emioapi/_depthcamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class DepthCamera:
compute_point_cloud = False
position_estimator: PositionEstimation = None
parameter = {}
tracking = True
tracking = False
trackers_pos = []
maskWindow = None
frameWindow = None
Expand Down
1 change: 1 addition & 0 deletions emioapi/emiocamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def track_markers(self, value: bool):
value: bool: The new tracking status.
"""
self._tracking = value
self._camera.tracking = self._tracking

@property
def compute_point_cloud(self) -> bool:
Expand Down
2 changes: 0 additions & 2 deletions emioapi/emiomotors.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ class EmioMotors:
###### METHODS ######
#####################



def __init__(self):
self._lock = Lock()
if not self._initialized:
Expand Down
Loading