-
Notifications
You must be signed in to change notification settings - Fork 121
/
compressed_subscriber.cpp
168 lines (141 loc) · 6.19 KB
/
compressed_subscriber.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 20012, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Willow Garage nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*********************************************************************/
#include "compressed_image_transport/compressed_subscriber.h"
#include <sensor_msgs/image_encodings.h>
#include <cv_bridge/cv_bridge.h>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "compressed_image_transport/compression_common.h"
#include <limits>
#include <vector>
using namespace cv;
namespace enc = sensor_msgs::image_encodings;
namespace compressed_image_transport
{
void CompressedSubscriber::subscribeImpl(ros::NodeHandle& nh, const std::string& base_topic, uint32_t queue_size,
const Callback& callback, const ros::VoidPtr& tracked_object,
const image_transport::TransportHints& transport_hints)
{
typedef image_transport::SimpleSubscriberPlugin<sensor_msgs::CompressedImage> Base;
Base::subscribeImpl(nh, base_topic, queue_size, callback, tracked_object, transport_hints);
// Set up reconfigure server for this topic
reconfigure_server_ = boost::make_shared<ReconfigureServer>(this->nh());
ReconfigureServer::CallbackType f = boost::bind(&CompressedSubscriber::configCb, this, _1, _2);
reconfigure_server_->setCallback(f);
}
void CompressedSubscriber::configCb(Config& config, uint32_t level)
{
config_ = config;
if (config_.mode == compressed_image_transport::CompressedSubscriber_gray) {
imdecode_flag_ = cv::IMREAD_GRAYSCALE;
} else if (config_.mode == compressed_image_transport::CompressedSubscriber_color) {
imdecode_flag_ = cv::IMREAD_COLOR;
} else /*if (config_.mode == compressed_image_transport::CompressedSubscriber_unchanged)*/ {
imdecode_flag_ = cv::IMREAD_UNCHANGED;
}
}
void CompressedSubscriber::shutdown()
{
reconfigure_server_.reset();
image_transport::SimpleSubscriberPlugin<sensor_msgs::CompressedImage>::shutdown();
}
void CompressedSubscriber::internalCallback(const sensor_msgs::CompressedImageConstPtr& message,
const Callback& user_cb)
{
cv_bridge::CvImagePtr cv_ptr(new cv_bridge::CvImage);
// Copy message header
cv_ptr->header = message->header;
// Decode color/mono image
try
{
cv_ptr->image = cv::imdecode(cv::Mat(message->data), imdecode_flag_);
// Assign image encoding string
const size_t split_pos = message->format.find(';');
if (split_pos==std::string::npos)
{
// Older version of compressed_image_transport does not signal image format
switch (cv_ptr->image.channels())
{
case 1:
cv_ptr->encoding = enc::MONO8;
break;
case 3:
cv_ptr->encoding = enc::BGR8;
break;
default:
ROS_ERROR("Unsupported number of channels: %i", cv_ptr->image.channels());
break;
}
} else
{
std::string image_encoding = message->format.substr(0, split_pos);
cv_ptr->encoding = image_encoding;
if ( enc::isColor(image_encoding))
{
std::string compressed_encoding = message->format.substr(split_pos);
bool compressed_bgr_image = (compressed_encoding.find("compressed bgr") != std::string::npos);
// Revert color transformation
if (compressed_bgr_image)
{
// if necessary convert colors from bgr to rgb
if ((image_encoding == enc::RGB8) || (image_encoding == enc::RGB16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_BGR2RGB);
if ((image_encoding == enc::RGBA8) || (image_encoding == enc::RGBA16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_BGR2RGBA);
if ((image_encoding == enc::BGRA8) || (image_encoding == enc::BGRA16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_BGR2BGRA);
} else
{
// if necessary convert colors from rgb to bgr
if ((image_encoding == enc::BGR8) || (image_encoding == enc::BGR16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_RGB2BGR);
if ((image_encoding == enc::BGRA8) || (image_encoding == enc::BGRA16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_RGB2BGRA);
if ((image_encoding == enc::RGBA8) || (image_encoding == enc::RGBA16))
cv::cvtColor(cv_ptr->image, cv_ptr->image, CV_RGB2RGBA);
}
}
}
}
catch (cv::Exception& e)
{
ROS_ERROR("%s", e.what());
}
size_t rows = cv_ptr->image.rows;
size_t cols = cv_ptr->image.cols;
if ((rows > 0) && (cols > 0))
// Publish message to user callback
user_cb(cv_ptr->toImageMsg());
}
} //namespace compressed_image_transport