Skip to content

Commit 8a8b49b

Browse files
committed
Update dependencies listed in the coffee_vision package
1 parent 1a138b9 commit 8a8b49b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

coffee_ws/src/coffee_vision/package.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44
<name>coffee_vision</name>
55
<version>0.0.0</version>
6-
<description>Computer vision package for camera capture, face detection, and basic visual processing</description>
6+
<description>Computer vision package with camera capture, face detection, and GUI interface</description>
77
<maintainer email="irvsteve@gmail.com">kpatch</maintainer>
88
<license>TODO: License declaration</license>
99

@@ -18,8 +18,9 @@
1818
<depend>python3-opencv</depend>
1919
<depend>python3-numpy</depend>
2020

21-
<!-- Optional computer vision libraries -->
22-
<depend>python3-dlib</depend>
21+
<!-- Qt GUI dependencies -->
22+
<depend>python_qt_binding</depend>
23+
<depend>python3-pyqt5</depend>
2324

2425
<!-- Test dependencies -->
2526
<test_depend>ament_copyright</test_depend>

coffee_ws/src/coffee_vision/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@
1818
'setuptools',
1919
'opencv-python',
2020
'numpy',
21+
'PyQt5',
2122
],
2223
zip_safe=True,
2324
maintainer='kpatch',
2425
maintainer_email='irvsteve@gmail.com',
25-
description='Computer vision package for camera capture, face detection, and basic visual processing',
26+
description='Computer vision package with camera capture, face detection, and GUI interface',
2627
license='TODO: License declaration',
2728
entry_points={
2829
'console_scripts': [
2930
'camera_node = coffee_vision.camera_node:main',
30-
'face_detection_node = coffee_vision.face_detection_node:main',
31+
# 'face_detection_node = coffee_vision.face_detection_node:main',
3132
],
3233
},
3334
)

0 commit comments

Comments
 (0)