Skip to content

Commit 5ef5ce5

Browse files
authored
Merge pull request #57 from ROBOTIS-GIT/feature-yolo-example
YOLO Object Detection Package
2 parents ee47678 + 270c78a commit 5ef5ce5

File tree

24 files changed

+440
-18
lines changed

24 files changed

+440
-18
lines changed

turtlebot3_applications/CHANGELOG.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
Changelog for package turtlebot3_applications
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5-
1.2.0(2025-04-25)
5+
1.3.0 (2025-06-04)
6+
------------------
7+
* Added turtlebot3_yolo_object_detection pkg
8+
* Added a Python script that runs the YOLO model on live camera images and publishes detection results with bounding boxes
9+
* Contributors: YeonSoo Noh
10+
11+
1.2.0 (2025-04-25)
612
------------------
713
* Support for ROS 2 Humble version
814
* Added turtlebot3_aruco_tracker pkg

turtlebot3_applications/package.xml

Lines changed: 2 additions & 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>turtlebot3_applications</name>
5-
<version>1.2.0</version>
5+
<version>1.3.0</version>
66
<description>
77
ROS packages for the turtlebot3 applications (meta package)
88
</description>
@@ -26,6 +26,7 @@
2626
<exec_depend>turtlebot3_automatic_parking_vision</exec_depend>
2727
<exec_depend>turtlebot3_follower</exec_depend>
2828
<exec_depend>turtlebot3_panorama</exec_depend>
29+
<exec_depend>turtlebot3_yolo_object_detection</exec_depend>
2930
<export>
3031
<build_type>ament_cmake</build_type>
3132
</export>

turtlebot3_aruco_tracker/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_aruco_tracker
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
1.3.0 (2025-06-04)
6+
------------------
7+
* None
8+
59
1.2.0 (2025-04-25)
610
------------------
711
* Support for ROS 2 Humble version

turtlebot3_aruco_tracker/package.xml

Lines changed: 6 additions & 9 deletions
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>turtlebot3_aruco_tracker</name>
5-
<version>1.2.0</version>
5+
<version>1.3.0</version>
66
<description>
77
ArUco Tracker for TurtleBot3 Examples.
88
</description>
@@ -12,14 +12,11 @@
1212
<url type="repository">https://github.com/ROBOTIS-GIT/turtlebot3_applications</url>
1313
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues</url>
1414
<author email="[email protected]">ChanHyeong Lee</author>
15-
<depend>cv_bridge</depend>
16-
<depend>geometry_msgs</depend>
17-
<depend>python3-numpy</depend>
18-
<depend>python3-opencv</depend>
19-
<depend>python3-scipy</depend>
20-
<depend>rclpy</depend>
21-
<depend>sensor_msgs</depend>
22-
<depend>tf2_ros</depend>
15+
<exec_depend>cv_bridge</exec_depend>
16+
<exec_depend>geometry_msgs</exec_depend>
17+
<exec_depend>rclpy</exec_depend>
18+
<exec_depend>sensor_msgs</exec_depend>
19+
<exec_depend>tf2_ros</exec_depend>
2320
<export>
2421
<build_type>ament_python</build_type>
2522
</export>

turtlebot3_aruco_tracker/setup.py

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

99
setup(
1010
name=package_name,
11-
version='1.2.0',
11+
version='1.3.0',
1212
packages=find_packages(),
1313
data_files=[
1414
('share/ament_index/resource_index/packages', ['resource/' + package_name]),

turtlebot3_automatic_parking/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_automatic_parking
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
1.3.0 (2025-06-04)
6+
------------------
7+
* None
8+
59
1.2.0 (2025-04-25)
610
------------------
711
* None

turtlebot3_automatic_parking/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>turtlebot3_automatic_parking</name>
5-
<version>1.2.0</version>
5+
<version>1.3.0</version>
66
<description>
77
Package for turtlebot3 automatic_parking. You need a reflective tape and real robots. You can see parking spot using this pacakge on rviz.
88
</description>

turtlebot3_automatic_parking/setup.py

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

1414
setup(
1515
name=package_name,
16-
version='1.2.0',
16+
version='1.3.0',
1717
packages=find_packages(),
1818
data_files=[
1919
('share/ament_index/resource_index/packages', ['resource/' + package_name]),

turtlebot3_automatic_parking_vision/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_automatic_parking_vision
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
1.3.0 (2025-06-04)
6+
------------------
7+
* None
8+
59
1.2.0 (2025-04-25)
610
------------------
711
* Support for ROS 2 Humble version

turtlebot3_automatic_parking_vision/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>turtlebot3_automatic_parking_vision</name>
5-
<version>1.2.0</version>
5+
<version>1.3.0</version>
66
<description>
77
Automatic Parking Vision for TurtleBot3 Examples.
88
</description>

0 commit comments

Comments
 (0)