-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/image_transport_decompressor
- Loading branch information
Showing
502 changed files
with
93,588 additions
and
5,842 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
108 changes: 108 additions & 0 deletions
108
.../autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/CMakeLists.txt
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 |
---|---|---|
@@ -0,0 +1,108 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(autoware_mission_details_overlay_rviz_plugin) | ||
|
||
find_package(ament_cmake_auto REQUIRED) | ||
ament_auto_find_build_dependencies() | ||
|
||
set( | ||
headers_to_moc | ||
include/mission_details_display.hpp | ||
) | ||
|
||
set( | ||
headers_to_not_moc | ||
include/remaining_distance_time_display.hpp | ||
) | ||
|
||
foreach(header "${headers_to_moc}") | ||
qt5_wrap_cpp(display_moc_files "${header}") | ||
endforeach() | ||
|
||
set( | ||
display_source_files | ||
src/overlay_utils.cpp | ||
src/mission_details_display.cpp | ||
src/remaining_distance_time_display.cpp | ||
) | ||
|
||
add_library( | ||
${PROJECT_NAME} SHARED | ||
${display_moc_files} | ||
${headers_to_not_moc} | ||
${display_source_files} | ||
) | ||
|
||
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 17) | ||
target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Wpedantic) | ||
|
||
target_include_directories( | ||
${PROJECT_NAME} PUBLIC | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
$<INSTALL_INTERFACE:include> | ||
${Qt5Widgets_INCLUDE_DIRS} | ||
${OpenCV_INCLUDE_DIRS} | ||
) | ||
|
||
target_link_libraries( | ||
${PROJECT_NAME} PUBLIC | ||
rviz_ogre_vendor::OgreMain | ||
rviz_ogre_vendor::OgreOverlay | ||
) | ||
|
||
target_compile_definitions(${PROJECT_NAME} PRIVATE "${PROJECT_NAME}_BUILDING_LIBRARY") | ||
|
||
# prevent pluginlib from using boost | ||
target_compile_definitions(${PROJECT_NAME} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS") | ||
|
||
pluginlib_export_plugin_description_file(rviz_common plugins_description.xml) | ||
|
||
ament_target_dependencies( | ||
${PROJECT_NAME} | ||
PUBLIC | ||
rviz_common | ||
rviz_rendering | ||
autoware_internal_msgs | ||
) | ||
|
||
ament_export_include_directories(include) | ||
ament_export_targets(${PROJECT_NAME} HAS_LIBRARY_TARGET) | ||
ament_export_dependencies( | ||
rviz_common | ||
rviz_ogre_vendor | ||
) | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_lint_auto REQUIRED) | ||
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
install( | ||
TARGETS ${PROJECT_NAME} | ||
EXPORT ${PROJECT_NAME} | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin | ||
INCLUDES DESTINATION include | ||
) | ||
|
||
install( | ||
DIRECTORY include/ | ||
DESTINATION include | ||
) | ||
|
||
install( | ||
TARGETS | ||
DESTINATION lib/${PROJECT_NAME} | ||
) | ||
|
||
# Copy the assets directory to the installation directory | ||
install( | ||
DIRECTORY assets/ | ||
DESTINATION share/${PROJECT_NAME}/assets | ||
) | ||
|
||
add_definitions(-DQT_NO_KEYWORDS) | ||
|
||
ament_package( | ||
CONFIG_EXTRAS "autoware_mission_details_overlay_rviz_plugin-extras.cmake" | ||
) |
12 changes: 12 additions & 0 deletions
12
common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/LICENSE
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Copyright (c) 2022, Team Spatzenhirn | ||
Copyright (c) 2014, JSK Lab | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
35 changes: 35 additions & 0 deletions
35
...ware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/README.md
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# autoware_mission_details_overlay_rviz_plugin | ||
|
||
This RViz plugin displays the remaining distance and time for the current mission. | ||
|
||
## Inputs / Outputs | ||
|
||
### Input | ||
|
||
| Name | Type | Description | | ||
| ------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------- | | ||
| `/planning/mission_remaining_distance_time` | `autoware_planning_msgs::msg::MissionRemainingDistanceTime` | The topic is for mission remaining distance and time | | ||
|
||
## Overlay Parameters | ||
|
||
| Name | Type | Default Value | Description | | ||
| -------- | ---- | ------------- | --------------------------------- | | ||
| `Width` | int | 170 | Width of the overlay [px] | | ||
| `Height` | int | 100 | Height of the overlay [px] | | ||
| `Right` | int | 10 | Margin from the right border [px] | | ||
| `Top` | int | 10 | Margin from the top border [px] | | ||
|
||
The mission details display is aligned with top right corner of the screen. | ||
|
||
## Usage | ||
|
||
Similar to [autoware_overlay_rviz_plugin](../autoware_overlay_rviz_plugin/README.md) | ||
|
||
## Credits | ||
|
||
Based on the [jsk_visualization](https://github.com/jsk-ros-pkg/jsk_visualization) package. | ||
|
||
### Icons | ||
|
||
- <https://fonts.google.com/icons?selected=Material+Symbols+Outlined:conversion_path:FILL@1;wght@400;GRAD@200;opsz@20&icon.size=20&icon.color=%23e8eaed&icon.query=path> | ||
- <https://fonts.google.com/icons?selected=Material+Symbols+Outlined:av_timer:FILL@1;wght@400;GRAD@200;opsz@20&icon.size=20&icon.color=%23e8eaed&icon.query=av+timer> |
Binary file added
BIN
+1.96 KB
...ay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/assets/av_timer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.