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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
//##########################################################################
//# #
//# 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 "ccPointListPickingDlg.h"
//Qt
#include <QSettings>
#include <QFileDialog>
#include <QMenu>
#include <QClipboard>
#include <QApplication>
#include <QMessageBox>
//CCLib
#include <CCConst.h>
//qCC_db
#include <ccLog.h>
#include <ccPointCloud.h>
#include <cc2DLabel.h>
#include <ccPolyline.h>
//qCC_io
#include <AsciiFilter.h>
//local
#include "ccGLWindow.h"
#include "mainwindow.h"
#include "db_tree/ccDBRoot.h"
//system
#include <assert.h>
//semi persistent settings
static unsigned s_pickedPointsStartIndex = 0;
static bool s_showGlobalCoordsCheckBoxChecked = false;
static const char s_pickedPointContainerName[] = "Picked points list";
static const char s_defaultLabelBaseName[] = "Point #";
ccPointListPickingDlg::ccPointListPickingDlg(ccPickingHub* pickingHub, QWidget* parent)
: ccPointPickingGenericInterface(pickingHub, parent)
, Ui::PointListPickingDlg()
, m_associatedCloud(0)
, m_lastPreviousID(0)
, m_orderedLabelsContainer(0)
{
setupUi(this);
exportToolButton->setPopupMode(QToolButton::MenuButtonPopup);
QMenu* menu = new QMenu(exportToolButton);
QAction* exportASCII_xyz = menu->addAction("x,y,z");
QAction* exportASCII_ixyz = menu->addAction("local index,x,y,z");
QAction* exportASCII_gxyz = menu->addAction("global index,x,y,z");
QAction* exportASCII_lxyz = menu->addAction("label name,x,y,z");
QAction* exportToNewCloud = menu->addAction("new cloud");
QAction* exportToNewPolyline = menu->addAction("new polyline");
exportToolButton->setMenu(menu);
tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
startIndexSpinBox->setValue(s_pickedPointsStartIndex);
showGlobalCoordsCheckBox->setChecked(s_showGlobalCoordsCheckBoxChecked);
connect(cancelToolButton, SIGNAL(clicked()), this, SLOT(cancelAndExit()));
connect(revertToolButton, SIGNAL(clicked()), this, SLOT(removeLastEntry()));
connect(validToolButton, SIGNAL(clicked()), this, SLOT(applyAndExit()));
connect(exportToolButton, SIGNAL(clicked()), exportToolButton, SLOT(showMenu()));
connect(exportASCII_xyz, SIGNAL(triggered()), this, SLOT(exportToASCII_xyz()));
connect(exportASCII_ixyz, SIGNAL(triggered()), this, SLOT(exportToASCII_ixyz()));
connect(exportASCII_gxyz, SIGNAL(triggered()), this, SLOT(exportToASCII_gxyz()));
connect(exportASCII_lxyz, SIGNAL(triggered()), this, SLOT(exportToASCII_lxyz()));
connect(exportToNewCloud, SIGNAL(triggered()), this, SLOT(exportToNewCloud()));
connect(exportToNewPolyline, SIGNAL(triggered()), this, SLOT(exportToNewPolyline()));
connect(markerSizeSpinBox, SIGNAL(valueChanged(int)), this, SLOT(markerSizeChanged(int)));
connect(startIndexSpinBox, SIGNAL(valueChanged(int)), this, SLOT(startIndexChanged(int)));
connect(showGlobalCoordsCheckBox, SIGNAL(clicked()), this, SLOT(updateList()));
updateList();
}
unsigned ccPointListPickingDlg::getPickedPoints(std::vector<cc2DLabel*>& pickedPoints)
{
pickedPoints.clear();
if (m_orderedLabelsContainer)
{
//get all labels
ccHObject::Container labels;
unsigned count = m_orderedLabelsContainer->filterChildren(labels, false, CC_TYPES::LABEL_2D);
try
{
pickedPoints.reserve(count);
}
catch (const std::bad_alloc&)
{
ccLog::Error("Not enough memory!");
return 0;
}
for (unsigned i = 0; i < count; ++i)
{
if (labels[i]->isA(CC_TYPES::LABEL_2D)) //Warning: cc2DViewportLabel is also a kind of 'CC_TYPES::LABEL_2D'!
{
cc2DLabel* label = static_cast<cc2DLabel*>(labels[i]);
if (label->isVisible() && label->size() == 1)
{
pickedPoints.push_back(label);
}
}
}
}
return static_cast<unsigned>(pickedPoints.size());
}
void ccPointListPickingDlg::linkWithCloud(ccPointCloud* cloud)
{
m_associatedCloud = cloud;
m_lastPreviousID = 0;
if (m_associatedCloud)
{
//find default container
m_orderedLabelsContainer = 0;
ccHObject::Container groups;
m_associatedCloud->filterChildren(groups,true,CC_TYPES::HIERARCHY_OBJECT);
for (ccHObject::Container::const_iterator it = groups.begin(); it != groups.end(); ++it)
{
if ((*it)->getName() == s_pickedPointContainerName)
{
m_orderedLabelsContainer = *it;
break;
}
}
std::vector<cc2DLabel*> previousPickedPoints;
unsigned count = getPickedPoints(previousPickedPoints);
//find highest unique ID among the VISIBLE labels
for (unsigned i = 0; i < count; ++i)
{
m_lastPreviousID = std::max(m_lastPreviousID, previousPickedPoints[i]->getUniqueID());
}
}
showGlobalCoordsCheckBox->setEnabled(cloud ? cloud->isShifted() : false);
updateList();
}
void ccPointListPickingDlg::cancelAndExit()
{
ccDBRoot* dbRoot = MainWindow::TheInstance()->db();
if (!dbRoot)
{
assert(false);
return;
}
if (m_orderedLabelsContainer)
{
//Restore previous state
if (!m_toBeAdded.empty())
{
dbRoot->removeElements(m_toBeAdded);
}
for (size_t j = 0; j < m_toBeDeleted.size(); ++j)
{
m_toBeDeleted[j]->prepareDisplayForRefresh();
m_toBeDeleted[j]->setEnabled(true);
}
if (m_orderedLabelsContainer->getChildrenNumber() == 0)
{
dbRoot->removeElement(m_orderedLabelsContainer);
//m_associatedCloud->removeChild(m_orderedLabelsContainer);
m_orderedLabelsContainer = 0;
}
}
m_toBeDeleted.resize(0);
m_toBeAdded.resize(0);
m_associatedCloud = 0;
m_orderedLabelsContainer = 0;
MainWindow::RefreshAllGLWindow();
updateList();
stop(false);
}
void ccPointListPickingDlg::exportToNewCloud()
{
if (!m_associatedCloud)
return;
//get all labels
std::vector<cc2DLabel*> labels;
unsigned count = getPickedPoints(labels);
if (count != 0)
{
ccPointCloud* cloud = new ccPointCloud();
if (cloud->reserve(count))
{
cloud->setName("Picking list");
for (unsigned i = 0; i < count; ++i)
{
const cc2DLabel::PickedPoint& PP = labels[i]->getPoint(0);
const CCVector3* P = PP.cloud->getPoint(PP.index);
cloud->addPoint(*P);
}
cloud->setDisplay(m_associatedCloud->getDisplay());
cloud->setGlobalShift(m_associatedCloud->getGlobalShift());
cloud->setGlobalScale(m_associatedCloud->getGlobalScale());
MainWindow::TheInstance()->addToDB(cloud);
}
else
{
ccLog::Error("Can't export picked points as point cloud: not enough memory!");
delete cloud;
cloud = 0;
}
}
else
{
ccLog::Error("Pick some points first!");
}
}
void ccPointListPickingDlg::exportToNewPolyline()
{
if (!m_associatedCloud)
return;
//get all labels
std::vector<cc2DLabel*> labels;
unsigned count = getPickedPoints(labels);
if (count > 1)
{
//we create an "independent" polyline
ccPointCloud* vertices = new ccPointCloud("vertices");
ccPolyline* polyline = new ccPolyline(vertices);
if (!vertices->reserve(count) || !polyline->reserve(count))
{
ccLog::Error("Not enough memory!");
delete vertices;
delete polyline;
return;
}
for (unsigned i = 0; i < count; ++i)
{
const cc2DLabel::PickedPoint& PP = labels[i]->getPoint(0);
vertices->addPoint(*PP.cloud->getPoint(PP.index));
}
polyline->addPointIndex(0, count);
polyline->setVisible(true);
vertices->setEnabled(false);
polyline->setGlobalShift(m_associatedCloud->getGlobalShift());
polyline->setGlobalScale(m_associatedCloud->getGlobalScale());
polyline->addChild(vertices);
polyline->setDisplay_recursive(m_associatedCloud->getDisplay());
MainWindow::TheInstance()->addToDB(polyline);
}
else
{
ccLog::Error("Pick at least two points!");
}
}
void ccPointListPickingDlg::applyAndExit()
{
if (m_associatedCloud && !m_toBeDeleted.empty())
{
//apply modifications
MainWindow::TheInstance()->db()->removeElements(m_toBeDeleted); //no need to redraw as they should already be invisible
m_associatedCloud = 0;
}
m_toBeDeleted.resize(0);
m_toBeAdded.resize(0);
m_orderedLabelsContainer = 0;
updateList();
stop(true);
}
void ccPointListPickingDlg::removeLastEntry()
{
if (!m_associatedCloud)
return;
//get all labels
std::vector<cc2DLabel*> labels;
unsigned count = getPickedPoints(labels);
if (count == 0)
return;
ccHObject* lastVisibleLabel = labels.back();
if (lastVisibleLabel->getUniqueID() <= m_lastPreviousID)
{
//old label: hide it and add it to the 'to be deleted' list (will be restored if process is cancelled)
lastVisibleLabel->setEnabled(false);
m_toBeDeleted.push_back(lastVisibleLabel);
}
else
{
if (!m_toBeAdded.empty())
{
assert(m_toBeAdded.back() == lastVisibleLabel);
m_toBeAdded.pop_back();
}
if (m_orderedLabelsContainer)
{
if (lastVisibleLabel->getParent())
{
lastVisibleLabel->getParent()->removeDependencyWith(lastVisibleLabel);
lastVisibleLabel->removeDependencyWith(lastVisibleLabel->getParent());
}
//m_orderedLabelsContainer->removeChild(lastVisibleLabel);
MainWindow::TheInstance()->db()->removeElement(lastVisibleLabel);
}
else
m_associatedCloud->detachChild(lastVisibleLabel);
}
updateList();
if (m_associatedWin)
m_associatedWin->redraw();
}
void ccPointListPickingDlg::startIndexChanged(int value)
{
unsigned int uValue = static_cast<unsigned int>(value);
if (uValue != s_pickedPointsStartIndex)
{
s_pickedPointsStartIndex = uValue;
updateList();
if (m_associatedWin)
m_associatedWin->redraw();
}
}
void ccPointListPickingDlg::markerSizeChanged(int size)
{
if (size < 1 || !m_associatedWin)
return;
//display parameters
ccGui::ParamStruct guiParams = m_associatedWin->getDisplayParameters();
if (guiParams.labelMarkerSize != static_cast<unsigned>(size))
{
guiParams.labelMarkerSize = static_cast<unsigned>(size);
m_associatedWin->setDisplayParameters(guiParams,m_associatedWin->hasOverridenDisplayParameters());
m_associatedWin->redraw();
}
}
void ccPointListPickingDlg::exportToASCII(ExportFormat format)
{
if (!m_associatedCloud)
return;
//get all labels
std::vector<cc2DLabel*> labels;
unsigned count = getPickedPoints(labels);
if (count == 0)
return;
QSettings settings;
settings.beginGroup("PointListPickingDlg");
QString filename = settings.value("filename", "picking_list.txt").toString();
settings.endGroup();
filename = QFileDialog::getSaveFileName(this,
"Export to ASCII",
filename,
AsciiFilter::GetFileFilter());
if (filename.isEmpty())
return;
settings.beginGroup("PointListPickingDlg");
settings.setValue("filename", filename);
settings.endGroup();
FILE* fp = fopen(qPrintable(filename), "wt");
if (!fp)
{
ccLog::Error(QString("Failed to open file '%1' for saving!").arg(filename));
return;
}
//if a global shift exists, ask the user if it should be applied
CCVector3d shift = m_associatedCloud->getGlobalShift();
double scale = m_associatedCloud->getGlobalScale();
if (shift.norm2() != 0 || scale != 1.0)
{
if (QMessageBox::warning( this,
"Apply global shift",
"Do you want to apply global shift/scale to exported points?",
QMessageBox::Yes | QMessageBox::No,
QMessageBox::Yes ) == QMessageBox::No)
{
//reset shift
shift = CCVector3d(0,0,0);
scale = 1.0;
}
}
//starting index
unsigned startIndex = static_cast<unsigned>(std::max(0, startIndexSpinBox->value()));
for (unsigned i = 0; i < count; ++i)
{
assert(labels[i]->size() == 1);
const cc2DLabel::PickedPoint& PP = labels[i]->getPoint(0);
const CCVector3* P = PP.cloud->getPoint(PP.index);
switch (format)
{
case PLP_ASCII_EXPORT_IXYZ:
fprintf(fp, "%u,", i + startIndex);
break;
case PLP_ASCII_EXPORT_GXYZ:
fprintf(fp, "%u,", PP.index);
break;
case PLP_ASCII_EXPORT_LXYZ:
fprintf(fp, "%s,", qPrintable(labels[i]->getName()));
break;
default:
//nothing to do
break;
}
fprintf(fp, "%.12f,%.12f,%.12f\n", static_cast<double>(P->x) / scale - shift.x,
static_cast<double>(P->y) / scale - shift.y,
static_cast<double>(P->z) / scale - shift.z);
}
fclose(fp);
ccLog::Print(QString("[I/O] File '%1' saved successfully").arg(filename));
}
void ccPointListPickingDlg::updateList()
{
//get all labels
std::vector<cc2DLabel*> labels;
unsigned count = getPickedPoints(labels);
revertToolButton->setEnabled(count);
validToolButton->setEnabled(count);
exportToolButton->setEnabled(count);
countLineEdit->setText(QString::number(count));
tableWidget->setRowCount(count);
if (!count)
return;
//starting index
int startIndex = startIndexSpinBox->value();
int precision = m_associatedWin ? m_associatedWin->getDisplayParameters().displayedNumPrecision : 6;
bool showAbsolute = showGlobalCoordsCheckBox->isEnabled() && showGlobalCoordsCheckBox->isChecked();
for (unsigned i = 0; i < count; ++i)
{
const cc2DLabel::PickedPoint& PP = labels[i]->getPoint(0);
const CCVector3* P = PP.cloud->getPoint(PP.index);
CCVector3d Pd = (showAbsolute ? PP.cloud->toGlobal3d(*P) : CCVector3d::fromArray(P->u));
//point index in list
tableWidget->setVerticalHeaderItem(i, new QTableWidgetItem(QString("%1").arg(i + startIndex)));
//update name as well
if ( labels[i]->getUniqueID() > m_lastPreviousID
|| labels[i]->getName().startsWith(s_defaultLabelBaseName) ) //DGM: we don't change the name of old labels that have a non-default name
{
labels[i]->setName(s_defaultLabelBaseName + QString::number(i+startIndex));
}
//point absolute index (in cloud)
tableWidget->setItem(i, 0, new QTableWidgetItem(QString("%1").arg(PP.index)));
for (unsigned j = 0; j < 3; ++j)
tableWidget->setItem(i, j + 1, new QTableWidgetItem(QString("%1").arg(Pd.u[j], 0, 'f', precision)));
}
tableWidget->scrollToBottom();
}
void ccPointListPickingDlg::processPickedPoint(ccPointCloud* cloud, unsigned pointIndex, int x, int y)
{
if (cloud != m_associatedCloud || !cloud || !MainWindow::TheInstance())
return;
cc2DLabel* newLabel = new cc2DLabel();
newLabel->addPoint(cloud,pointIndex);
newLabel->setVisible(true);
newLabel->setDisplayedIn2D(false);
newLabel->displayPointLegend(true);
newLabel->setCollapsed(true);
ccGenericGLDisplay* display = m_associatedCloud->getDisplay();
if (display)
{
newLabel->setDisplay(display);
QSize size = display->getScreenSize();
newLabel->setPosition( static_cast<float>(x + 20) / size.width(),
static_cast<float>(y + 20) / size.height() );
}
//add default container if necessary
if (!m_orderedLabelsContainer)
{
m_orderedLabelsContainer = new ccHObject(s_pickedPointContainerName);
m_associatedCloud->addChild(m_orderedLabelsContainer);
m_orderedLabelsContainer->setDisplay(display);
MainWindow::TheInstance()->addToDB(m_orderedLabelsContainer, false, true, false, false);
}
assert(m_orderedLabelsContainer);
m_orderedLabelsContainer->addChild(newLabel);
MainWindow::TheInstance()->addToDB(newLabel, false, true, false, false);
m_toBeAdded.push_back(newLabel);
//automatically send the new point coordinates to the clipboard
QClipboard* clipboard = QApplication::clipboard();
if (clipboard)
{
const CCVector3* P = cloud->getPoint(pointIndex);
int precision = m_associatedWin ? m_associatedWin->getDisplayParameters().displayedNumPrecision : 6;
int indexInList = startIndexSpinBox->value() + static_cast<int>(m_orderedLabelsContainer->getChildrenNumber()) - 1;
clipboard->setText(QString("CC_POINT_#%0(%1;%2;%3)").arg(indexInList).arg(P->x, 0, 'f', precision).arg(P->y, 0, 'f', precision).arg(P->z, 0, 'f', precision));
}
updateList();
if (m_associatedWin)
m_associatedWin->redraw();
}
|