launchfile and new keypoint fusion method

This commit is contained in:
Aditya Pulipaka
2026-03-04 15:34:57 -06:00
parent 7178ec89a4
commit 36200f010a
6 changed files with 454 additions and 95 deletions

View File

@@ -1,4 +1,6 @@
from setuptools import find_packages, setup
import os
from glob import glob
package_name = 'keypoint_pose'
@@ -10,6 +12,7 @@ setup(
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob('launch/*.py')),
],
install_requires=['setuptools'],
zip_safe=True,