forked from maudzung/SFA3D
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b1edb4
commit 93c28cf
Showing
1 changed file
with
25 additions
and
0 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 |
---|---|---|
@@ -1 +1,26 @@ | ||
# ROS Node for Super Fast Accurate 3D object detection | ||
|
||
# installation | ||
|
||
Clone and setup the main python package | ||
``` | ||
git clone https://github.com/maudzung/Super-Fast-Accurate-3D-Object-Detection | ||
cd Super-Fast-Accurate-3D-Object-Detection/ | ||
pip install . | ||
``` | ||
Install dependancies for ROS packages: | ||
``` | ||
sudo apt install ros-melodic-autoware-msgs | ||
``` | ||
# Building Workspace | ||
``` | ||
cd Super-Fast-Accurate-3D-Object-Detection/ros/ | ||
catkin_make | ||
``` | ||
|
||
# Running the node | ||
Run the node by simply after you build the workspace | ||
``` | ||
source devel/setup.bash | ||
rosrun super_fast_object_detection rosInference.py | ||
``` |