updates
This commit is contained in:
@@ -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',
|
||||||
@@ -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',
|
||||||
@@ -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(
|
||||||
@@ -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(
|
||||||
@@ -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>
|
||||||
@@ -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',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
0
tracking_re_id/tracking_re_id/__init__.py
Normal file
0
tracking_re_id/tracking_re_id/__init__.py
Normal file
Reference in New Issue
Block a user