Skip to content

Commit 76b0705

Browse files
author
Stuart Alldritt
authored
Merge pull request opencv#9 from skalldri/master
Rename repo to match ROS naming convention
2 parents 28133f7 + cdf6c35 commit 76b0705

17 files changed

+21
-21
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the MIT License.
33

44
cmake_minimum_required(VERSION 2.8.3)
5-
project(azure-kinect-ros-driver LANGUAGES C CXX)
5+
project(azure_kinect_ros_driver LANGUAGES C CXX)
66

77

88
if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows")

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ Enhancements. Also check for Closed Issues before opening a new one.
2929

3030
## Finding issues you can help with
3131

32-
Looking for something to work on? Issues marked [``Good First Issue``](https://github.com/microsoft/Azure-Kinect-ROS-Driver/labels/good%20first%20issue)
32+
Looking for something to work on? Issues marked [``Good First Issue``](https://github.com/microsoft/Azure_Kinect_ROS_Driver/labels/good%20first%20issue)
3333
are a good place to start.
3434

35-
You can also check the [``Help Wanted``](https://github.com/microsoft/Azure-Kinect-ROS-Driver/labels/help%20wanted) tag to
35+
You can also check the [``Help Wanted``](https://github.com/microsoft/Azure_Kinect_ROS_Driver/labels/help%20wanted) tag to
3636
find other issues to help with. If you're interested in working on a fix, leave a comment to let everyone know and to help
3737
avoid duplicated effort from others.
3838

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
name: Azure-Kinect-ROS-Driver-$(SourceBranchName)-$(Date:yyyyMMdd)-$(Rev:rrr)
4+
name: Azure_Kinect_ROS_Driver-$(SourceBranchName)-$(Date:yyyyMMdd)-$(Rev:rrr)
55

66
trigger:
77
batch: false

include/azure-kinect-ros-driver/k4a_ros_bridge_nodelet.h renamed to include/azure_kinect_ros_driver/k4a_ros_bridge_nodelet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// Project headers
1616
//
17-
#include "azure-kinect-ros-driver/k4a_ros_device.h"
17+
#include "azure_kinect_ros_driver/k4a_ros_device.h"
1818

1919
namespace Azure_Kinect_ROS_Driver
2020
{

include/azure-kinect-ros-driver/k4a_ros_device.h renamed to include/azure_kinect_ros_driver/k4a_ros_device.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
// Project headers
2424
//
25-
#include "azure-kinect-ros-driver/k4a_ros_device_params.h"
26-
#include "azure-kinect-ros-driver/k4a_calibration_transform_data.h"
25+
#include "azure_kinect_ros_driver/k4a_ros_device_params.h"
26+
#include "azure_kinect_ros_driver/k4a_calibration_transform_data.h"
2727

2828
class K4AROSDevice
2929
{

launch/driver.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<arg name="rgb_point_cloud" default="true" /> <!-- Colorize the point cloud using the RBG camera. Requires color_enabled and depth_enabled -->
99
<arg name="required" default="false" /> <!-- Argument which specified if the entire launch file should terminate if the node dies -->
1010

11-
<node pkg="azure-kinect-ros-driver" type="node" name="node" output="screen" required="$(arg required)">
11+
<node pkg="azure_kinect_ros_driver" type="node" name="node" output="screen" required="$(arg required)">
1212
<param name="depth_enabled" type="bool" value="$(arg depth_enabled)" />
1313
<param name="depth_mode" type="string" value="$(arg depth_mode)" />
1414
<param name="color_enabled" type="bool" value="$(arg color_enabled)" />

launch/slam_rtabmap.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<group ns="k4a" >
44

55
<!-- TODO: move into a nodelet and combine with image_proc nodelet -->
6-
<include file="$(find azure-kinect-ros-driver)/launch/driver.launch" >
6+
<include file="$(find azure_kinect_ros_driver)/launch/driver.launch" >
77
<arg name="depth_enabled" value="true" />
88
<arg name="depth_mode" value="NFOV_UNBINNED" />
99
<arg name="color_enabled" value="true" />

0 commit comments

Comments
 (0)