Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | ROS2 navigaiton tutorials and do quadruped robot |
Checkout URI | https://github.com/duyongquan/openrobotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-01-16 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- quan
Authors
1 Marker
1.1 简介
1.2 显示一个圆轨迹
1.2.1 功能简介
显示一条圆形轨迹
1.2.2 代码
- CMakeList.txt
cmake_minimum_required(VERSION 3.8)
project(rviz)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(nav2_msgs REQUIRED)
find_package(nav_msgs REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
find_package(visualization_msgs REQUIRED)
# include
include_directories(
include
)
# dependency
set(DEPS
rclcpp
std_msgs
nav2_msgs
nav_msgs
tf2
tf2_geometry_msgs
visualization_msgs)
# sources
set(SRCS
src/tutorials_rviz_demo1_initial_env.cpp)
# demo1
add_executable(tutorial.topic.demo1_initial_env_test ${SRCS} src/tutorials_rviz_demo1_initial_env_test.cpp)
ament_target_dependencies(tutorial.topic.demo1_initial_env_test ${DEPS})
install(TARGETS
tutorial.topic.demo1_initial_env_test
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()
- launch文件
```perl import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node
def generate_launch_description():
namespace = LaunchConfiguration('namespace')
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
nav2_msgs | |
nav_msgs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
interactive_markers | |
visualization_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 1.13.30 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Description | ROS 3D Robot Visualizer |
Checkout URI | https://github.com/ros-visualization/rviz.git |
VCS Type | git |
VCS Version | melodic-devel |
Last Updated | 2023-05-25 |
Dev Status | MAINTAINED |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Robert Haschke
Authors
- Dave Hershberger
- David Gossow
- Josh Faust
rviz is a 3D visualizer for the Robot Operating System (ROS) framework.
For more information, please see the wiki: http://wiki.ros.org/rviz
Maintainers:
- Robert Haschke (2019-)
- William Woodall (2013-2018)
- David Gossow (2013)
- Dave Hershberger (2011-2013)
- Josh Faust (2010)
This package contains Public Domain icons downloaded from http://tango.freedesktop.org/releases/.
Other icons and graphics contained in this package are released into the Public Domain as well.
Copyright notice for all icons and graphics in this package:
Public Domain Dedication
Copyright-Only Dedication (based on United States law) or Public Domain
Certification
The person or persons who have associated work with this document (the
"Dedicator" or "Certifier") hereby either (a) certifies that, to the best
of his knowledge, the work of authorship identified is in the public
domain of the country from which the work is published, or (b)
hereby dedicates whatever copyright the dedicators holds in the work
of authorship identified below (the "Work") to the public domain. A
certifier, moreover, dedicates any copyright interest he may have in
the associated work, and for these purposes, is described as a
"dedicator" below.
A certifier has taken reasonable steps to verify the copyright
status of this work. Certifier recognizes that his good faith efforts
may not shield him from liability if in fact the work certified is not
in the public domain.
Dedicator makes this dedication for the benefit of the public at
large and to the detriment of the Dedicator's heirs and successors.
Dedicator intends this dedication to be an overt act of relinquishment
in perpetuity of all present and future rights under copyright law,
whether vested or contingent, in the Work. Dedicator understands that
such relinquishment of all rights includes the relinquishment of all
rights to enforce (by lawsuit or otherwise) those copyrights in the
Work.
Dedicator recognizes that, once placed in the public domain, the Work
may be freely reproduced, distributed, transmitted, used, modified,
built upon, or otherwise exploited by anyone for any purpose, commercial
or non-commercial, and in any way, including by methods that have not
yet been invented or conceived.
Source: http://creativecommons.org/licenses/publicdomain/
Changelog for package rviz
1.13.30 (2023-03-29)
- Improvements to TF display
(#1789)
- Add regex filters (white+black list) to TF Display (#1744)
- Reparent children to root tree node when deleting a frame
- Insert frame properties sorted
- Create tree nodes also if the frame is not connected to rviz' global frame
- Fix orientation of joint axis arrow (#1788)
- Contributors: Blaz Potokar, Robert Haschke
1.13.29 (2022-08-12)
1.13.28 (2022-08-12)
- Fixup to #1759
- Contributors: Robert Haschke
1.13.27 (2022-08-09)
- MFD: Don't process messages when disabled (#1765)
- Fix image display wrapping (#1763)
- Contributors: Robert Haschke
1.13.26 (2022-08-01)
- Improve SplitterHandle of PropertyTreeWidgets
(#1760)
- Suppress horizontal scrolling and auto-resizing of columns
- Double click auto-adjusts to content
- Fix segfault occuring for direct dock panel deletion (#1759)
- Fix race conditions in PointCloud displays (#1754)
- Acquire mutexes before destroying PointCloudCommon
- PointCloud displays: unsubscribe before destroying PointCloudCommon
- Fix segfault in
TimePanel::onTimeSignal()
(#1753): Drop source Display* argument, which is a dangling pointer if the Display was deleted meanwhile - Drop OGRE/ from #include directives
- Contributors: Robert Haschke
1.13.25 (2022-05-27)
- RobotLink: Simplify material mode handling (#1732)
- Drop OGRE/ from #include directives (#1730)
- Fix segfault when no tools are available (#1729)
- GridCells: implement setTopic() (#1722)
- Contributors: Brosong, Jochen Sprickerhof, Robert Haschke
1.13.24 (2022-02-12)
- Fix regression in mesh loader: correctly transform normals (#1703)
- MovableText: gracefully handle string of whitespaces (#1700)
- Contributors: Robert Haschke
1.13.23 (2021-12-16)
- Destroy panels before destroying the RenderPanels and its SceneManager (Fixes #1683)
- Fix regression in assimp mesh loading (Fixes #1688)
- Contributors: Robert Haschke
1.13.22 (2021-12-13)
- Drop proprietary COLLADA scaling (#1685)
- Contributors: Martin Pecka, Robert Haschke
1.13.21 (2021-11-03)
- Fix scaling of PointVisual's sphere (#1678)
- Fix assertion in billboard_line.cpp (#1674)
- Drop unused rosbag dependency
- Contributors: Jochen Sprickerhof, Robert Haschke
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged rviz at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 1.14.26 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Description | ROS 3D Robot Visualizer |
Checkout URI | https://github.com/ros-visualization/rviz.git |
VCS Type | git |
VCS Version | noetic-devel |
Last Updated | 2025-05-02 |
Dev Status | MAINTAINED |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- Robert Haschke
Authors
- Dave Hershberger
- David Gossow
- Josh Faust
- William Woodall
rviz is a 3D visualizer for the Robot Operating System (ROS) framework.
For more information, please see the wiki: http://wiki.ros.org/rviz
Maintainers:
- Robert Haschke (2019-)
- William Woodall (2013-2018)
- David Gossow (2013)
- Dave Hershberger (2011-2013)
- Josh Faust (2010)
This package contains Public Domain icons downloaded from http://tango.freedesktop.org/releases/.
Other icons and graphics contained in this package are released into the Public Domain as well.
Copyright notice for all icons and graphics in this package:
Public Domain Dedication
Copyright-Only Dedication (based on United States law) or Public Domain
Certification
The person or persons who have associated work with this document (the
"Dedicator" or "Certifier") hereby either (a) certifies that, to the best
of his knowledge, the work of authorship identified is in the public
domain of the country from which the work is published, or (b)
hereby dedicates whatever copyright the dedicators holds in the work
of authorship identified below (the "Work") to the public domain. A
certifier, moreover, dedicates any copyright interest he may have in
the associated work, and for these purposes, is described as a
"dedicator" below.
A certifier has taken reasonable steps to verify the copyright
status of this work. Certifier recognizes that his good faith efforts
may not shield him from liability if in fact the work certified is not
in the public domain.
Dedicator makes this dedication for the benefit of the public at
large and to the detriment of the Dedicator's heirs and successors.
Dedicator intends this dedication to be an overt act of relinquishment
in perpetuity of all present and future rights under copyright law,
whether vested or contingent, in the Work. Dedicator understands that
such relinquishment of all rights includes the relinquishment of all
rights to enforce (by lawsuit or otherwise) those copyrights in the
Work.
Dedicator recognizes that, once placed in the public domain, the Work
may be freely reproduced, distributed, transmitted, used, modified,
built upon, or otherwise exploited by anyone for any purpose, commercial
or non-commercial, and in any way, including by methods that have not
yet been invented or conceived.
Source: http://creativecommons.org/licenses/publicdomain/
Changelog for package rviz
1.14.26 (2025-05-02)
- Warning Dialog for ROS 1 EOL (#1843)
- Bump cmake_minimum_required to 3.5 (#1847)
- Replace boost::<filesystem::extension>() (#1844)
- Fix #1834: segfault on addMaximizeButton
- Contributors: A K Azad, Arne Hitzmann, Katherine Scott, Robert Haschke
1.14.25 (2024-05-21)
1.14.24 (2024-05-15)
- Fix jitter in Map display updates (#1826)
- Contributors: Robert Haschke
1.14.23 (2024-05-09)
- Fix #1825
- Contributors: Robert Haschke
1.14.22 (2024-04-29)
- Reenable python bindings
- Contributors: Robert Haschke
1.14.21 (2024-04-25)
- ImageDisplay: publish mouse clicks (#1737)
- Add maximize button to Image and Camera display (#1803)
- Gracefully handle loops in TF tree (#1820)
- Ogre 13 compatibility
- Qt6 compatibility (#1813)
- Fix Qt 5.15 API deprecation warnings
- ScrewDisplay: Fix initialization of HideSmallValues property (#1810)
- Fix vanishing "Global Options" when adding a RobotModelDisplay (#1808)
- Modernize to Qt5 slots (#1790)
- Optionally deprecate old-style slots via -DRVIZ_DEPRECATE_QT4_SLOTS
- Improve error handling in LaserScanDisplay (#1798)
- MapDisplay: Fix crash after map update (#1793)
- Call propertyHiddenChanged synchronously (#1795)
- Replace obsolete QPixmap::grabWindow() with QScreen::grabWindow() (#1794)
- Contributors: Miguel Riem de Oliveira, Robert Haschke, Simon Schmeisser, Stefan Fabian, vineet131
1.14.20 (2023-03-30)
- Improvements to TF display
(#1789)
- Add regex filters (white+black list) to TF Display (#1744)
- Reparent children to root tree node when deleting a frame
- Insert frame properties sorted
- Create tree nodes also if the frame is not connected to rviz' global frame
- RobotModel: Fix orientation of joint axis arrow (#1788)
- Use static QCoreApplication::processEvents() w/o QApplication instance (#1772)
- Contributors: Blaz Potokar, Robert Haschke, Yannis Gerlach
1.14.19 (2022-08-14)
1.14.17 (2022-08-12)
- Fixup to #1759
- Contributors: Robert Haschke
File truncated at 100 lines see the full file