Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type masquerading demos #482

Merged
merged 9 commits into from May 15, 2021
31 changes: 23 additions & 8 deletions image_tools/CMakeLists.txt
Expand Up @@ -20,27 +20,42 @@ find_package(OpenCV REQUIRED)

include_directories(include)

add_library(imagetools SHARED
add_library(${PROJECT_NAME} SHARED
src/burger.cpp
src/cam2image.cpp
src/cv_mat_sensor_msgs_image_type_adapter.cpp
src/showimage.cpp
src/burger.cpp)
target_compile_definitions(imagetools
)
target_compile_definitions(${PROJECT_NAME}
PRIVATE "IMAGE_TOOLS_BUILDING_DLL")
ament_target_dependencies(imagetools
target_include_directories(${PROJECT_NAME} PUBLIC
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>"
"$<INSTALL_INTERFACE:include>")
ament_target_dependencies(${PROJECT_NAME}
"rclcpp"
"sensor_msgs"
"std_msgs"
"rclcpp_components"
"OpenCV")
rclcpp_components_register_node(imagetools PLUGIN "image_tools::Cam2Image" EXECUTABLE cam2image)
rclcpp_components_register_node(imagetools PLUGIN "image_tools::ShowImage" EXECUTABLE showimage)
rclcpp_components_register_node(${PROJECT_NAME} PLUGIN "image_tools::Cam2Image" EXECUTABLE cam2image)
rclcpp_components_register_node(${PROJECT_NAME} PLUGIN "image_tools::ShowImage" EXECUTABLE showimage)

install(TARGETS
imagetools
install(
TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin)

install(
DIRECTORY include/
DESTINATION include
)

ament_export_libraries(${PROJECT_NAME})
ament_export_targets(${PROJECT_NAME})

ament_export_dependencies(rclcpp_components)

if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
Expand Down
@@ -0,0 +1,239 @@
// Copyright 2021 Open Source Robotics Foundation, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IMAGE_TOOLS__CV_MAT_SENSOR_MSGS_IMAGE_TYPE_ADAPTER_HPP_
#define IMAGE_TOOLS__CV_MAT_SENSOR_MSGS_IMAGE_TYPE_ADAPTER_HPP_

#include <memory>
#include <variant> // NOLINT[build/include_order]

#include "opencv2/opencv.hpp"
#include "rclcpp/type_adapter.hpp"
#include "sensor_msgs/msg/image.hpp"

#include "image_tools/visibility_control.h"

namespace image_tools
{
namespace detail
{
// TODO(audrow): Replace with std::endian when C++ 20 is available
// https://en.cppreference.com/w/cpp/types/endian
enum class endian
{
#ifdef _WIN32
little = 0,
big = 1,
native = little
#else
little = __ORDER_LITTLE_ENDIAN__,
big = __ORDER_BIG_ENDIAN__,
native = __BYTE_ORDER__
#endif
};

} // namespace detail


// TODO(wjwwood): make this as a contribution to vision_opencv's cv_bridge package.
// Specifically the CvImage class, which is this is most similar to.
/// A potentially owning, potentially non-owning, container of a cv::Mat and ROS header.
/**
* The two main use cases for this are publishing user controlled data, and
* recieving data from the middleware that may have been a ROS message
* originally or may have been an cv::Mat originally.
*
* In the first case, publishing user owned data, the user will want to provide
* their own cv::Mat.
* The cv::Mat may own the data or it may not, so in the latter case, it is up
* to the user to ensure the data the cv::Mat points to remains valid as long
* as the middleware needs it.
*
* In the second case, receiving data from the middleware, the middleware will
* either give a new ROSCvMatContainer which owns a sensor_msgs::msg::Image or
* it will give a ROSCvMatContainer that was previously published by the user
* (in the case of intra-process communication).
* If the container owns the sensor_msgs::msg::Image, then the cv::Mat will just
* reference data field of this message, so the container needs to be kept.
* If the container was published by the user it may or may not own the data
* and the cv::Mat it contains may or may not own the data.
*
* For these reasons, it is advisable to use cv::Mat::clone() if you intend to
* copy the cv::Mat and let this container go.
*
* For more details about the ownership behavior of cv::Mat see documentation
* for these methods of cv::Mat:
*
* - template<typename _Tp > cv::Mat::Mat(const std::vector<_Tp> &, bool)
* - Mat & cv::Mat::operator=(const Mat &)
* - void cv::Mat::addref()
* - void cv::Mat::release()
*
*/
class ROSCvMatContainer
{
static constexpr bool is_bigendian_system = detail::endian::native == detail::endian::big;

public:
using SensorMsgsImageStorageType = std::variant<
nullptr_t,
std::unique_ptr<sensor_msgs::msg::Image>,
std::shared_ptr<sensor_msgs::msg::Image>
>;

IMAGE_TOOLS_PUBLIC
ROSCvMatContainer() = default;

/// Store an owning pointer to a sensor_msg::msg::Image, and create a cv::Mat that references it.
IMAGE_TOOLS_PUBLIC
explicit ROSCvMatContainer(std::unique_ptr<sensor_msgs::msg::Image> unique_sensor_msgs_image);

/// Store an owning pointer to a sensor_msg::msg::Image, and create a cv::Mat that references it.
IMAGE_TOOLS_PUBLIC
explicit ROSCvMatContainer(std::shared_ptr<sensor_msgs::msg::Image> shared_sensor_msgs_image);

/// Shallow copy the given cv::Mat into this class, but do not own the data directly.
IMAGE_TOOLS_PUBLIC
ROSCvMatContainer(
const cv::Mat & mat_frame,
const std_msgs::msg::Header & header,
bool is_bigendian = is_bigendian_system);

/// Move the given cv::Mat into this class.
IMAGE_TOOLS_PUBLIC
ROSCvMatContainer(
cv::Mat && mat_frame,
const std_msgs::msg::Header & header,
bool is_bigendian = is_bigendian_system);

/// Copy the sensor_msgs::msg::Image into this contain and create a cv::Mat that references it.
IMAGE_TOOLS_PUBLIC
explicit ROSCvMatContainer(const sensor_msgs::msg::Image & sensor_msgs_image);

/// Return true if this class owns the data the cv_mat references.
/**
* Note that this does not check if the cv::Mat owns its own data, only if
* this class owns a sensor_msgs::msg::Image that the cv::Mat references.
*/
IMAGE_TOOLS_PUBLIC
bool
is_owning() const;

/// Const access the cv::Mat in this class.
IMAGE_TOOLS_PUBLIC
const cv::Mat &
cv_mat() const;

/// Get a shallow copy of the cv::Mat that is in this class.
/**
* Note that if you want to let this container go out of scope you should
* make a deep copy with cv::Mat::clone() beforehand.
*/
IMAGE_TOOLS_PUBLIC
cv::Mat
cv_mat();

/// Const access the ROS Header.
IMAGE_TOOLS_PUBLIC
const std_msgs::msg::Header &
header() const;

/// Access the ROS Header.
IMAGE_TOOLS_PUBLIC
std_msgs::msg::Header &
header();

/// Get shared const pointer to the sensor_msgs::msg::Image if available, otherwise nullptr.
IMAGE_TOOLS_PUBLIC
std::shared_ptr<const sensor_msgs::msg::Image>
get_sensor_msgs_msg_image_pointer() const;

/// Get copy as a unique pointer to the sensor_msgs::msg::Image.
IMAGE_TOOLS_PUBLIC
std::unique_ptr<sensor_msgs::msg::Image>
get_sensor_msgs_msg_image_pointer_copy() const;

/// Get a copy of the image as a sensor_msgs::msg::Image.
IMAGE_TOOLS_PUBLIC
sensor_msgs::msg::Image
get_sensor_msgs_msg_image_copy() const;

/// Get a copy of the image as a sensor_msgs::msg::Image.
IMAGE_TOOLS_PUBLIC
void
get_sensor_msgs_msg_image_copy(sensor_msgs::msg::Image & sensor_msgs_image) const;

/// Return true if the data is stored in big endian, otherwise return false.
IMAGE_TOOLS_PUBLIC
bool
is_bigendian() const;

private:
std_msgs::msg::Header header_;
cv::Mat frame_;
SensorMsgsImageStorageType storage_;
bool is_bigendian_;
};

} // namespace image_tools

template<>
struct rclcpp::TypeAdapter<image_tools::ROSCvMatContainer, sensor_msgs::msg::Image>
{
using is_specialized = std::true_type;
using custom_type = image_tools::ROSCvMatContainer;
using ros_message_type = sensor_msgs::msg::Image;

static
void
convert_to_ros_message(
const custom_type & source,
ros_message_type & destination)
{
destination.height = source.cv_mat().rows;
destination.width = source.cv_mat().cols;
switch (source.cv_mat().type()) {
case CV_8UC1:
destination.encoding = "mono8";
break;
case CV_8UC3:
destination.encoding = "bgr8";
break;
case CV_16SC1:
destination.encoding = "mono16";
break;
case CV_8UC4:
destination.encoding = "rgba8";
break;
default:
throw std::runtime_error("unsupported encoding type");
}
destination.step = static_cast<sensor_msgs::msg::Image::_step_type>(source.cv_mat().step);
size_t size = source.cv_mat().step * source.cv_mat().rows;
destination.data.resize(size);
memcpy(&destination.data[0], source.cv_mat().data, size);
destination.header = source.header();
}

static
void
convert_to_custom(
const ros_message_type & source,
custom_type & destination)
{
destination = image_tools::ROSCvMatContainer(source);
}
};

#endif // IMAGE_TOOLS__CV_MAT_SENSOR_MSGS_IMAGE_TYPE_ADAPTER_HPP_