-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4,759 changed files
with
1,196 additions
and
472,334 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
{ | ||
"cmake.sourceDirectory": "/home/pet/Food-Delivery/catkin_ws/src/ira_laser_tools" | ||
"python.autoComplete.extraPaths": [ | ||
"/opt/ros/noetic/lib/python3/dist-packages" | ||
], | ||
"python.analysis.extraPaths": [ | ||
"/opt/ros/noetic/lib/python3/dist-packages" | ||
] | ||
} |
Empty file.
Empty file.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# toplevel CMakeLists.txt for a catkin workspace | ||
# catkin/cmake/toplevel.cmake | ||
|
||
cmake_minimum_required(VERSION 3.0.2) | ||
|
||
project(Project) | ||
|
||
set(CATKIN_TOPLEVEL TRUE) | ||
|
||
# search for catkin within the workspace | ||
set(_cmd "catkin_find_pkg" "catkin" "${CMAKE_SOURCE_DIR}") | ||
execute_process(COMMAND ${_cmd} | ||
RESULT_VARIABLE _res | ||
OUTPUT_VARIABLE _out | ||
ERROR_VARIABLE _err | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
ERROR_STRIP_TRAILING_WHITESPACE | ||
) | ||
if(NOT _res EQUAL 0 AND NOT _res EQUAL 2) | ||
# searching fot catkin resulted in an error | ||
string(REPLACE ";" " " _cmd_str "${_cmd}") | ||
message(FATAL_ERROR "Search for 'catkin' in workspace failed (${_cmd_str}): ${_err}") | ||
endif() | ||
|
||
# include catkin from workspace or via find_package() | ||
if(_res EQUAL 0) | ||
set(catkin_EXTRAS_DIR "${CMAKE_SOURCE_DIR}/${_out}/cmake") | ||
# include all.cmake without add_subdirectory to let it operate in same scope | ||
include(${catkin_EXTRAS_DIR}/all.cmake NO_POLICY_SCOPE) | ||
add_subdirectory("${_out}") | ||
|
||
else() | ||
# use either CMAKE_PREFIX_PATH explicitly passed to CMake as a command line argument | ||
# or CMAKE_PREFIX_PATH from the environment | ||
if(NOT DEFINED CMAKE_PREFIX_PATH) | ||
if(NOT "$ENV{CMAKE_PREFIX_PATH}" STREQUAL "") | ||
if(NOT WIN32) | ||
string(REPLACE ":" ";" CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH}) | ||
else() | ||
set(CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH}) | ||
endif() | ||
endif() | ||
endif() | ||
|
||
# list of catkin workspaces | ||
set(catkin_search_path "") | ||
foreach(path ${CMAKE_PREFIX_PATH}) | ||
if(EXISTS "${path}/.catkin") | ||
list(FIND catkin_search_path ${path} _index) | ||
if(_index EQUAL -1) | ||
list(APPEND catkin_search_path ${path}) | ||
endif() | ||
endif() | ||
endforeach() | ||
|
||
# search for catkin in all workspaces | ||
set(CATKIN_TOPLEVEL_FIND_PACKAGE TRUE) | ||
find_package(catkin QUIET | ||
NO_POLICY_SCOPE | ||
PATHS ${catkin_search_path} | ||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) | ||
unset(CATKIN_TOPLEVEL_FIND_PACKAGE) | ||
|
||
if(NOT catkin_FOUND) | ||
message(FATAL_ERROR "find_package(catkin) failed. catkin was neither found in the workspace nor in the CMAKE_PREFIX_PATH. One reason may be that no ROS setup.sh was sourced before.") | ||
endif() | ||
endif() | ||
|
||
catkin_workspace() |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/ira_laser_tools/launch/laserscan_multi_merger.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/ira_laser_tools/launch/laserscan_virtualizer.launch
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
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 @@ | ||
<launch> | ||
<node name="kw_manager" pkg="kw" type="manager.py"/> | ||
<node name="kw_save_n_follow" pkg="multiwaypoints" type="save_n_following"/> | ||
</launch> |
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,5 @@ | ||
<launch> | ||
<include file="$(find kw)/launch/robot_pointcloud.launch" /> | ||
<include file="$(find kw)/launch/application.launch" /> | ||
<include file="$(find kw)/launch/navigation.launch" /> | ||
</launch> |
Empty file.
Empty file.
Empty file.
9 changes: 2 additions & 7 deletions
9
catkin_ws/src/kw/launch/robot_pointcloud.launch
100644 → 100755
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,13 +1,8 @@ | ||
<launch> | ||
<include file="$(find kw)/launch/lidar_bringup.launch" /> | ||
<include file="$(find scout_bringup)/launch/scout_mini_robot_base.launch" /> | ||
<include file="$(find witmotion_ros)/launch/witmotion.launch" /> | ||
<include file="$(find robot_localization)/launch/dual_ekf_navsat_example.launch" /> | ||
<include file="$(find kw)/launch/navigation.launch" /> | ||
<include file="$(find kw)/launch/robot_bringup.launch" /> | ||
|
||
<node pkg="tf" type="static_transform_publisher" name="base_link_to_camera_link" args="0.12 0.0 0.29 0 0 0 base_link camera_link 50"/> | ||
<include file="$(find realsense2_camera)/launch/demo_pointcloud.launch" /> | ||
<include file="$(find pointcloud_to_laserscan)/launch/sample_node.launch" /> | ||
<include file="$(find obstacle_detector)/launch/nodes.launch" /> | ||
|
||
<include file="$(find obstacle_detector)/launch/nodes.launch" />\ | ||
</launch> |
Empty file.
Empty file.
Empty file.
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
Empty file.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
catkin_ws/src/laser_filters/examples/angle_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/angle_filter_example.yaml
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/box_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/footprint_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/footprint_filter_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/intensity_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/intensity_filter_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/interpolation_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/interpolation_filter_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/mask_filter_example.launch
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/median_filter_5_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/median_filter_5_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/multiple_filters_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/multiple_filters_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/pass_through_example.launch
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/point_cloud_footprint_filter_example.yaml
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/polygon_filter_example.launch
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/range_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/scan_blob_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/scan_blob_filter_example.yaml
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/sector_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/shadow_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/shadow_filter_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/speckle_filter_example.launch
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/examples/speckle_filter_example.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/angular_bounds_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/angular_bounds_filter_in_place.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/array_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/box_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/footprint_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/intensity_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/interpolation_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/median_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/point_cloud_footprint_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/polygon_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/range_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/scan_blob_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/scan_mask_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/scan_shadow_detector.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/scan_shadows_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/sector_filter.h
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/include/laser_filters/speckle_filter.h
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/src/scan_to_cloud_filter_chain.cpp
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/test/test_scan_filter_chain.launch
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/test/test_speckle_filter_distance.yaml
100644 → 100755
Empty file.
Empty file modified
0
catkin_ws/src/laser_filters/test/test_speckle_filter_euclidean.yaml
100644 → 100755
Empty file.
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 @@ | ||
0.00598418,0.111692,0,0,0.00331074,0.999995 |
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,14 @@ | ||
0.0810586,-0.533927,0,0,0.999888,-0.0149843 | ||
-0.0690323,-0.538389,0,0,0.999886,-0.0151147 | ||
-0.172111,-0.541502,0,0,0.999884,-0.0152127 | ||
-0.356678,-0.547538,0,0,0.999892,-0.0147281 | ||
-0.697704,-0.558062,0,0,0.999864,-0.0164634 | ||
-0.938238,-0.5667,0,0,0.999811,-0.0194179 | ||
-1.07367,-0.572344,0,0,0.999853,-0.0171675 | ||
-1.37693,-0.581084,0,0,0.999877,-0.0156881 | ||
-1.52088,-0.584881,0,0,0.999889,-0.0149302 | ||
-1.7874,-0.595032,0,0,0.999875,-0.0158009 | ||
-1.96491,-0.599778,0,0,0.999875,-0.0157825 | ||
-2.1242,-0.603707,0,0,0.999877,-0.0157143 | ||
-2.2669,-0.607909,0,0,0.999895,-0.0144878 | ||
-2.38574,-0.607434,0,0,0.999739,-0.0228575 |
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,23 @@ | ||
-5.24148,-0.721478,0,0,0.99955,-0.0299879 | ||
-5.11299,-0.869542,0,0,0.173702,-0.984798 | ||
-4.74981,-0.969921,0,0,0.100324,-0.994955 | ||
-4.41811,-1.01884,0,0,0.0570586,-0.998371 | ||
-4.2377,-1.03066,0,0,0.0325065,-0.999472 | ||
-3.99617,-1.03603,0,0,0.01194,-0.999929 | ||
-3.60456,-0.981149,0,0,-0.018575,-0.999827 | ||
-3.44473,-0.954856,0,0,-0.0259181,-0.999664 | ||
-3.28498,-0.927623,0,0,-0.0306013,-0.999532 | ||
-3.18641,-0.910758,0,0,-0.0326171,-0.999468 | ||
-3.08806,-0.892621,0,0,-0.0328397,-0.999461 | ||
-2.99396,-0.858787,0,0,-0.0359679,-0.999353 | ||
-2.81213,-0.824033,0,0,-0.0332585,-0.999447 | ||
-2.71364,-0.806715,0,0,-0.0278407,-0.999612 | ||
-2.61427,-0.79548,0,0,-0.0237454,-0.999718 | ||
-2.51496,-0.783751,0,0,-0.0030382,-0.999995 | ||
-2.41353,-0.821412,0,0,0.243453,-0.969913 | ||
-2.31784,-0.873568,0,0,0.244591,-0.969626 | ||
-2.2285,-0.918484,0,0,0.202973,-0.979184 | ||
-2.13461,-0.952926,0,0,0.125785,-0.992058 | ||
-2.01725,-0.969165,0,0,0.0425579,-0.999094 | ||
-1.91397,-0.970215,0,0,-0.0334379,-0.999441 | ||
-1.81421,-0.963284,0,0,-0.0602776,-0.998182 |
Oops, something went wrong.