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 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
|
//##########################################################################
//# #
//# 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 "ccTracePolylineTool.h"
//Local
#include "mainwindow.h"
//common
#include <ccPickingHub.h>
//CCLib
#include <ManualSegmentationTools.h>
#include <SquareMatrix.h>
//qCC_db
#include <ccLog.h>
#include <ccPolyline.h>
#include <ccGenericPointCloud.h>
#include <ccPointCloud.h>
#include <ccMesh.h>
#include <ccHObjectCaster.h>
#include <cc2DViewportObject.h>
//qCC_gl
#include <ccGLWindow.h>
//Qt
#include <QMenu>
#include <QMessageBox>
#include <QPushButton>
#include <QProgressDialog>
//System
#include <assert.h>
#include <iostream>
ccTracePolylineTool::SegmentGLParams::SegmentGLParams(ccGenericGLDisplay* display, int x , int y)
{
if (display)
{
display->getGLCameraParameters(params);
QPointF pos2D = display->toCornerGLCoordinates(x, y);
clickPos = CCVector2d(pos2D.x(), pos2D.y());
}
}
ccTracePolylineTool::ccTracePolylineTool(ccPickingHub* pickingHub, QWidget* parent)
: ccOverlayDialog(parent)
, Ui::TracePolyLineDlg()
, m_polyTip(0)
, m_polyTipVertices(0)
, m_poly3D(0)
, m_poly3DVertices(0)
, m_done(false)
, m_pickingHub(pickingHub)
{
assert(pickingHub);
setupUi(this);
setWindowFlags(Qt::FramelessWindowHint | Qt::Tool);
connect(saveToolButton, SIGNAL(clicked()), this, SLOT(exportLine()));
connect(resetToolButton, SIGNAL(clicked()), this, SLOT(resetLine()));
connect(continueToolButton, SIGNAL(clicked()), this, SLOT(continueEdition()));
connect(validButton, SIGNAL(clicked()), this, SLOT(apply()));
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancel()));
connect(widthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(onWidthSizeChanged(int)));
//add shortcuts
addOverridenShortcut(Qt::Key_Escape); //escape key for the "cancel" button
addOverridenShortcut(Qt::Key_Return); //return key for the "apply" button
connect(this, SIGNAL(shortcutTriggered(int)), this, SLOT(onShortcutTriggered(int)));
m_polyTipVertices = new ccPointCloud("Tip vertices");
m_polyTipVertices->reserve(2);
m_polyTipVertices->addPoint(CCVector3(0, 0, 0));
m_polyTipVertices->addPoint(CCVector3(1, 1, 1));
m_polyTipVertices->setEnabled(false);
m_polyTip = new ccPolyline(m_polyTipVertices);
m_polyTip->setForeground(true);
m_polyTip->setTempColor(ccColor::green);
m_polyTip->set2DMode(true);
m_polyTip->reserve(2);
m_polyTip->addPointIndex(0, 2);
m_polyTip->setWidth(widthSpinBox->value() < 2 ? 0 : widthSpinBox->value()); //'1' is equivalent to the default line size
m_polyTip->addChild(m_polyTipVertices);
validButton->setEnabled(false);
}
ccTracePolylineTool::~ccTracePolylineTool()
{
if (m_polyTip)
delete m_polyTip;
//DGM: already a child of m_polyTip
//if (m_polyTipVertices)
// delete m_polyTipVertices;
if (m_poly3D)
delete m_poly3D;
//DGM: already a child of m_poly3D
//if (m_poly3DVertices)
// delete m_poly3DVertices;
}
void ccTracePolylineTool::onShortcutTriggered(int key)
{
switch (key)
{
case Qt::Key_Return:
apply();
return;
case Qt::Key_Escape:
cancel();
return;
default:
//nothing to do
break;
}
}
ccPolyline* ccTracePolylineTool::polylineOverSampling(unsigned steps) const
{
if (!m_poly3D || !m_poly3DVertices || m_segmentParams.size() != m_poly3DVertices->size())
{
assert(false);
return 0;
}
if (steps <= 1)
{
//nothing to do
return 0;
}
ccHObject::Container clouds;
m_associatedWin->getSceneDB()->filterChildren(clouds, true, CC_TYPES::POINT_CLOUD, false, m_associatedWin);
ccHObject::Container meshes;
m_associatedWin->getSceneDB()->filterChildren(meshes, true, CC_TYPES::MESH, false, m_associatedWin);
if (clouds.empty() && meshes.empty())
{
//no entity is currently displayed?!
assert(false);
return 0;
}
unsigned n_verts = m_poly3DVertices->size();
unsigned n_segments = m_poly3D->size() - (m_poly3D->isClosed() ? 0 : 1);
unsigned end_size = n_segments * steps + (m_poly3D->isClosed() ? 0 : 1);
ccPointCloud* newVertices = new ccPointCloud();
ccPolyline* newPoly = new ccPolyline(newVertices);
newPoly->addChild(newVertices);
if ( !newVertices->reserve(end_size)
|| !newPoly->reserve(end_size) )
{
ccLog::Warning("[ccTracePolylineTool::PolylineOverSampling] Not enough memory");
delete newPoly;
return 0;
}
newVertices->importParametersFrom(m_poly3DVertices);
newVertices->setName(m_poly3DVertices->getName());
newVertices->setEnabled(m_poly3DVertices->isEnabled());
newPoly->importParametersFrom(*m_poly3D);
newPoly->setDisplay_recursive(m_poly3D->getDisplay());
QProgressDialog pDlg(QString("Oversampling"), "Cancel", 0, static_cast<int>(end_size), m_associatedWin ? m_associatedWin->asWidget() : 0);
pDlg.show();
QCoreApplication::processEvents();
for (unsigned i = 0; i < n_segments; ++i)
{
const CCVector3* p1 = m_poly3DVertices->getPoint(i);
newVertices->addPoint(*p1);
unsigned i2 = (i + 1) % n_verts;
CCVector2d v = m_segmentParams[i2].clickPos - m_segmentParams[i].clickPos;
v /= steps;
for (unsigned j = 1; j < steps; j++)
{
CCVector2d vj = m_segmentParams[i].clickPos + v * j;
CCVector3 nearestPoint;
double nearestElementSquareDist = -1.0;
//for each cloud
for (size_t c = 0; c < clouds.size(); ++c)
{
ccGenericPointCloud* cloud = static_cast<ccGenericPointCloud*>(clouds[c]);
if (!cloud->isDisplayedIn(m_associatedWin))
{
continue;
}
int nearestPointIndex = -1;
double nearestSquareDist = 0;
if (cloud->pointPicking(vj,
m_segmentParams[i2].params,
nearestPointIndex,
nearestSquareDist,
snapSizeSpinBox->value(),
snapSizeSpinBox->value(),
true))
{
if (nearestElementSquareDist < 0 || nearestSquareDist < nearestElementSquareDist)
{
nearestElementSquareDist = nearestSquareDist;
nearestPoint = *cloud->getPoint(nearestPointIndex);
}
}
}
//for each mesh
for (size_t m = 0; m < meshes.size(); ++m)
{
ccGenericMesh* mesh = static_cast<ccGenericMesh*>(meshes[m]);
if (!mesh->isDisplayedIn(m_associatedWin))
{
continue;
}
int nearestTriIndex = -1;
double nearestSquareDist = 0;
CCVector3d _nearestPoint;
if (mesh->trianglePicking( vj,
m_segmentParams[i2].params,
nearestTriIndex,
nearestSquareDist,
_nearestPoint))
{
if (nearestElementSquareDist < 0 || nearestSquareDist < nearestElementSquareDist)
{
nearestElementSquareDist = nearestSquareDist;
nearestPoint = CCVector3::fromArray(_nearestPoint.u);
}
}
}
if (nearestElementSquareDist >= 0)
{
newVertices->addPoint(nearestPoint);
}
if (pDlg.wasCanceled())
{
steps = 0; //quick finish ;)
break;
}
pDlg.setValue(pDlg.value() + 1);
}
}
//add last point
if (!m_poly3D->isClosed())
{
newVertices->addPoint(*m_poly3DVertices->getPoint(n_verts - 1));
}
newVertices->shrinkToFit();
newPoly->addPointIndex(0, newVertices->size());
return newPoly;
}
bool ccTracePolylineTool::linkWith(ccGLWindow* win)
{
assert(m_polyTip);
assert(!m_poly3D || !win);
ccGLWindow* oldWin = m_associatedWin;
if (!ccOverlayDialog::linkWith(win))
{
return false;
}
if (oldWin)
{
oldWin->removeFromOwnDB(m_polyTip);
oldWin->disconnect(this);
if (m_polyTip)
m_polyTip->setDisplay(0);
}
if (m_associatedWin)
{
//connect(m_associatedWin, SIGNAL(itemPicked(ccHObject*, unsigned, int, int, const CCVector3&)), this, SLOT(handlePickedItem(ccHObject*, unsigned, int, int, const CCVector3&)));
//connect(m_associatedWin, SIGNAL(leftButtonClicked(int, int)), this, SLOT(addPointToPolyline(int, int)));
connect(m_associatedWin, SIGNAL(rightButtonClicked(int, int)), this, SLOT(closePolyLine(int, int)));
connect(m_associatedWin, SIGNAL(mouseMoved(int, int, Qt::MouseButtons)), this, SLOT(updatePolyLineTip(int, int, Qt::MouseButtons)));
}
return true;
}
static int s_defaultPickingRadius = 1;
static int s_overSamplingCount = 1;
bool ccTracePolylineTool::start()
{
assert(m_polyTip);
assert(!m_poly3D);
if (!m_associatedWin)
{
ccLog::Warning("[Trace Polyline Tool] No associated window!");
return false;
}
m_associatedWin->setUnclosable(true);
m_associatedWin->addToOwnDB(m_polyTip);
if (m_pickingHub)
{
m_pickingHub->removeListener(this);
}
m_associatedWin->setPickingMode(ccGLWindow::NO_PICKING);
m_associatedWin->setInteractionMode( ccGLWindow::TRANSFORM_CAMERA()
| ccGLWindow::INTERACT_SIG_RB_CLICKED
| ccGLWindow::INTERACT_CTRL_PAN
| ccGLWindow::INTERACT_SIG_MOUSE_MOVED);
m_associatedWin->setCursor(Qt::CrossCursor);
snapSizeSpinBox->blockSignals(true);
snapSizeSpinBox->setValue(s_defaultPickingRadius);
snapSizeSpinBox->blockSignals(false);
oversampleSpinBox->blockSignals(true);
oversampleSpinBox->setValue(s_overSamplingCount);
oversampleSpinBox->blockSignals(false);
resetLine(); //to reset the GUI
return ccOverlayDialog::start();
}
void ccTracePolylineTool::stop(bool accepted)
{
assert(m_polyTip);
if (m_pickingHub)
{
m_pickingHub->removeListener(this);
}
if (m_associatedWin)
{
m_associatedWin->displayNewMessage("Polyline tracing [OFF]",
ccGLWindow::UPPER_CENTER_MESSAGE,
false,
2,
ccGLWindow::MANUAL_SEGMENTATION_MESSAGE);
m_associatedWin->setUnclosable(false);
m_associatedWin->removeFromOwnDB(m_polyTip);
m_associatedWin->setInteractionMode(ccGLWindow::TRANSFORM_CAMERA());
m_associatedWin->setCursor(Qt::ArrowCursor);
}
s_defaultPickingRadius = snapSizeSpinBox->value();
s_overSamplingCount = oversampleSpinBox->value();
ccOverlayDialog::stop(accepted);
}
void ccTracePolylineTool::updatePolyLineTip(int x, int y, Qt::MouseButtons buttons)
{
if (!m_associatedWin)
{
assert(false);
return;
}
if (buttons != Qt::NoButton)
{
//nothing to do (just hide the tip)
if (m_polyTip->isEnabled())
{
m_polyTip->setEnabled(false);
m_associatedWin->redraw(true, false);
}
return;
}
if (!m_poly3DVertices || m_poly3DVertices->size() == 0)
{
//there should be at least one point already picked!
return;
}
if (m_done)
{
// when it is done do nothing
return;
}
assert(m_polyTip && m_polyTipVertices && m_polyTipVertices->size() == 2);
//we replace the last point by the new one
{
QPointF pos2D = m_associatedWin->toCenteredGLCoordinates(x, y);
CCVector3 P2D( static_cast<PointCoordinateType>(pos2D.x()),
static_cast<PointCoordinateType>(pos2D.y()),
0);
CCVector3* lastP = const_cast<CCVector3*>(m_polyTipVertices->getPointPersistentPtr(1));
*lastP = P2D;
}
//just in case (e.g. if the view has been rotated or zoomed)
//we also update the first vertex position!
{
const CCVector3* P3D = m_poly3DVertices->getPoint(m_poly3DVertices->size() - 1);
ccGLCameraParameters camera;
m_associatedWin->getGLCameraParameters(camera);
CCVector3d A2D;
camera.project(*P3D, A2D);
CCVector3* firstP = const_cast<CCVector3*>(m_polyTipVertices->getPointPersistentPtr(0));
*firstP = CCVector3(static_cast<PointCoordinateType>(A2D.x - camera.viewport[2] / 2), //we convert A2D to centered coordinates (no need to apply high DPI scale or anything!)
static_cast<PointCoordinateType>(A2D.y - camera.viewport[3] / 2),
0);
}
m_polyTip->setEnabled(true);
m_associatedWin->redraw(true, false);
}
void ccTracePolylineTool::onItemPicked(const PickedItem& pi)
{
if (!m_associatedWin)
{
assert(false);
return;
}
if (!pi.entity)
{
//means that the mouse has been clicked but no point was found!
return;
}
//if the 3D polyline doesn't exist yet, we create it
if (!m_poly3D || !m_poly3DVertices)
{
m_poly3DVertices = new ccPointCloud("Vertices");
m_poly3DVertices->setEnabled(false);
m_poly3DVertices->setDisplay(m_associatedWin);
m_poly3D = new ccPolyline(m_poly3DVertices);
m_poly3D->setTempColor(ccColor::green);
m_poly3D->set2DMode(false);
m_poly3D->addChild(m_poly3DVertices);
m_poly3D->setWidth(widthSpinBox->value() < 2 ? 0 : widthSpinBox->value()); //'1' is equivalent to the default line size
ccGenericPointCloud* cloud = ccHObjectCaster::ToGenericPointCloud(pi.entity);
if (cloud)
{
//copy the first clicked entity's global shift & scale
m_poly3D->setGlobalShift(cloud->getGlobalShift());
m_poly3D->setGlobalScale(cloud->getGlobalScale());
}
m_segmentParams.resize(0); //just in case
m_associatedWin->addToOwnDB(m_poly3D);
}
//try to add one more point
if ( !m_poly3DVertices->reserve(m_poly3DVertices->size() + 1)
|| !m_poly3D->reserve(m_poly3DVertices->size() + 1))
{
ccLog::Error("Not enough memory");
return;
}
try
{
m_segmentParams.reserve(m_segmentParams.size() + 1);
}
catch (const std::bad_alloc&)
{
ccLog::Error("Not enough memory");
return;
}
m_poly3DVertices->addPoint(pi.P3D);
m_poly3D->addPointIndex(m_poly3DVertices->size() - 1);
m_segmentParams.emplace_back(m_associatedWin, pi.clickPoint.x(), pi.clickPoint.y());
//we replace the first point of the tip by this new point
{
QPointF pos2D = m_associatedWin->toCenteredGLCoordinates(pi.clickPoint.x(), pi.clickPoint.y());
CCVector3 P2D( static_cast<PointCoordinateType>(pos2D.x()),
static_cast<PointCoordinateType>(pos2D.y()),
0);
CCVector3* firstTipPoint = const_cast<CCVector3*>(m_polyTipVertices->getPointPersistentPtr(0));
*firstTipPoint = P2D;
m_polyTip->setEnabled(false); //don't need to display it for now
}
m_associatedWin->redraw(false, false);
}
void ccTracePolylineTool::closePolyLine(int, int)
{
if (!m_poly3D || (QApplication::keyboardModifiers() & Qt::ControlModifier)) //CTRL + right click = panning
{
return;
}
unsigned vertCount = m_poly3D->size();
if (vertCount < 2)
{
//discard this polyline
resetLine();
}
else
{
//hide the tip
if (m_polyTip)
{
m_polyTip->setEnabled(false);
}
//update the GUI
validButton->setEnabled(true);
saveToolButton->setEnabled(true);
resetToolButton->setEnabled(true);
continueToolButton->setEnabled(true);
if (m_pickingHub)
{
m_pickingHub->removeListener(this);
}
m_associatedWin->setPickingMode(ccGLWindow::NO_PICKING); //no more picking
m_done = true;
if (m_associatedWin)
{
m_associatedWin->redraw(true, false);
}
}
}
void ccTracePolylineTool::restart(bool reset)
{
if (m_poly3D)
{
if (reset)
{
if (m_associatedWin)
{
//discard this polyline
m_associatedWin->removeFromOwnDB(m_poly3D);
}
if (m_polyTip)
{
//hide the tip
m_polyTip->setEnabled(false);
}
delete m_poly3D;
m_segmentParams.resize(0);
//delete m_poly3DVertices;
m_poly3D = 0;
m_poly3DVertices = 0;
}
else
{
if (m_polyTip)
{
//show the tip
m_polyTip->setEnabled(true);
}
}
}
//enable picking
if (m_pickingHub && !m_pickingHub->addListener(this, true/*, true, ccGLWindow::POINT_PICKING*/))
{
ccLog::Error("The picking mechanism is already in use. Close the tool using it first.");
}
if (m_associatedWin)
{
m_associatedWin->redraw(false, false);
}
validButton->setEnabled(false);
saveToolButton->setEnabled(false);
resetToolButton->setEnabled(false);
continueToolButton->setEnabled(false);
m_done = false;
}
void ccTracePolylineTool::exportLine()
{
if (!m_poly3D)
{
return;
}
if (m_associatedWin)
{
m_associatedWin->removeFromOwnDB(m_poly3D);
}
unsigned overSampling = static_cast<unsigned>(oversampleSpinBox->value());
if (overSampling > 1)
{
ccPolyline* poly = polylineOverSampling(overSampling);
if (poly)
{
delete m_poly3D;
m_segmentParams.resize(0);
m_poly3DVertices = 0;
m_poly3D = poly;
}
}
m_poly3D->enableTempColor(false);
m_poly3D->setDisplay(m_associatedWin); //just in case
if (MainWindow::TheInstance())
{
MainWindow::TheInstance()->addToDB(m_poly3D);
}
else
{
assert(false);
}
m_poly3D = 0;
m_segmentParams.resize(0);
m_poly3DVertices = 0;
resetLine(); //to update the GUI
}
void ccTracePolylineTool::apply()
{
exportLine();
stop(true);
}
void ccTracePolylineTool::cancel()
{
resetLine();
stop(false);
}
void ccTracePolylineTool::onWidthSizeChanged(int width)
{
if (m_poly3D)
{
m_poly3D->setWidth(width);
}
if (m_polyTip)
{
m_polyTip->setWidth(width);
}
if (m_associatedWin)
{
m_associatedWin->redraw(m_poly3D == 0, false);
}
}
|