1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 or later of the License. #
//# #
//# This program is distributed in the hope that it will be useful, #
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
//# GNU General Public License for more details. #
//# #
//# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#include "LASOpenDlg.h"
//Qt
#include <QMessageBox>
#include <QFileDialog>
#include <QFileInfo>
//System
#include <string.h>
#include <assert.h>
LASOpenDlg::LASOpenDlg(QWidget* parent)
: QDialog(parent)
, Ui::OpenLASFileDialog()
, m_autoSkip(false)
{
setupUi(this);
clearEVLRs();
connect(applyAllButton, &QAbstractButton::clicked, this, &LASOpenDlg::onApplyAll);
connect(browseToolButton, &QAbstractButton::clicked, this, &LASOpenDlg::onBrowse);
connect(tileGroupBox, &QGroupBox::toggled, applyAllButton, &QWidget::setDisabled);
//can't use the 'Apply all' button if tiling mode is enabled
applyAllButton->setEnabled(!tileGroupBox->isChecked());
if (tileGroupBox->isChecked())
{
tabWidget->setCurrentIndex(2);
}
}
void LASOpenDlg::resetApplyAll()
{
m_autoSkip = false;
}
void LASOpenDlg::onApplyAll()
{
m_autoSkip = true;
accept();
}
void LASOpenDlg::onBrowse()
{
QString outputPath = QFileDialog::getExistingDirectory(this, "Output path", outputPathLineEdit->text());
if (outputPath.isEmpty())
{
//cancelled
return;
}
outputPathLineEdit->setText(outputPath);
}
bool FieldIsPresent(const std::vector<std::string>& dimensions, LAS_FIELDS field)
{
for (const std::string& dimension : dimensions)
{
if (QString(dimension.c_str()).toUpper() == QString(LAS_FIELD_NAMES[field]).toUpper())
return true;
}
return false;
}
void LASOpenDlg::setDimensions(const std::vector<std::string>& dimensions)
{
redCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_RED));
greenCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_GREEN));
blueCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_BLUE));
intensityCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_INTENSITY));
bool hasClassif = FieldIsPresent(dimensions,LAS_CLASSIFICATION);
classifCheckBox->setEnabled(hasClassif);
decomposeClassifGroupBox->setEnabled(hasClassif);
timeCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_TIME));
returnNumberCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_RETURN_NUMBER));
numberOfReturnsCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_NUMBER_OF_RETURNS));
scanDirFlagCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_SCAN_DIRECTION));
edgeOfFlightCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_FLIGHT_LINE_EDGE));
scanAngleRankCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_SCAN_ANGLE_RANK));
userDataCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_USER_DATA));
pointSourceIDCheckBox->setEnabled(FieldIsPresent(dimensions,LAS_POINT_SOURCE_ID));
//classifValueCheckBox;
//classifSyntheticCheckBox;
//classifKeypointCheckBox;
//classifWithheldCheckBox;
}
bool LASOpenDlg::doLoad(LAS_FIELDS field) const
{
switch(field)
{
case LAS_X:
case LAS_Y:
case LAS_Z:
return true;
case LAS_INTENSITY:
return intensityCheckBox->isEnabled() && intensityCheckBox->isChecked();
case LAS_RETURN_NUMBER:
return returnNumberCheckBox->isEnabled() && returnNumberCheckBox->isChecked();
case LAS_NUMBER_OF_RETURNS:
return numberOfReturnsCheckBox->isEnabled() && numberOfReturnsCheckBox->isChecked();
case LAS_SCAN_DIRECTION:
return scanDirFlagCheckBox->isEnabled() && scanDirFlagCheckBox->isChecked();
case LAS_FLIGHT_LINE_EDGE:
return edgeOfFlightCheckBox->isEnabled() && edgeOfFlightCheckBox->isChecked();
case LAS_CLASSIFICATION:
return classifCheckBox->isEnabled() && classifCheckBox->isChecked() && !decomposeClassifGroupBox->isChecked();
case LAS_SCAN_ANGLE_RANK:
return scanAngleRankCheckBox->isEnabled() && scanAngleRankCheckBox->isChecked();
case LAS_USER_DATA:
return userDataCheckBox->isEnabled() && userDataCheckBox->isChecked();
case LAS_POINT_SOURCE_ID:
return pointSourceIDCheckBox->isEnabled() && pointSourceIDCheckBox->isChecked();
case LAS_RED:
return redCheckBox->isEnabled() && redCheckBox->isChecked();
case LAS_GREEN:
return greenCheckBox->isEnabled() && greenCheckBox->isChecked();
case LAS_BLUE:
return blueCheckBox->isEnabled() && blueCheckBox->isChecked();
case LAS_TIME:
return timeCheckBox->isEnabled() && timeCheckBox->isChecked();
case LAS_EXTRA:
return extraFieldGroupBox->isEnabled() && extraFieldGroupBox->isChecked();
case LAS_CLASSIF_VALUE:
return classifCheckBox->isEnabled() && classifCheckBox->isChecked() && decomposeClassifGroupBox->isChecked() && classifValueCheckBox->isChecked();
case LAS_CLASSIF_SYNTHETIC:
return classifCheckBox->isEnabled() && classifCheckBox->isChecked() && decomposeClassifGroupBox->isChecked() && classifSyntheticCheckBox->isChecked();
case LAS_CLASSIF_KEYPOINT:
return classifCheckBox->isEnabled() && classifCheckBox->isChecked() && decomposeClassifGroupBox->isChecked() && classifKeypointCheckBox->isChecked();
case LAS_CLASSIF_WITHHELD:
return classifCheckBox->isEnabled() && classifCheckBox->isChecked() && decomposeClassifGroupBox->isChecked() && classifWithheldCheckBox->isChecked();
case LAS_INVALID:
default:
assert(false);
return false;
}
return false;
}
void LASOpenDlg::clearEVLRs()
{
evlrListWidget->clear();
extraFieldGroupBox->setEnabled(false);
extraFieldGroupBox->setChecked(false);
}
void LASOpenDlg::setInfos( QString filename,
unsigned pointCount,
const CCVector3d& bbMin,
const CCVector3d& bbMax)
{
//default output path (for tiling)
outputPathLineEdit->setText(QFileInfo(filename).absolutePath());
//number of points
pointCountLineEdit->setText(QLocale().toString(pointCount));
//bounding-box
bbTextEdit->setText(QString("X = [%1 ; %2]\nY = [%3 ; %4]\nZ = [%5 ; %6]")
.arg(bbMin.x, 0, 'f').arg(bbMax.x, 0, 'f')
.arg(bbMin.y, 0, 'f').arg(bbMax.y, 0, 'f')
.arg(bbMin.z, 0, 'f').arg(bbMax.z, 0, 'f'));
}
void LASOpenDlg::addEVLR(QString description)
{
QListWidgetItem* item = new QListWidgetItem(description);
evlrListWidget->addItem(item);
//auto select the entry
item->setSelected(true);
//auto enable the extraFieldGroupBox
extraFieldGroupBox->setEnabled(true);
extraFieldGroupBox->setChecked(true);
}
bool LASOpenDlg::doLoadEVLR(size_t index) const
{
if (!extraFieldGroupBox->isChecked())
return false;
QListWidgetItem* item = evlrListWidget->item(static_cast<int>(index));
return item && item->isSelected();
}
bool LASOpenDlg::forced8bitRgbMode() const
{
return force8bitRgbCheckBox->isChecked();
}
|