-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for new DEPTH16_MM depth mode * Update latest_changes.md * Remove debug settings * Fix issue #660 * Update latest_changes.md * New OD service and topics * New OD parameters handling * Delete c_cpp_properties.json * Delete settings.json * Delete c_cpp_properties.json * Delete settings.json * Add `.vscode` to gitignore * New OD Start service options * Init OD parameters * New OD module working * CLang formatting * Add OD detection max_range * Minor fixes * Fix OD tracking behavior * default OD params
- Loading branch information
Showing
30 changed files
with
5,907 additions
and
5,248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,6 @@ Makefile* | |
# QtCtreator CMake | ||
CMakeLists.txt.user* | ||
|
||
#VSCode | ||
*vscode* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 0 ------- 1 | ||
# | | | ||
# | | | ||
# | | | ||
# 3 ------- 2 | ||
zed_interfaces/Keypoint2Df[4] corners |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 0 ------- 1 | ||
# | | | ||
# | | | ||
# | | | ||
# 3 ------- 2 | ||
zed_interfaces/Keypoint2Di[4] corners |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 1 ------- 2 | ||
# /. /| | ||
# 0 ------- 3 | | ||
# | . | | | ||
# | 5.......| 6 | ||
# |. |/ | ||
# 4 ------- 7 | ||
zed_interfaces/Keypoint3D[8] corners |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
float32[2] kp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
uint32[2] kp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
float32[3] kp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Object label | ||
string label | ||
|
||
# Object label ID | ||
int16 label_id | ||
|
||
# Object sub | ||
string sublabel | ||
|
||
# Object confidence level (1-99) | ||
float32 confidence | ||
|
||
# Object centroid position | ||
float32[3] position | ||
|
||
# Position covariance | ||
float32[6] position_covariance | ||
|
||
# Object velocity | ||
float32[3] velocity | ||
|
||
# Tracking available | ||
bool tracking_available | ||
|
||
# Tracking state | ||
# 0 -> OFF (object not valid) | ||
# 1 -> OK | ||
# 2 -> SEARCHING (occlusion occurred, trajectory is estimated) | ||
int8 tracking_state | ||
|
||
# Action state | ||
# 0 -> IDLE | ||
# 2 -> MOVING | ||
int8 action_state | ||
|
||
# 2D Bounding box projected to Camera image | ||
zed_interfaces/BoundingBox2Di bounding_box_2d | ||
|
||
# 3D Bounding box in world frame | ||
zed_interfaces/BoundingBox3D bounding_box_3d | ||
|
||
# 3D dimensions (width, height, lenght) | ||
float32[3] dimensions_3d | ||
|
||
# Is skeleton available? | ||
bool skeleton_available | ||
|
||
# 2D Bounding box projected to Camera image of the person head | ||
zed_interfaces/BoundingBox2Df head_bounding_box_2d | ||
|
||
# 3D Bounding box in world frame of the person head | ||
zed_interfaces/BoundingBox3D head_bounding_box_3d | ||
|
||
# 3D position of the centroid of the person head | ||
float32[3] head_position | ||
|
||
# 2D Person skeleton projected to Camera image | ||
zed_interfaces/Skeleton2D skeleton_2d | ||
|
||
# 3D Person skeleton in world frame | ||
zed_interfaces/Skeleton3D skeleton_3d |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Standard Header | ||
std_msgs/Header header | ||
|
||
# Array of `object_stamped` topics | ||
zed_interfaces/Object[] objects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Skeleton joints indices | ||
# 16-14 15-17 | ||
# \ / | ||
# 0 | ||
# | | ||
# 2------1------5 | ||
# | | | | | ||
# | | | | | ||
# 3 | | 6 | ||
# | | | | | ||
# | | | | | ||
# 4 8 11 7 | ||
# | | | ||
# | | | ||
# | | | ||
# 9 12 | ||
# | | | ||
# | | | ||
# | | | ||
# 10 13 | ||
zed_interfaces/Keypoint2Df[18] keypoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Skeleton joints indices | ||
# 16-14 15-17 | ||
# \ / | ||
# 0 | ||
# | | ||
# 2------1------5 | ||
# | | | | | ||
# | | | | | ||
# 3 | | 6 | ||
# | | | | | ||
# | | | | | ||
# 4 8 11 7 | ||
# | | | ||
# | | | ||
# | | | ||
# 9 12 | ||
# | | | ||
# | | | ||
# | | | ||
# 10 13 | ||
zed_interfaces/Keypoint3D[18] keypoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,38 @@ | ||
# Starts object detection, if not automatically enabled with the parameter `object_detection/od_enabled` | ||
|
||
# OD Model | ||
# '0': MULTI_CLASS_BOX - '1': MULTI_CLASS_BOX_ACCURATE - '2': HUMAN_BODY_FAST - '3': HUMAN_BODY_ACCURATE | ||
int8 model | ||
|
||
# Minimum Confidence level | ||
float32 confidence | ||
|
||
# MAx detection range | ||
float32 max_range | ||
|
||
# Object tracking | ||
bool tracking | ||
|
||
# Detect people | ||
bool people | ||
# Body Fitting | ||
bool sk_body_fitting | ||
|
||
# Detect people (valid for Multi-class model) | ||
bool mc_people | ||
|
||
# Detect vehicles | ||
bool vehicles | ||
bool mc_vehicles | ||
|
||
# Detect bags | ||
bool mc_bag | ||
|
||
# Detect animals | ||
bool mc_animal | ||
|
||
# Detect electronic devices | ||
bool mc_electronics | ||
|
||
# Detect fruits and vegetables | ||
bool mc_fruit_vegetable | ||
|
||
--- | ||
bool done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.