ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
ecvScalarFieldFromColorDlg.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
9 
10 // Qt
11 #include <QPushButton>
12 
13 // CV_DB_LIB
14 #include <assert.h>
15 #include <ecvPointCloud.h>
16 #ifdef _MSC_VER
17 #include <windows.h>
18 #endif
19 
21  : QDialog(parent, Qt::Tool), Ui::scalarFieldFromColorDlg() {
22  setupUi(this);
23 }
24 
26  return this->checkBoxR->isChecked();
27 }
28 
30  return this->checkBoxG->isChecked();
31 }
32 
34  return this->checkBoxB->isChecked();
35 }
36 
38  return this->checkBoxComposite->isChecked();
39 }
bool getCompositeStatus()
Returns if to export Composite channel as SF.
bool getBStatus()
Returns if to export B channel as SF.
bool getRStatus()
Returns if to export R channel as SF.
bool getGStatus()
Returns if to export G channel as SF.
ccScalarFieldFromColorDlg(QWidget *parent=0)
Default constructor.