include
jsk_pcl_ros
supervoxel_segmentation.h
Go to the documentation of this file.
1
// -*- mode: c++ -*-
2
/*********************************************************************
3
* Software License Agreement (BSD License)
4
*
5
* Copyright (c) 2014, 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/or 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
37
#ifndef JSK_PCL_ROS_SUPERVOXEL_SEGMENTATION_H_
38
#define JSK_PCL_ROS_SUPERVOXEL_SEGMENTATION_H_
39
40
#include <jsk_topic_tools/diagnostic_nodelet.h>
41
#include "
jsk_recognition_utils/pcl_conversion_util.h
"
42
#include <dynamic_reconfigure/server.h>
43
#include <jsk_pcl_ros/SupervoxelSegmentationConfig.h>
44
#include <jsk_recognition_msgs/ClusterPointIndices.h>
45
namespace
jsk_pcl_ros
46
{
47
class
SupervoxelSegmentation:
public
jsk_topic_tools::DiagnosticNodelet
48
{
49
public
:
50
typedef
pcl::PointXYZRGB
PointT
;
51
typedef
boost::shared_ptr<SupervoxelSegmentation>
Ptr
;
52
typedef
SupervoxelSegmentationConfig
Config
;
53
SupervoxelSegmentation
(): DiagnosticNodelet(
"SupervoxelSegmentation"
) {}
54
protected
:
56
// methods
58
virtual
void
onInit
();
59
virtual
void
subscribe
();
60
virtual
void
unsubscribe
();
61
virtual
void
segment
(
62
const
sensor_msgs::PointCloud2::ConstPtr& cloud_msg);
63
virtual
void
configCallback
(
Config
&config, uint32_t level);
65
// ROS variables
67
boost::mutex
mutex_
;
68
ros::Subscriber
sub_
;
69
boost::shared_ptr <dynamic_reconfigure::Server<Config>
>
srv_
;
70
ros::Publisher
pub_indices_
;
71
ros::Publisher
pub_cloud_
;
72
74
// parameters
76
double
color_importance_
;
77
double
spatial_importance_
;
78
double
normal_importance_
;
79
double
voxel_resolution_
;
80
double
seed_resolution_
;
81
bool
use_transform_
;
82
private
:
83
84
};
85
}
86
87
#endif
jsk_pcl_ros::SupervoxelSegmentation::Config
SupervoxelSegmentationConfig Config
Definition:
supervoxel_segmentation.h:116
jsk_pcl_ros::SupervoxelSegmentation::srv_
boost::shared_ptr< dynamic_reconfigure::Server< Config > > srv_
Definition:
supervoxel_segmentation.h:133
ros::Publisher
boost::shared_ptr
jsk_pcl_ros::SupervoxelSegmentation::PointT
pcl::PointXYZRGB PointT
Definition:
supervoxel_segmentation.h:114
jsk_pcl_ros::SupervoxelSegmentation::sub_
ros::Subscriber sub_
Definition:
supervoxel_segmentation.h:132
jsk_pcl_ros::SupervoxelSegmentation::segment
virtual void segment(const sensor_msgs::PointCloud2::ConstPtr &cloud_msg)
Definition:
supervoxel_segmentation_nodelet.cpp:66
jsk_pcl_ros::SupervoxelSegmentation::configCallback
virtual void configCallback(Config &config, uint32_t level)
Definition:
supervoxel_segmentation_nodelet.cpp:116
jsk_pcl_ros::SupervoxelSegmentation::onInit
virtual void onInit()
Definition:
supervoxel_segmentation_nodelet.cpp:41
jsk_pcl_ros::SupervoxelSegmentation::color_importance_
double color_importance_
Definition:
supervoxel_segmentation.h:140
jsk_pcl_ros::SupervoxelSegmentation::seed_resolution_
double seed_resolution_
Definition:
supervoxel_segmentation.h:144
jsk_pcl_ros::SupervoxelSegmentation::SupervoxelSegmentation
SupervoxelSegmentation()
Definition:
supervoxel_segmentation.h:117
jsk_pcl_ros::SupervoxelSegmentation::use_transform_
bool use_transform_
Definition:
supervoxel_segmentation.h:145
jsk_pcl_ros::SupervoxelSegmentation::pub_cloud_
ros::Publisher pub_cloud_
Definition:
supervoxel_segmentation.h:135
jsk_pcl_ros::SupervoxelSegmentation::spatial_importance_
double spatial_importance_
Definition:
supervoxel_segmentation.h:141
jsk_pcl_ros
Definition:
add_color_from_image.h:51
jsk_pcl_ros::SupervoxelSegmentation::normal_importance_
double normal_importance_
Definition:
supervoxel_segmentation.h:142
pcl_conversion_util.h
jsk_pcl_ros::SupervoxelSegmentation::Ptr
boost::shared_ptr< SupervoxelSegmentation > Ptr
Definition:
supervoxel_segmentation.h:115
jsk_pcl_ros::SupervoxelSegmentation::unsubscribe
virtual void unsubscribe()
Definition:
supervoxel_segmentation_nodelet.cpp:61
jsk_pcl_ros::SupervoxelSegmentation::pub_indices_
ros::Publisher pub_indices_
Definition:
supervoxel_segmentation.h:134
mutex
boost::mutex mutex
global mutex.
Definition:
depth_camera_error_visualization.cpp:86
jsk_pcl_ros::SupervoxelSegmentation::subscribe
virtual void subscribe()
Definition:
supervoxel_segmentation_nodelet.cpp:56
jsk_pcl_ros::SupervoxelSegmentation::voxel_resolution_
double voxel_resolution_
Definition:
supervoxel_segmentation.h:143
ros::Subscriber
jsk_pcl_ros::SupervoxelSegmentation::mutex_
boost::mutex mutex_
Definition:
supervoxel_segmentation.h:131
jsk_pcl_ros
Author(s): Yohei Kakiuchi
autogenerated on Tue Jan 7 2025 04:05:45