summaryrefslogtreecommitdiff
path: root/plugins/motion_capture
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/motion_capture')
-rw-r--r--plugins/motion_capture/manifest.json2
-rw-r--r--plugins/motion_capture/plugin.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/motion_capture/manifest.json b/plugins/motion_capture/manifest.json
index f1f10ce..59e5d02 100644
--- a/plugins/motion_capture/manifest.json
+++ b/plugins/motion_capture/manifest.json
@@ -3,7 +3,7 @@
"name": "Motion Capture",
"version": "1.0.0",
"description": "Track a point via webcam and stream x/y position as live signals. Apply pixel_to_mm filter to convert to real-world units.",
- "author": "LabDAQ",
+ "author": "LabUI",
"entry_point": "plugin.MotionCapturePlugin",
"requires": ["opencv-python>=4.8.0"]
}
diff --git a/plugins/motion_capture/plugin.py b/plugins/motion_capture/plugin.py
index 9cf9557..d6ca2b3 100644
--- a/plugins/motion_capture/plugin.py
+++ b/plugins/motion_capture/plugin.py
@@ -1,7 +1,7 @@
"""
motion_capture/plugin.py
-LabDAQ Motion Capture plugin.
+LabUI Motion Capture plugin.
When enabled, adds a "Camera" device type to the Add Device dialog.
Each camera added by the user becomes a first-class device in the
@@ -44,7 +44,7 @@ class MotionCapturePlugin(LabPlugin):
)
@property
- def author(self) -> str: return "LabDAQ"
+ def author(self) -> str: return "LabUI"
# ── Lifecycle ─────────────────────────────────────────────────────────