-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into lidar-person-detection
- Loading branch information
Showing
937 changed files
with
11,178 additions
and
2,329 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- git: # https://github.com/ros-perception/image_transport_plugins/pull/64 | ||
uri: https://github.com/ros-perception/image_transport_plugins.git | ||
local-name: image_transport_plugins | ||
version: noetic-devel |
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,16 +1,50 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(audio_to_spectrogram) | ||
|
||
find_package(catkin) | ||
find_package(catkin REQUIRED COMPONENTS | ||
dynamic_reconfigure | ||
) | ||
|
||
catkin_python_setup() | ||
|
||
generate_dynamic_reconfigure_options( | ||
cfg/DataAmplitudePlot.cfg | ||
) | ||
|
||
catkin_package() | ||
|
||
install(DIRECTORY launch sample scripts test | ||
install(DIRECTORY launch sample test | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
USE_SOURCE_PERMISSIONS | ||
) | ||
if(NOT $ENV{ROS_DISTRO} STREQUAL "indigo") # on noetic it needs catkin_install_python to support Python3 and it does not work on indigo for some reason... | ||
install(DIRECTORY scripts | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
USE_SOURCE_PERMISSIONS | ||
) | ||
else() | ||
install(DIRECTORY scripts | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
USE_SOURCE_PERMISSIONS | ||
PATTERN "*" | ||
PATTERN "*/*.py" EXCLUDE | ||
) | ||
|
||
file(GLOB SCRIPT_PROGRAMS scripts/*.py) | ||
catkin_install_python( | ||
PROGRAMS ${SCRIPT_PROGRAMS} | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/scripts | ||
) | ||
endif() | ||
|
||
if(CATKIN_ENABLE_TESTING) | ||
find_package(catkin REQUIRED COMPONENTS rostest roslaunch) | ||
add_rostest(test/audio_to_spectrogram.test) | ||
roslaunch_add_file_check(launch/audio_to_spectrogram.launch) | ||
if(NOT $ENV{ROS_DISTRO} STRLESS "kinetic") | ||
# Under kinetic, eval cannot be used in launch files | ||
# http://wiki.ros.org/roslaunch/XML#substitution_args | ||
add_rostest(test/wrench_to_spectrogram.test) | ||
roslaunch_add_file_check(launch/wrench_to_spectrogram.launch) | ||
endif() | ||
endif() |
Oops, something went wrong.