Skip to content

Commit

Permalink
Merge pull request #589 from garaemon/colorize-labels
Browse files Browse the repository at this point in the history
[jsk_perception] Colorize labels
  • Loading branch information
garaemon committed Jan 17, 2015
2 parents 8df2f51 + 721d5af commit 630d2f2
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 0 deletions.
1 change: 1 addition & 0 deletions jsk_perception/catkin.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jsk_perception_nodelet(src/rgb_decomposer.cpp "jsk_perception/RGBDecomposer" "rg
jsk_perception_nodelet(src/hsv_decomposer.cpp "jsk_perception/HSVDecomposer" "hsv_decomposer")
jsk_perception_nodelet(src/contour_finder.cpp "jsk_perception/ContourFinder" "contour_finder")
jsk_perception_nodelet(src/snake_segmentation.cpp "jsk_perception/SnakeSegmentation" "snake_segmentation")
jsk_perception_nodelet(src/colorize_labels.cpp "jsk_perception/ColorizeLabels" "colorize_labels")
# compiling jsk_perception library for nodelet
add_library(${PROJECT_NAME} SHARED ${jsk_perception_nodelet_sources}
${CMAKE_CURRENT_BINARY_DIR}/build/patched-SLIC-Superpixels/slic.cpp)
Expand Down
63 changes: 63 additions & 0 deletions jsk_perception/include/jsk_perception/colorize_labels.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// -*- mode: c++ -*-
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2015, JSK Lab
* 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/o2r other materials provided
* with the distribution.
* * Neither the name of the JSK Lab 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.
*********************************************************************/


#ifndef JSK_PERCEPTION_COLORIZE_LABELS_H_
#define JSK_PERCEPTION_COLORIZE_LABELS_H_

#include <jsk_topic_tools/diagnostic_nodelet.h>
#include <sensor_msgs/Image.h>

namespace jsk_perception
{
class ColorizeLabels: public jsk_topic_tools::DiagnosticNodelet
{
public:
ColorizeLabels(): DiagnosticNodelet("ColorizeLabels") {}
protected:
virtual void onInit();
virtual void subscribe();
virtual void unsubscribe();
virtual void colorize(
const sensor_msgs::Image::ConstPtr& label_image);

ros::Publisher pub_;
ros::Subscriber sub_;
private:

};
}

#endif
5 changes: 5 additions & 0 deletions jsk_perception/jsk_perception_nodelets.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<library path="lib/libjsk_perception">
<class name="jsk_perception/ColorizeLabels" type="jsk_perception::ColorizeLabels"
base_class_type="nodelet::Nodelet">
<description>
</description>
</class>
<class name="jsk_perception/SnakeSegmentation" type="jsk_perception::SnakeSegmentation"
base_class_type="nodelet::Nodelet">
<description>
Expand Down
88 changes: 88 additions & 0 deletions jsk_perception/src/colorize_labels.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
// -*- mode: c++ -*-
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2015, JSK Lab
* 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/o2r other materials provided
* with the distribution.
* * Neither the name of the JSK Lab 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 "jsk_perception/colorize_labels.h"
#include <jsk_topic_tools/color_utils.h>
#include <cv_bridge/cv_bridge.h>
#include <opencv2/opencv.hpp>
#include <sensor_msgs/image_encodings.h>

namespace jsk_perception
{
void ColorizeLabels::onInit()
{
DiagnosticNodelet::onInit();
pub_ = advertise<sensor_msgs::Image>(
*pnh_, "output", 1);
}

void ColorizeLabels::subscribe()
{
sub_ = pnh_->subscribe("input", 1, &ColorizeLabels::colorize, this);
}

void ColorizeLabels::unsubscribe()
{
sub_.shutdown();
}

void ColorizeLabels::colorize(
const sensor_msgs::Image::ConstPtr& label_image_msg)
{
cv::Mat label_image = cv_bridge::toCvShare(
label_image_msg, label_image_msg->encoding)->image;
cv::Mat output_image = cv::Mat::zeros(label_image_msg->height,
label_image_msg->width,
CV_8UC3);
ROS_INFO("%dx%d", label_image_msg->width, label_image_msg->height);
for (size_t j = 0; j < label_image.rows; ++j) {
for (size_t i = 0; i < label_image.cols; ++i) {
int label = label_image.at<int>(j, i);
//ROS_INFO("label(%lu, %lu): %d", j, i, label);
std_msgs::ColorRGBA rgba = jsk_topic_tools::colorCategory20(label);
output_image.at<cv::Vec3b>(j, i)
= cv::Vec3b(int(rgba.b * 255), int(rgba.g * 255), int(rgba.r * 255));
}
}
pub_.publish(
cv_bridge::CvImage(
label_image_msg->header,
sensor_msgs::image_encodings::BGR8,
output_image).toImageMsg());
}
}

#include <pluginlib/class_list_macros.h>
PLUGINLIB_EXPORT_CLASS (jsk_perception::ColorizeLabels, nodelet::Nodelet);

0 comments on commit 630d2f2

Please sign in to comment.