| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706 |
- //##########################################################################
- //# #
- //# 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"
- #include "ui_tracePolylineDlg.h"
- //Local
- #include "mainwindow.h"
- #include "ccReservedIDs.h"
- //common
- #include <ccPickingHub.h>
- //qCC_db
- #include <ccPolyline.h>
- #include <ccPointCloud.h>
- #include <ccProgressDialog.h>
- //System
- #include <cassert>
- 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)
- , m_polyTip(nullptr)
- , m_polyTipVertices(nullptr)
- , m_poly3D(nullptr)
- , m_poly3DVertices(nullptr)
- , m_done(false)
- , m_pickingHub(pickingHub)
- , m_ui( new Ui::TracePolyLineDlg )
- {
- assert(pickingHub);
- m_ui->setupUi(this);
- setWindowFlags(Qt::FramelessWindowHint | Qt::Tool);
- connect(m_ui->saveToolButton, &QToolButton::clicked, this, &ccTracePolylineTool::exportLine);
- connect(m_ui->resetToolButton, &QToolButton::clicked, this, &ccTracePolylineTool::resetLine);
- connect(m_ui->continueToolButton, &QToolButton::clicked, this, &ccTracePolylineTool::continueEdition);
- connect(m_ui->validButton, &QToolButton::clicked, this, &ccTracePolylineTool::apply);
- connect(m_ui->cancelButton, &QToolButton::clicked, this, &ccTracePolylineTool::cancel);
- connect(m_ui->widthSpinBox, qOverload<int>(&QSpinBox::valueChanged), this, &ccTracePolylineTool::onWidthSizeChanged);
- //add shortcuts
- addOverriddenShortcut(Qt::Key_Escape); //escape key for the "cancel" button
- addOverriddenShortcut(Qt::Key_Return); //return key for the "apply" button
- connect(this, &ccTracePolylineTool::shortcutTriggered, this, &ccTracePolylineTool::onShortcutTriggered);
- m_polyTipVertices = new ccPointCloud("Tip vertices", static_cast<unsigned>(ReservedIDs::TRACE_POLYLINE_TOOL_POLYLINE_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, static_cast<unsigned>(ReservedIDs::TRACE_POLYLINE_TOOL_POLYLINE_TIP));
- 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(m_ui->widthSpinBox->value() < 2 ? 0 : m_ui->widthSpinBox->value()); //'1' is equivalent to the default line size
- m_polyTip->addChild(m_polyTipVertices);
- m_ui->validButton->setEnabled(false);
- }
- ccTracePolylineTool::~ccTracePolylineTool()
- {
- //m_polyTipVertices is already a child of m_polyTip
- if (m_polyTip)
- delete m_polyTip;
- m_polyTip = nullptr;
- //m_poly3DVertices is already a child of m_poly3D
- if (m_poly3D)
- delete m_poly3D;
- m_poly3D = nullptr;
-
- delete m_ui;
- m_ui = nullptr;
- }
- 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 nullptr;
- }
- if (steps <= 1)
- {
- //nothing to do
- return nullptr;
- }
- ccHObject::Container clouds;
- ccHObject::Container meshes;
- if (m_associatedWin)
- {
- m_associatedWin->getSceneDB()->filterChildren(clouds, true, CC_TYPES::POINT_CLOUD, false, m_associatedWin);
- 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 nullptr;
- }
- unsigned vertexCount = m_poly3DVertices->size();
- unsigned segmentCount = m_poly3D->size() - (m_poly3D->isClosed() ? 0 : 1);
- unsigned endSize = segmentCount * steps + (m_poly3D->isClosed() ? 0 : 1);
- ccPointCloud* newVertices = new ccPointCloud();
- ccPolyline* newPoly = new ccPolyline(newVertices);
- newPoly->addChild(newVertices);
- if ( !newVertices->reserve(endSize)
- || !newPoly->reserve(endSize) )
- {
- ccLog::Warning("[ccTracePolylineTool::PolylineOverSampling] Not enough memory");
- delete newPoly;
- return nullptr;
- }
- newVertices->importParametersFrom(m_poly3DVertices);
- newVertices->setName(m_poly3DVertices->getName());
- newVertices->setEnabled(m_poly3DVertices->isEnabled());
- newPoly->importParametersFrom(*m_poly3D);
- newPoly->setDisplay_recursive(m_poly3D->getDisplay());
- ccProgressDialog pDlg(true, m_associatedWin ? m_associatedWin->asWidget() : nullptr);
- pDlg.setWindowTitle("Oversampling");
- pDlg.setMethodTitle(tr("Oversampling polyline: %1 vertices").arg(endSize));
- pDlg.setRange(0, static_cast<int>(endSize));
- pDlg.show();
- QCoreApplication::processEvents();
- for (unsigned i = 0; i < segmentCount; ++i)
- {
- const CCVector3* p1 = m_poly3DVertices->getPoint(i);
- newVertices->addPoint(*p1);
- unsigned i2 = (i + 1) % vertexCount;
- CCVector2d clickPos1/* = m_segmentParams[i].clickPos*/;
- {
- //we actually retro-project the 3D point in the second vertex camera frame so as to get a proper behavior
- CCVector3d P2D;
- m_segmentParams[i2].params.project(*p1, P2D);
- clickPos1 = CCVector2d(P2D.x, P2D.y);
- }
- CCVector2d v = m_segmentParams[i2].clickPos - clickPos1;
- v /= steps;
- for (unsigned j = 1; j < steps; j++)
- {
- CCVector2d vj = clickPos1 + 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,
- m_ui->snapSizeSpinBox->value(),
- m_ui->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 = _nearestPoint.toPC();
- }
- }
- }
- 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(vertexCount - 1));
- }
- newVertices->shrinkToFit();
- newPoly->addPointIndex(0, newVertices->size());
- return newPoly;
- }
- bool ccTracePolylineTool::linkWith(ccGLWindowInterface* win)
- {
- assert(m_polyTip);
- assert(!m_poly3D || !win);
- ccGLWindowInterface* oldWin = m_associatedWin;
- if (!ccOverlayDialog::linkWith(win))
- {
- return false;
- }
- if (oldWin)
- {
- oldWin->removeFromOwnDB(m_polyTip);
- oldWin->signalEmitter()->disconnect(this);
- if (m_polyTip)
- m_polyTip->setDisplay(nullptr);
- }
- if (m_associatedWin)
- {
- connect(m_associatedWin->signalEmitter(), &ccGLWindowSignalEmitter::rightButtonClicked, this, &ccTracePolylineTool::closePolyLine);
- connect(m_associatedWin->signalEmitter(), &ccGLWindowSignalEmitter::mouseMoved, this, &ccTracePolylineTool::updatePolyLineTip);
- }
- 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(ccGLWindowInterface::NO_PICKING);
- m_associatedWin->setInteractionMode( ccGLWindowInterface::MODE_TRANSFORM_CAMERA
- | ccGLWindowInterface::INTERACT_SIG_RB_CLICKED
- | ccGLWindowInterface::INTERACT_CTRL_PAN
- | ccGLWindowInterface::INTERACT_SIG_MOUSE_MOVED);
- m_associatedWin->setWindowCursor(Qt::CrossCursor);
- m_ui->snapSizeSpinBox->blockSignals(true);
- m_ui->snapSizeSpinBox->setValue(s_defaultPickingRadius);
- m_ui->snapSizeSpinBox->blockSignals(false);
- m_ui->oversampleSpinBox->blockSignals(true);
- m_ui->oversampleSpinBox->setValue(s_overSamplingCount);
- m_ui->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]",
- ccGLWindowInterface::UPPER_CENTER_MESSAGE,
- false,
- 2,
- ccGLWindowInterface::MANUAL_SEGMENTATION_MESSAGE);
- m_associatedWin->setUnclosable(false);
- m_associatedWin->removeFromOwnDB(m_polyTip);
- m_associatedWin->setInteractionMode(ccGLWindowInterface::MODE_TRANSFORM_CAMERA);
- m_associatedWin->setWindowCursor(Qt::ArrowCursor);
- }
- s_defaultPickingRadius = m_ui->snapSizeSpinBox->value();
- s_overSamplingCount = m_ui->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", static_cast<unsigned>(ReservedIDs::TRACE_POLYLINE_TOOL_POLYLINE_VERTICES));
- m_poly3DVertices->setEnabled(false);
- m_poly3DVertices->setDisplay(m_associatedWin);
- m_poly3D = new ccPolyline(m_poly3DVertices, static_cast<unsigned>(ReservedIDs::TRACE_POLYLINE_TOOL_POLYLINE));
- m_poly3D->setTempColor(ccColor::green);
- m_poly3D->set2DMode(false);
- m_poly3D->addChild(m_poly3DVertices);
- m_poly3D->setWidth(m_ui->widthSpinBox->value() < 2 ? 0 : m_ui->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->copyGlobalShiftAndScale(*cloud);
- }
- 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
- m_ui->validButton->setEnabled(true);
- m_ui->saveToolButton->setEnabled(true);
- m_ui->resetToolButton->setEnabled(true);
- m_ui->continueToolButton->setEnabled(true);
- if (m_pickingHub)
- {
- m_pickingHub->removeListener(this);
- }
- if (m_associatedWin)
- {
- m_associatedWin->setPickingMode(ccGLWindowInterface::NO_PICKING); //no more picking
- m_done = true;
- 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 = nullptr;
- m_poly3DVertices = nullptr;
- }
- else
- {
- if (m_polyTip)
- {
- //show the tip
- m_polyTip->setEnabled(true);
- }
- }
- }
- //enable picking
- if (m_pickingHub && !m_pickingHub->addListener(this, true/*, true, ccGLWindowInterface::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);
- }
-
- m_ui->validButton->setEnabled(false);
- m_ui->saveToolButton->setEnabled(false);
- m_ui->resetToolButton->setEnabled(false);
- m_ui->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>(m_ui->oversampleSpinBox->value());
- if (overSampling > 1)
- {
- ccPolyline* poly = polylineOverSampling(overSampling);
- if (poly)
- {
- delete m_poly3D;
- m_segmentParams.resize(0);
- m_poly3DVertices = nullptr;
- m_poly3D = poly;
- }
- else
- {
- ccLog::Error("Oversampling failed");
- if (m_associatedWin)
- {
- m_associatedWin->addToOwnDB(m_poly3D);
- }
- return;
- }
- }
- else
- {
- //update the IDs as we don't want to export an object with a reserved ID!
- m_poly3D->setUniqueID(ccObject::GetNextUniqueID());
- m_poly3DVertices->setUniqueID(ccObject::GetNextUniqueID());
- }
- 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 = nullptr;
- m_segmentParams.resize(0);
- m_poly3DVertices = nullptr;
- 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 == nullptr, false);
- }
- }
|