moveit2
The MoveIt Motion Planning Framework for ROS 2.
moveit_setup_assistant
moveit_setup_app_plugins
include
moveit_setup_app_plugins
perception_widget.hpp
Go to the documentation of this file.
1
/*********************************************************************
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2018, Mohamad Ayman.
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
9
* are met:
10
*
11
* * Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
13
* * Redistributions in binary form must reproduce the above
14
* copyright notice, this list of conditions and the following
15
* disclaimer in the documentation and/or other materials provided
16
* with the distribution.
17
* * The name of Mohamad Ayman may not be used to endorse or promote products derived
18
* from this software without specific prior written permission.
19
*
20
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
* POSSIBILITY OF SUCH DAMAGE.
32
*********************************************************************/
33
34
/* Author: Mohamad Ayman */
35
36
#pragma once
37
38
// Qt
39
class
QComboBox;
40
class
QGroupBox;
41
class
QLineEdit;
42
43
// SA
44
#include <
moveit_setup_framework/qt/setup_step_widget.hpp
>
45
#include <
moveit_setup_app_plugins/perception.hpp
>
46
47
namespace
moveit_setup
48
{
49
namespace
app
50
{
51
// ******************************************************************************************
52
// User Interface for setting up 3D sensor config
53
// ******************************************************************************************
54
class
PerceptionWidget
:
public
SetupStepWidget
55
{
56
Q_OBJECT
57
58
public
:
59
// ******************************************************************************************
60
// Public Functions
61
// ******************************************************************************************
62
63
void
onInit
()
override
;
64
66
void
focusGiven
()
override
;
67
69
bool
focusLost
()
override
;
70
72
void
loadSensorPluginsComboBox
();
73
74
SetupStep
&
getSetupStep
()
override
75
{
76
return
setup_step_;
77
}
78
79
// ******************************************************************************************
80
// Qt Components
81
// ******************************************************************************************
82
83
QComboBox*
sensor_plugin_field_
;
84
85
// Group form for each plugin option
86
QGroupBox*
point_cloud_group_
;
87
QGroupBox*
depth_map_group_
;
88
89
// Point Cloud plugin feilds
90
QLineEdit*
point_cloud_topic_field_
;
91
QLineEdit*
max_range_field_
;
92
QLineEdit*
point_subsample_field_
;
93
QLineEdit*
padding_offset_field_
;
94
QLineEdit*
padding_scale_field_
;
95
QLineEdit*
max_update_rate_field_
;
96
QLineEdit*
filtered_cloud_topic_field_
;
97
98
// Depth Map plugin feilds
99
QLineEdit*
image_topic_field_
;
100
QLineEdit*
queue_size_field_
;
101
QLineEdit*
near_clipping_field_
;
102
QLineEdit*
far_clipping_field_
;
103
QLineEdit*
shadow_threshold_field_
;
104
QLineEdit*
depth_padding_scale_field_
;
105
QLineEdit*
depth_padding_offset_field_
;
106
QLineEdit*
depth_filtered_cloud_topic_field_
;
107
QLineEdit*
depth_max_update_rate_field_
;
108
109
private
Q_SLOTS:
110
111
// ******************************************************************************************
112
// Slot Event Functions
113
// ******************************************************************************************
114
116
void
sensorPluginChanged(
int
index);
117
118
private
:
119
// ******************************************************************************************
120
// Variables
121
// ******************************************************************************************
122
Perception
setup_step_;
123
};
124
125
}
// namespace app
126
}
// namespace moveit_setup
moveit_setup::SetupStepWidget
The GUI code for one SetupStep.
Definition:
setup_step_widget.hpp:49
moveit_setup::SetupStep
Contains all of the non-GUI code necessary for doing one "screen" worth of setup.
Definition:
setup_step.hpp:47
moveit_setup::app::PerceptionWidget
Definition:
perception_widget.hpp:55
moveit_setup::app::PerceptionWidget::getSetupStep
SetupStep & getSetupStep() override
Return a reference to the SetupStep object.
Definition:
perception_widget.hpp:74
moveit_setup::app::PerceptionWidget::point_cloud_topic_field_
QLineEdit * point_cloud_topic_field_
Definition:
perception_widget.hpp:90
moveit_setup::app::PerceptionWidget::loadSensorPluginsComboBox
void loadSensorPluginsComboBox()
Populate the combo dropdown box with sensor plugins.
Definition:
perception_widget.cpp:278
moveit_setup::app::PerceptionWidget::image_topic_field_
QLineEdit * image_topic_field_
Definition:
perception_widget.hpp:99
moveit_setup::app::PerceptionWidget::depth_padding_offset_field_
QLineEdit * depth_padding_offset_field_
Definition:
perception_widget.hpp:105
moveit_setup::app::PerceptionWidget::focusGiven
void focusGiven() override
Received when this widget is chosen from the navigation menu.
Definition:
perception_widget.cpp:205
moveit_setup::app::PerceptionWidget::depth_filtered_cloud_topic_field_
QLineEdit * depth_filtered_cloud_topic_field_
Definition:
perception_widget.hpp:106
moveit_setup::app::PerceptionWidget::focusLost
bool focusLost() override
Received when another widget is chosen from the navigation menu.
Definition:
perception_widget.cpp:213
moveit_setup::app::PerceptionWidget::padding_scale_field_
QLineEdit * padding_scale_field_
Definition:
perception_widget.hpp:94
moveit_setup::app::PerceptionWidget::max_range_field_
QLineEdit * max_range_field_
Definition:
perception_widget.hpp:91
moveit_setup::app::PerceptionWidget::sensor_plugin_field_
QComboBox * sensor_plugin_field_
Definition:
perception_widget.hpp:83
moveit_setup::app::PerceptionWidget::padding_offset_field_
QLineEdit * padding_offset_field_
Definition:
perception_widget.hpp:93
moveit_setup::app::PerceptionWidget::depth_map_group_
QGroupBox * depth_map_group_
Definition:
perception_widget.hpp:87
moveit_setup::app::PerceptionWidget::depth_max_update_rate_field_
QLineEdit * depth_max_update_rate_field_
Definition:
perception_widget.hpp:107
moveit_setup::app::PerceptionWidget::far_clipping_field_
QLineEdit * far_clipping_field_
Definition:
perception_widget.hpp:102
moveit_setup::app::PerceptionWidget::point_cloud_group_
QGroupBox * point_cloud_group_
Definition:
perception_widget.hpp:86
moveit_setup::app::PerceptionWidget::onInit
void onInit() override
Definition:
perception_widget.cpp:53
moveit_setup::app::PerceptionWidget::point_subsample_field_
QLineEdit * point_subsample_field_
Definition:
perception_widget.hpp:92
moveit_setup::app::PerceptionWidget::shadow_threshold_field_
QLineEdit * shadow_threshold_field_
Definition:
perception_widget.hpp:103
moveit_setup::app::PerceptionWidget::max_update_rate_field_
QLineEdit * max_update_rate_field_
Definition:
perception_widget.hpp:95
moveit_setup::app::PerceptionWidget::queue_size_field_
QLineEdit * queue_size_field_
Definition:
perception_widget.hpp:100
moveit_setup::app::PerceptionWidget::filtered_cloud_topic_field_
QLineEdit * filtered_cloud_topic_field_
Definition:
perception_widget.hpp:96
moveit_setup::app::PerceptionWidget::near_clipping_field_
QLineEdit * near_clipping_field_
Definition:
perception_widget.hpp:101
moveit_setup::app::PerceptionWidget::depth_padding_scale_field_
QLineEdit * depth_padding_scale_field_
Definition:
perception_widget.hpp:104
moveit_setup::app::Perception
Definition:
perception.hpp:46
moveit_joy.app
app
Definition:
moveit_joy.py:42
moveit_setup
Definition:
launch_bundle.hpp:42
perception.hpp
setup_step_widget.hpp
Generated by
1.9.1