This commit is contained in:
Aditya Pulipaka
2026-03-15 15:53:39 -05:00
parent c352144040
commit 8050217abd
15 changed files with 10 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ def generate_launch_description():
# ── 1. Keypoint triangulator (headless) ───────────────────────── # ── 1. Keypoint triangulator (headless) ─────────────────────────
ExecuteProcess( ExecuteProcess(
cmd=[ cmd=[
python_exe, '-m', '3D_tracking_Re-ID.single_person_loc_node', python_exe, '-m', 'tracking_re_id.single_person_loc_node',
'--ros-args', '--ros-args',
'-p', 'threshold:=0.3', '-p', 'threshold:=0.3',
'-p', 'device:=cuda:0', '-p', 'device:=cuda:0',
@@ -42,7 +42,7 @@ def generate_launch_description():
# ── 2. Ground-plane estimator ──────────────────────────────────── # ── 2. Ground-plane estimator ────────────────────────────────────
ExecuteProcess( ExecuteProcess(
cmd=[ cmd=[
python_exe, '-m', '3D_tracking_Re-ID.ground_plane_node', python_exe, '-m', 'tracking_re_id.ground_plane_node',
'--ros-args', '--ros-args',
'-p', 'stable_frames:=5', '-p', 'stable_frames:=5',
'-p', 'stable_radius:=0.05', '-p', 'stable_radius:=0.05',

View File

@@ -20,7 +20,7 @@ def generate_launch_description():
# ── Keypoint triangulator (headless) ──────────────────────────── # ── Keypoint triangulator (headless) ────────────────────────────
ExecuteProcess( ExecuteProcess(
cmd=[ cmd=[
python_exe, '-m', '3D_tracking_Re-ID.single_person_loc_node', python_exe, '-m', 'tracking_re_id.single_person_loc_node',
'--ros-args', '--ros-args',
'-p', 'threshold:=0.3', '-p', 'threshold:=0.3',
'-p', 'device:=cuda:0', '-p', 'device:=cuda:0',
@@ -34,7 +34,7 @@ def generate_launch_description():
# ── Ground-plane estimator ─────────────────────────────────────── # ── Ground-plane estimator ───────────────────────────────────────
ExecuteProcess( ExecuteProcess(
cmd=[ cmd=[
python_exe, '-m', '3D_tracking_Re-ID.ground_plane_node', python_exe, '-m', 'tracking_re_id.ground_plane_node',
'--ros-args', '--ros-args',
# Foot must stay within 15 cm for 5 consecutive frames # Foot must stay within 15 cm for 5 consecutive frames
'-p', 'stable_frames:=5', '-p', 'stable_frames:=5',

View File

@@ -10,7 +10,7 @@ def generate_launch_description():
'~/miniconda3/envs/mmpose/bin/python3' '~/miniconda3/envs/mmpose/bin/python3'
) )
node_module = '3D_tracking_Re-ID.single_person_loc_node' node_module = 'tracking_re_id.single_person_loc_node'
return LaunchDescription([ return LaunchDescription([
ExecuteProcess( ExecuteProcess(

View File

@@ -15,7 +15,7 @@ def generate_launch_description():
'~/miniconda3/envs/mmpose/bin/python3' '~/miniconda3/envs/mmpose/bin/python3'
) )
node_module = '3D_tracking_Re-ID.single_person_loc_node' node_module = 'tracking_re_id.single_person_loc_node'
return LaunchDescription([ return LaunchDescription([
ExecuteProcess( ExecuteProcess(

View File

@@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> <?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3"> <package format="3">
<name>3D_tracking_Re-ID</name> <name>tracking_re_id</name>
<version>0.0.0</version> <version>0.0.0</version>
<description>MMPose keypoint detection on stereo rectified images</description> <description>MMPose keypoint detection on stereo rectified images</description>
<maintainer email="pulipakaa24@outlook.com">sentry</maintainer> <maintainer email="pulipakaa24@outlook.com">sentry</maintainer>

View File

@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
import os import os
from glob import glob from glob import glob
package_name = '3D_tracking_Re-ID' package_name = 'tracking_re_id'
setup( setup(
name=package_name, name=package_name,
@@ -27,8 +27,8 @@ setup(
}, },
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'single_person_loc_node = 3D_tracking_Re-ID.single_person_loc_node:main', 'single_person_loc_node = tracking_re_id.single_person_loc_node:main',
'ground_plane_node = 3D_tracking_Re-ID.ground_plane_node:main', 'ground_plane_node = tracking_re_id.ground_plane_node:main',
], ],
}, },
) )