You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 12, 2024. It is now read-only.
* Modified the node to enable building code using catkin_make
* made the requested changes to the CMakeLists.txt and deleted the config files since they are no longer required
* minor changes to the readme file
* Added support to run trained onnx models from customvision.ai
* Deleting onnx model
* updated readme
* adding dynamic reconfigure to switch onnx models at runtime
* deleting redundant headers from main.cpp
* moved the anchors to a yaml file and updated the readme
* updated the readme
* updating to onnx runtime version 1.7.0 for cpu and 1.7.1 for gpu
* Updates to readme and camera node selection based on OS. (#17)
* Updates to readme and camera node selection based on OS.
* removed the engine block stl and added instructions to download.
* Updated date.
* README fixes for Linux
* c_str to fix build error on linux.
* Fixed link in README
* Made path to STL explicit in README.
* Switched to OTL cv_camera for linux and formatted link in README
* Modified the node to enable building code using catkin_make
* made the requested changes to the CMakeLists.txt and deleted the config files since they are no longer required
* minor changes to the readme file
* Added support to run trained onnx models from customvision.ai
* Deleting onnx model
* updated readme
* adding dynamic reconfigure to switch onnx models at runtime
* deleting redundant headers from main.cpp
* moved the anchors to a yaml file and updated the readme
* updated the readme
* updating to onnx runtime version 1.7.0 for cpu and 1.7.1 for gpu
* rebased with the latest commit, made changes in a few files
Co-authored-by: Pranav Dhulipala <[email protected]>
Co-authored-by: Lior Lustgarten <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+29-50Lines changed: 29 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,10 +61,10 @@ catkin_make -DCUDA_SUPPORT=ON
61
61
62
62
## Running the samples
63
63
There are two launch files included as samples in the launch folder.
64
-
An object tracking demo and a deep pose detection demo.
64
+
An object tracking demo and a deep pose detection demo.
65
65
66
-
### Person Tracker Demo
67
-
`tracker.launch` demonstrates tracking people in images/video.
66
+
### Object Tracker Demo
67
+
`tracker.launch` demonstrates tracking of up to 20 classes icluding people in images/video.
68
68
69
69
To run the person tracking detection demo, source the workspace and then roslaunch the launch file.
70
70
@@ -78,6 +78,15 @@ In another command prompt or terminal, run rviz and add the `/tracked_objects/im
78
78
rosrun rviz rviz
79
79
```
80
80
81
+
For a project trained using customvision.ai at runtime you can change the parameters using rqt_reconfigure.
82
+
83
+
```Batchfile
84
+
rosrun rqt_reconfigure rqt_reconfigure
85
+
```
86
+
Please follow this order, start by placing the files of interest i.e. the onnx model(.onnx) file and labels.txt obtained from the relevant onnx zip file downloaded from customvision.ai to `ros_msft_onnx/testdata/` or a known location. Change the anchor values in the cfg/anchors.yaml file by commenting the first line and uncommenting the second line, finally update `input_node_name` to "data", `output_node_name` to "model_outputs0" and update any other relevant parameters shown below:
0 commit comments