-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #589 from garaemon/colorize-labels
[jsk_perception] Colorize labels
- Loading branch information
Showing
4 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |