subtract_mask_image.cpp
Go to the documentation of this file.
1 // -*- mode: C++ -*-
2 /*********************************************************************
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2017, JSK Lab
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/o2r other materials provided
17  * with the distribution.
18  * * Neither the name of the JSK Lab nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *********************************************************************/
35 /*
36  * subtract_mask_image.cpp
37  * Author: Yuki Furuta <furushchev@jsk.imi.i.u-tokyo.ac.jp>
38  */
39 
41 #include <boost/assign.hpp>
42 #include <opencv2/opencv.hpp>
43 #include <cv_bridge/cv_bridge.h>
45 
47 
48 namespace jsk_perception
49 {
51  {
52  DiagnosticNodelet::onInit();
53  pnh_->param("approximate_sync", approximate_sync_, false);
54  pnh_->param("queue_size", queue_size_, 100);
55  pub_ = advertise<sensor_msgs::Image>(
56  *pnh_, "output", 1);
58  }
59 
61  {
62  sub_src1_.subscribe(*pnh_, "input/src1", 1);
63  sub_src2_.subscribe(*pnh_, "input/src2", 1);
64  if (approximate_sync_) {
65  async_ = boost::make_shared<message_filters::Synchronizer<ApproxSyncPolicy> >(queue_size_);
66  async_->connectInput(sub_src1_, sub_src2_);
67  async_->registerCallback(boost::bind(&SubtractMaskImage::subtract, this, _1, _2));
68  }
69  else {
70  sync_ = boost::make_shared<message_filters::Synchronizer<SyncPolicy> >(queue_size_);
71  sync_->connectInput(sub_src1_, sub_src2_);
72  sync_->registerCallback(boost::bind(&SubtractMaskImage::subtract, this, _1, _2));
73  }
74  }
75 
77  {
80  }
81 
83  const sensor_msgs::Image::ConstPtr& src1_msg,
84  const sensor_msgs::Image::ConstPtr& src2_msg)
85  {
86  vital_checker_->poke();
87 
88  if (src1_msg->width != src2_msg->width || src1_msg->height != src2_msg->height)
89  {
90  NODELET_ERROR("Size of masks are different!");
91  NODELET_ERROR("input/src1 = %dx%d", src1_msg->width, src1_msg->height);
92  NODELET_ERROR("input/src2 = %dx%d", src2_msg->width, src2_msg->height);
93  return;
94  }
95 
96  cv::Mat mask1 = cv_bridge::toCvShare(src1_msg, enc::MONO8)->image;
97  cv::Mat mask2 = cv_bridge::toCvShare(src2_msg, enc::MONO8)->image;
98 
99  cv::Mat mask2_not;
100  cv::bitwise_not(mask2, mask2_not);
101 
102  cv::Mat result = cv::Mat::zeros(mask1.size(), mask1.type());
103  mask1.copyTo(result, mask2_not);
104  pub_.publish(
105  cv_bridge::CvImage(src1_msg->header, enc::MONO8, result).toImageMsg());
106  }
107 }
108 
CvImageConstPtr toCvShare(const sensor_msgs::ImageConstPtr &source, const std::string &encoding=std::string())
#define NODELET_ERROR(...)
void publish(const boost::shared_ptr< M > &message) const
message_filters::Subscriber< sensor_msgs::Image > sub_src1_
PLUGINLIB_EXPORT_CLASS(jsk_perception::SubtractMaskImage, nodelet::Nodelet)
result
boost::shared_ptr< ros::NodeHandle > pnh_
message_filters::Subscriber< sensor_msgs::Image > sub_src2_
virtual void subtract(const sensor_msgs::Image::ConstPtr &src1_msg, const sensor_msgs::Image::ConstPtr &src2_msg)
jsk_topic_tools::VitalChecker::Ptr vital_checker_
void subscribe(ros::NodeHandle &nh, const std::string &topic, uint32_t queue_size, const ros::TransportHints &transport_hints=ros::TransportHints(), ros::CallbackQueueInterface *callback_queue=0)
boost::shared_ptr< message_filters::Synchronizer< SyncPolicy > > sync_
boost::shared_ptr< message_filters::Synchronizer< ApproxSyncPolicy > > async_
sensor_msgs::ImagePtr toImageMsg() const


jsk_perception
Author(s): Manabu Saito, Ryohei Ueda
autogenerated on Mon May 3 2021 03:03:27