Skip to content

Commit 17ba9ff

Browse files
committed
update 0.3.0
1 parent b406063 commit 17ba9ff

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Check [GitHub Wiki](https://github.com/Ar-Ray-code/YOLOX-ROS/wiki/YOLOX-ROS---Ra
3232
- OpenCV 4
3333
- Python 3.8 (Ubuntu 20.04 Default)
3434
- PyTorch >= v1.7
35-
- [YOLOX v0.2.0](https://github.com/Megvii-BaseDetection/YOLOX)
35+
- [YOLOX v0.3.0](https://github.com/Megvii-BaseDetection/YOLOX)
3636
- [bbox_ex_msgs](https://github.com/Ar-Ray-code/bbox_ex_msgs)
3737

3838
## Installation
@@ -50,15 +50,15 @@ git clone https://github.com/Ar-Ray-code/yolox_ros.git --recursive
5050
### STEP 2 : YOLOX Installation (yolox_rps_py)
5151

5252
```bash
53-
bash YOLOX-ROS/yolox_ros_py/install_yolox_py.bash
53+
pip3 install yolox
5454
```
5555

5656
### STEP 3 : Install YOLOX-ROS
5757

5858
```bash
5959
source /opt/ros/foxy/setup.bash
6060
sudo apt install ros-foxy-v4l2-camera
61-
colcon build --symlink-install # weights files will be installed automatically.
61+
colcon build --symlink-install # weights (YOLOX-Nano) files will be installed automatically.
6262
```
6363

6464
### (Step 3) Using CUDA
@@ -78,8 +78,13 @@ Connect your web camera.
7878
```bash
7979
source /opt/ros/foxy/setup.bash
8080
source ~/ros2_ws/install/local_setup.bash
81-
ros2 launch yolox_ros_py yolox_s_cpu.launch.py
82-
# ros2 launch yolox_ros_py yolox_s.launch.py # <- GPU
81+
ros2 launch yolox_ros_py yolox_nano_cpu.launch.py
82+
# ros2 launch yolox_ros_py yolox_nano.launch.py # <- GPU
83+
# ros2 launch yolox_ros_py yolox_nano_onnx.launch.py # <- ONNXRuntime
84+
85+
# OpenVINO ---
86+
# source /opt/intel/openvino_2021/bin/setupvars.sh
87+
# ros2 launch yolox_ros_py yolox_nano_openvino.launch.py # <- OpenVINO
8388
```
8489

8590
</details>

yolox_ros_py/install_yolox_py.bash

Lines changed: 0 additions & 1 deletion
This file was deleted.

yolox_ros_py/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>yolox_ros_py</name>
5-
<version>0.2.1</version>
5+
<version>0.3.0</version>
66
<description>The yolox_ros_py package</description>
77
<maintainer email="[email protected]">Ar-Ray-code</maintainer>
88
<license>Apache License, Version 2.0</license>

yolox_ros_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
setup(
6969
name=package_name,
70-
version='0.2.0',
70+
version='0.3.0',
7171
packages=[package_name],
7272
data_files=[
7373
('share/ament_index/resource_index/packages',

yolox_ros_py/yolox_ros_py/yolox_ros.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@ def __init__(self) -> None:
117117
super().__init__('yolox_ros')
118118

119119
self.setting_yolox_exp()
120-
121-
# if (self.imshow_isshow):
122-
# cv2.namedWindow("YOLOX")
123120

124121
self.bridge = CvBridge()
125122

0 commit comments

Comments
 (0)