forked from stereolabs/zed-ros-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new zed_interfaces package * Removed "world_frame" * removed "_m" from parameters * Remove publish_pose_covariance parameter * - Rename `depth_resample_factor` to `depth_downsample_factor` - Rename `img_resample_factor` to `img_downsample_factor` * Rename `odometry_db` to `area_memory_db_path` * Update Changelog * Support for Textureness Depth Threshold * Minor fixes * ZED2 sensors frames * Improved warning message for missing TF transforms * Minor fixes * Minor fix * Feat gray images (stereolabs#532) * Improved warning message for missing TF transforms * Minor fixes * Add gray images publishing * Gray image publishing correctly working * Camera IMU transform publisher * Left Camera to IMU transform new topic name `left_camera_imu_transform` * Default value for depth_confidence to 50 * Propagate `base_frame` parameter in the Xacro description * Fix zed_no_tf.launch * Add support for new Sensor Information info structures Add support for new extrinsic parameters in ROS frame * Update LICENSE * Add separated publishing frequency for Video and Depth data Add new publishing frequency info to diagnostic Add new publishing frequency to dynamic parameters * Solve conflicts
- Loading branch information
Showing
35 changed files
with
995 additions
and
518 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,62 @@ | ||
cmake_minimum_required(VERSION 2.8.7) | ||
|
||
project(zed_interfaces) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
std_msgs | ||
geometry_msgs | ||
#actionlib_msgs | ||
message_generation | ||
) | ||
|
||
add_message_files( | ||
DIRECTORY msg | ||
FILES | ||
object_stamped.msg | ||
objects.msg | ||
) | ||
|
||
#add_action_files(DIRECTORY action FILES act.action) | ||
|
||
add_service_files( | ||
DIRECTORY srv | ||
FILES | ||
set_pose.srv | ||
reset_odometry.srv | ||
reset_tracking.srv | ||
start_svo_recording.srv | ||
stop_svo_recording.srv | ||
start_remote_stream.srv | ||
stop_remote_stream.srv | ||
set_led_status.srv | ||
toggle_led.srv | ||
start_3d_mapping.srv | ||
stop_3d_mapping.srv | ||
start_object_detection.srv | ||
stop_object_detection.srv | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES | ||
#actionlib_msgs | ||
std_msgs | ||
geometry_msgs | ||
) | ||
|
||
catkin_package( | ||
INCLUDE_DIRS include | ||
CATKIN_DEPENDS | ||
message_generation | ||
std_msgs | ||
geometry_msgs | ||
#actionlib_msgs | ||
) | ||
|
||
############################################################################### | ||
|
||
#Add all files in subdirectories of the project in | ||
# a dummy_target so qtcreator have access to all files | ||
FILE(GLOB_RECURSE all_files ${CMAKE_SOURCE_DIR}/*) | ||
add_custom_target(all_files_${PROJECT_NAME} SOURCES ${all_files}) | ||
|
||
|
Empty file.
File renamed without changes.
File renamed without changes.
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,27 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>zed_interfaces</name> | ||
<version>3.1.0</version> | ||
<description>zed_interfaces is a packages that defines custom messages, services and actions used by the | ||
zed-ros-wrapper package and other packages.</description> | ||
|
||
<maintainer email="support@stereolabs.com">STEREOLABS</maintainer> | ||
<license>MIT</license> | ||
|
||
<url type="website">http://stereolabs.com/</url> | ||
<url type="repository">https://github.com/stereolabs/zed-ros-wrapper</url> | ||
<url type="bugtracker">https://github.com/stereolabs/zed-ros-wrapper/issues</url> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<build_depend>std_msgs</build_depend> | ||
<build_depend>actionlib_msgs</build_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
|
||
<exec_depend>std_msgs</exec_depend> | ||
<exec_depend>actionlib_msgs</exec_depend> | ||
<exec_depend>geometry_msgs</exec_depend> | ||
<exec_depend>message_generation</exec_depend> | ||
|
||
</package> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.