src
widgets
perception_widget.h
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
#ifndef Q_MOC_RUN
45
#include <
moveit/setup_assistant/tools/moveit_config_data.h
>
46
#endif
47
48
#include "
setup_screen_widget.h
"
// a base class for screens in the setup assistant
49
50
namespace
moveit_setup_assistant
51
{
52
// ******************************************************************************************
53
// User Interface for setting up 3D sensor config
54
// ******************************************************************************************
55
class
PerceptionWidget
:
public
SetupScreenWidget
56
{
57
Q_OBJECT
58
59
public
:
60
// ******************************************************************************************
61
// Public Functions
62
// ******************************************************************************************
63
64
PerceptionWidget
(QWidget* parent,
const
MoveItConfigDataPtr& config_data);
65
67
void
focusGiven
()
override
;
68
70
bool
focusLost
()
override
;
71
73
void
loadSensorPluginsComboBox
();
74
uint
loadConfigIntoWidgets
(std::map<std::string, GenericParameter> sensor_plugin_config);
75
76
// ******************************************************************************************
77
// Qt Components
78
// ******************************************************************************************
79
80
QComboBox*
sensor_plugin_field_
;
81
82
// Group form for each plugin option
83
QGroupBox*
point_cloud_group_
;
84
QGroupBox*
depth_map_group_
;
85
86
// Point Cloud plugin feilds
87
QLineEdit*
point_cloud_topic_field_
;
88
QLineEdit*
max_range_field_
;
89
QLineEdit*
point_subsample_field_
;
90
QLineEdit*
padding_offset_field_
;
91
QLineEdit*
padding_scale_field_
;
92
QLineEdit*
max_update_rate_field_
;
93
QLineEdit*
filtered_cloud_topic_field_
;
94
95
// Depth Map plugin feilds
96
QLineEdit*
image_topic_field_
;
97
QLineEdit*
queue_size_field_
;
98
QLineEdit*
near_clipping_field_
;
99
QLineEdit*
far_clipping_field_
;
100
QLineEdit*
shadow_threshold_field_
;
101
QLineEdit*
depth_padding_scale_field_
;
102
QLineEdit*
depth_padding_offset_field_
;
103
QLineEdit*
depth_filtered_cloud_topic_field_
;
104
QLineEdit*
depth_max_update_rate_field_
;
105
106
private
Q_SLOTS:
107
108
// ******************************************************************************************
109
// Slot Event Functions
110
// ******************************************************************************************
111
113
void
sensorPluginChanged
(
int
index);
114
115
private
:
116
// ******************************************************************************************
117
// Variables
118
// ******************************************************************************************
119
121
moveit_setup_assistant::MoveItConfigDataPtr
config_data_
;
122
};
123
124
}
// namespace moveit_setup_assistant
moveit_setup_assistant::PerceptionWidget::depth_padding_scale_field_
QLineEdit * depth_padding_scale_field_
Definition:
perception_widget.h:101
moveit_setup_assistant::PerceptionWidget::config_data_
moveit_setup_assistant::MoveItConfigDataPtr config_data_
Contains all the configuration data for the setup assistant.
Definition:
perception_widget.h:121
moveit_setup_assistant::PerceptionWidget::loadSensorPluginsComboBox
void loadSensorPluginsComboBox()
Populate the combo dropdown box with sensor plugins.
Definition:
perception_widget.cpp:350
moveit_setup_assistant::PerceptionWidget::focusLost
bool focusLost() override
Received when another widget is chosen from the navigation menu.
Definition:
perception_widget.cpp:236
moveit_setup_assistant::PerceptionWidget::PerceptionWidget
PerceptionWidget(QWidget *parent, const MoveItConfigDataPtr &config_data)
Definition:
perception_widget.cpp:85
moveit_config_data.h
moveit_setup_assistant::PerceptionWidget::sensorPluginChanged
void sensorPluginChanged(int index)
Called when the selected item in the sensor_plugin_field_ combobox is changed.
Definition:
perception_widget.cpp:299
moveit_setup_assistant::PerceptionWidget::padding_offset_field_
QLineEdit * padding_offset_field_
Definition:
perception_widget.h:90
moveit_setup_assistant::PerceptionWidget::depth_padding_offset_field_
QLineEdit * depth_padding_offset_field_
Definition:
perception_widget.h:102
moveit_setup_assistant::PerceptionWidget::filtered_cloud_topic_field_
QLineEdit * filtered_cloud_topic_field_
Definition:
perception_widget.h:93
moveit_setup_assistant::PerceptionWidget::image_topic_field_
QLineEdit * image_topic_field_
Definition:
perception_widget.h:96
moveit_setup_assistant::PerceptionWidget::padding_scale_field_
QLineEdit * padding_scale_field_
Definition:
perception_widget.h:91
SetupScreenWidget
Definition:
setup_screen_widget.h:44
moveit_setup_assistant::PerceptionWidget::shadow_threshold_field_
QLineEdit * shadow_threshold_field_
Definition:
perception_widget.h:100
moveit_setup_assistant::PerceptionWidget::point_cloud_topic_field_
QLineEdit * point_cloud_topic_field_
Definition:
perception_widget.h:87
moveit_setup_assistant::PerceptionWidget::point_cloud_group_
QGroupBox * point_cloud_group_
Definition:
perception_widget.h:83
moveit_setup_assistant::PerceptionWidget::depth_filtered_cloud_topic_field_
QLineEdit * depth_filtered_cloud_topic_field_
Definition:
perception_widget.h:103
moveit_setup_assistant::PerceptionWidget::queue_size_field_
QLineEdit * queue_size_field_
Definition:
perception_widget.h:97
moveit_setup_assistant::PerceptionWidget::near_clipping_field_
QLineEdit * near_clipping_field_
Definition:
perception_widget.h:98
moveit_setup_assistant
Definition:
compute_default_collisions.h:46
moveit_setup_assistant::PerceptionWidget::depth_map_group_
QGroupBox * depth_map_group_
Definition:
perception_widget.h:84
setup_screen_widget.h
moveit_setup_assistant::PerceptionWidget::focusGiven
void focusGiven() override
Received when this widget is chosen from the navigation menu.
Definition:
perception_widget.cpp:228
moveit_setup_assistant::PerceptionWidget::max_update_rate_field_
QLineEdit * max_update_rate_field_
Definition:
perception_widget.h:92
moveit_setup_assistant::PerceptionWidget::sensor_plugin_field_
QComboBox * sensor_plugin_field_
Definition:
perception_widget.h:80
moveit_setup_assistant::PerceptionWidget::point_subsample_field_
QLineEdit * point_subsample_field_
Definition:
perception_widget.h:89
moveit_setup_assistant::PerceptionWidget::far_clipping_field_
QLineEdit * far_clipping_field_
Definition:
perception_widget.h:99
moveit_setup_assistant::PerceptionWidget::max_range_field_
QLineEdit * max_range_field_
Definition:
perception_widget.h:88
moveit_setup_assistant::PerceptionWidget::depth_max_update_rate_field_
QLineEdit * depth_max_update_rate_field_
Definition:
perception_widget.h:104
moveit_setup_assistant::PerceptionWidget
Definition:
perception_widget.h:55
moveit_setup_assistant::PerceptionWidget::loadConfigIntoWidgets
uint loadConfigIntoWidgets(std::map< std::string, GenericParameter > sensor_plugin_config)
Definition:
perception_widget.cpp:321
moveit_setup_assistant
Author(s): Dave Coleman
autogenerated on Sat May 3 2025 02:28:04