Skip to content

Commit

Permalink
[Feat] Rename s_graphs->situational_graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
hridaybavle committed Jun 3, 2024
1 parent cb5f18a commit 3984138
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions s_graphs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: BSD-2-Clause
cmake_minimum_required(VERSION 3.5)
project(lidar_s_graphs)
project(lidar_situational_graphs)

# Can we use C++17 in indigo?
add_definitions(-msse -msse2 -msse3 -msse4 -msse4.1 -msse4.2)
Expand Down Expand Up @@ -41,10 +41,10 @@ find_package(tf2_ros REQUIRED)
find_package(tf2_eigen REQUIRED)
find_package(message_filters REQUIRED)
find_package(geographic_msgs REQUIRED)
find_package(situational_graphs_reasoning_msgs REQUIRED)
find_package(backward_ros REQUIRED)
find_package(rviz_visual_tools REQUIRED)
find_package(situational_graphs_msgs REQUIRED)
find_package(situational_graphs_reasoning_msgs REQUIRED)


find_package(PCL REQUIRED)
Expand Down Expand Up @@ -92,14 +92,14 @@ set(DEPENDENCIES
tf2_ros
tf2_eigen
pcl_ros
situational_graphs_reasoning_msgs
visualization_msgs
message_filters
geographic_msgs
nmea_msgs
geodesy
rviz_visual_tools
situational_graphs_msgs)
situational_graphs_msgs
situational_graphs_reasoning_msgs)

SET(G2O_COMMON_LIBS
${PCL_LIBRARIES}
Expand Down
12 changes: 6 additions & 6 deletions s_graphs/launch/s_graphs_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def launch_reasoning():


def launch_sgraphs(context, *args, **kwargs):
pkg_dir = get_package_share_directory("lidar_s_graphs")
pkg_dir = get_package_share_directory("lidar_situational_graphs")
prefiltering_param_file = os.path.join(pkg_dir, "config", "prefiltering.yaml")
scan_matching_param_file = os.path.join(pkg_dir, "config", "scan_matching.yaml")
s_graphs_param_file = os.path.join(pkg_dir, "config", "s_graphs.yaml")
Expand All @@ -72,7 +72,7 @@ def launch_sgraphs(context, *args, **kwargs):
base_link_frame = "base_footprint"

prefiltering_cmd = Node(
package="lidar_s_graphs",
package="lidar_situational_graphs",
executable="s_graphs_prefiltering_node",
namespace=namespace_arg,
parameters=[{prefiltering_param_file}, {"base_link_frame": base_link_frame}],
Expand All @@ -84,7 +84,7 @@ def launch_sgraphs(context, *args, **kwargs):
)

scan_matching_cmd = Node(
package="lidar_s_graphs",
package="lidar_situational_graphs",
executable="s_graphs_scan_matching_odometry_node",
namespace=namespace_arg,
parameters=[scan_matching_param_file],
Expand All @@ -95,7 +95,7 @@ def launch_sgraphs(context, *args, **kwargs):

if room_segmentation_arg == "old":
room_segmentation_cmd = Node(
package="lidar_s_graphs",
package="lidar_situational_graphs",
executable="s_graphs_room_segmentation_node",
namespace=namespace_arg,
parameters=[{"vertex_neigh_thres": 2}],
Expand All @@ -105,15 +105,15 @@ def launch_sgraphs(context, *args, **kwargs):
reasoning_launch = launch_reasoning()

floor_plan_cmd = Node(
package="lidar_s_graphs",
package="lidar_situational_graphs",
executable="s_graphs_floor_plan_node",
namespace=namespace_arg,
parameters=[{"vertex_neigh_thres": 2}],
output="screen",
)

s_graphs_cmd = Node(
package="lidar_s_graphs",
package="lidar_situational_graphs",
executable="s_graphs_node",
namespace=namespace_arg,
parameters=[s_graphs_param_file],
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions s_graphs/package.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="3">
<name>lidar_s_graphs</name>
<name>lidar_situational_graphs</name>
<version>3.0.1</version>
<description>The s_graphs package</description>
<description>The lidar situational graphs package for generating 3D optimizable scene graphs</description>

<maintainer email="hriday.bavle@gmail.com">hriday</maintainer>

Expand Down

0 comments on commit 3984138

Please sign in to comment.