-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 📖 Included initial TODOs within code. Starting dev for v0.2.1. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Included experimental abstracted visualization workflow. Removed debug statement from epd_container.cpp. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔥 🔨 Removed completed TODOs for Precision Level 3 Visualize workflow. Modified for common infer_action function call for specified workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Rectified curLabel display in P3 Visualize Workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Transferred experimental visualize function from EasyPerceptionDeployment to EPDContainer class for better unit testing coverage. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔥 Removed deprecated infer_visualize. Code verbosity reduced drastically. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Renamed infer_action for P3 U1 Visualize workflow to just infer. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Surfaced usecase_config activateUseCase function call to level of rclcpp::Node callback, EasyPerceptionDeployment. Ready for optimization in P3 U1 Visualize and Action Workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Combined infer_action and infer_visualize for P2 U0 Visualize workflow. Modified EPDContainer visualize function to accept both P2 and P3 model detection outputs. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔥 🔨 Removed deprecated infer_visualize-concerned functions within P2 workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔥 Removed P2-specific activateUseCase, count and matchColor function calls. Generified usecase_config functions to adapt to both P2 and P3 model detection outputs. Verified with successfull local build. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Changed all instantiation of bboxes from data type float to int to silence intrinsic warnings for better debugging. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Corrected assignment of output_obj instead of result in P2 image callback. Added CHANGELOG.rst. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Attempted fix for failing CI build. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Adhered to ROS2 REP-2004 linting standards. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 📖 Updated copyright year to current. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Expanding EPD::activateUseCase for optimization. Yet to verify. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Removed all instances of inefficient .json file reading within usecase_config.hpp. Code verbosity reduced as well. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Replace infer_visualize call with infer_action for Tracking Visualize workflow. Verified with successful build and manual testing.n Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Renamed infer_action in P2 workflows to infer. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔥 🔨 Removed deprecated infer_visualize from Tracking workflow. Renamed infer_action to generic infer for same Tracking workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Verified replaced of infer_visualize with infer_action within Localization workflow. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Renamed infer_action to infer for Localization workflow. Codestructuring completed. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Adhered codebase to REP-2004 linting standards. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 🔨 Updated default session_config.json and input_image_topic.json. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com> * 📖 🔨 Rectified CHANGELOG.rst for 0.2.0 - Minor release. Signed-off-by: Bey Hao Yun <beyhy94@gmail.com>
- Loading branch information
1 parent
d0b6ceb
commit 19673a9
Showing
48 changed files
with
511 additions
and
1,491 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
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,3 +1,3 @@ | ||
{ | ||
"input_image_topic": "/camera/color/image_raw" | ||
} | ||
"input_image_topic": "/virtual_camera/image_raw" | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"path_to_label_list" : "/home/cardboardvoice/epd_workspace/5_linting_epd_ws/src/easy_perception_deployment/easy_perception_deployment/data/label_list/imagenet_classes.txt", | ||
"path_to_model" : "/home/cardboardvoice/epd_workspace/5_linting_epd_ws/src/easy_perception_deployment/easy_perception_deployment/data/model/squeezenet1.1-7.onnx", | ||
"path_to_label_list" : "./data/label_list/coco_classes.txt", | ||
"path_to_model" : "./data/model/MaskRCNN-10.onnx", | ||
"useCPU" : "CPU", | ||
"visualizeFlag" : "robot" | ||
} | ||
"visualizeFlag" : "visualize" | ||
} |
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
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
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
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
Oops, something went wrong.