polygon_array_to_label_image.cpp
Go to the documentation of this file.
00001 // -*- mode: c++ -*-
00002 /*********************************************************************
00003  * Software License Agreement (BSD License)
00004  *
00005  *  Copyright (c) 2015, JSK Lab
00006  *  All rights reserved.
00007  *
00008  *  Redistribution and use in source and binary forms, with or without
00009  *  modification, are permitted provided that the following conditions
00010  *  are met:
00011  *
00012  *   * Redistributions of source code must retain the above copyright
00013  *     notice, this list of conditions and the following disclaimer.
00014  *   * Redistributions in binary form must reproduce the above
00015  *     copyright notice, this list of conditions and the following
00016  *     disclaimer in the documentation and/o2r other materials provided
00017  *     with the distribution.
00018  *   * Neither the name of the JSK Lab nor the names of its
00019  *     contributors may be used to endorse or promote products derived
00020  *     from this software without specific prior written permission.
00021  *
00022  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00023  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00024  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00025  *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00026  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00027  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00028  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00029  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00030  *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00031  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00032  *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00033  *  POSSIBILITY OF SUCH DAMAGE.
00034  *********************************************************************/
00035 
00036 #include "jsk_perception/polygon_array_to_label_image.h"
00037 #include <boost/assign.hpp>
00038 #include <jsk_topic_tools/log_utils.h>
00039 #include <opencv2/opencv.hpp>
00040 #include <cv_bridge/cv_bridge.h>
00041 #include <sensor_msgs/image_encodings.h>
00042 
00043 namespace jsk_perception
00044 {
00045   void PolygonArrayToLabelImage::onInit()
00046   {
00047     DiagnosticNodelet::onInit();
00048     pub_ = advertise<sensor_msgs::Image>(
00049       *pnh_, "output", 1);
00050     onInitPostProcess();
00051   }
00052 
00053   void PolygonArrayToLabelImage::subscribe()
00054   {
00055     sub_info_ = pnh_->subscribe("input/camera_info", 1,
00056                                 &PolygonArrayToLabelImage::infoCallback, this);
00057     sub_ = pnh_->subscribe("input", 1,
00058                            &PolygonArrayToLabelImage::convert, this);
00059     ros::V_string names = boost::assign::list_of("~input")("~input/camera_info");
00060     jsk_topic_tools::warnNoRemap(names);
00061   }
00062 
00063   void PolygonArrayToLabelImage::unsubscribe()
00064   {
00065     sub_info_.shutdown();
00066     sub_.shutdown();
00067   }
00068 
00069   void PolygonArrayToLabelImage::infoCallback(
00070     const sensor_msgs::CameraInfo::ConstPtr& info_msg)
00071   {
00072     boost::mutex::scoped_lock lock(mutex_);
00073     camera_info_ = info_msg;
00074   }
00075 
00076   void PolygonArrayToLabelImage::convert(
00077     const jsk_recognition_msgs::PolygonArray::ConstPtr& polygon_msg)
00078   {
00079     boost::mutex::scoped_lock lock(mutex_);
00080     vital_checker_->poke();
00081     if (camera_info_) {
00082       image_geometry::PinholeCameraModel model;
00083       model.fromCameraInfo(camera_info_);
00084       cv::Mat mask_image = cv::Mat::zeros(camera_info_->height,
00085                                           camera_info_->width,
00086                                           CV_32SC1);
00087       
00088       int label_counter = 1;
00089       // we expect same tf frame
00090       for (size_t i_polygon = 0; i_polygon < polygon_msg->polygons.size(); ++i_polygon) {
00091         geometry_msgs::Polygon polygon = polygon_msg->polygons[i_polygon].polygon;
00092         std::vector<cv::Point> points;
00093         if (polygon.points.size() >= 3) {
00094           bool all_outside = true;
00095           for (size_t i = 0; i < polygon.points.size(); i++) {
00096             geometry_msgs::Point32 p = polygon.points[i];
00097             cv::Point uv = model.project3dToPixel(cv::Point3d(p.x, p.y, p.z));
00098             if ((uv.x > 0 && uv.x < camera_info_->width) &&
00099                 (uv.y > 0 && uv.y < camera_info_->height)) {
00100               all_outside = false;
00101             }
00102             points.push_back(uv);
00103           }
00104           if (!all_outside) {
00105             cv::fillConvexPoly(mask_image, &(points[0]), points.size(), label_counter++);
00106           }
00107         }
00108       }
00109       pub_.publish(cv_bridge::CvImage(polygon_msg->header,
00110                                       sensor_msgs::image_encodings::TYPE_32SC1,
00111                                       mask_image).toImageMsg());
00112     }
00113     else {
00114       NODELET_WARN("no camera info is available");
00115     }
00116   }
00117 
00118 }
00119 
00120 #include <pluginlib/class_list_macros.h>
00121 PLUGINLIB_EXPORT_CLASS (jsk_perception::PolygonArrayToLabelImage, nodelet::Nodelet);


jsk_perception
Author(s): Manabu Saito, Ryohei Ueda
autogenerated on Tue Jul 2 2019 19:41:07