| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE PLUGIN: qM3C2 #
- //# #
- //# 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: UNIVERSITE EUROPEENNE DE BRETAGNE #
- //# #
- //##########################################################################
- #ifndef Q_M3C2_PLUGIN_HEADER
- #define Q_M3C2_PLUGIN_HEADER
- //qCC
- #include "ccStdPluginInterface.h"
- //qCC_db
- #include <ccHObject.h>
- //! M3C2 plugin
- /** See "Accurate 3D comparison of complex topography with terrestrial laser scanner:
- application to the Rangitikei canyon (N-Z)", Lague, D., Brodu, N. and Leroux, J.,
- 2013, ISPRS journal of Photogrammmetry and Remote Sensing
- **/
- class qM3C2Plugin : public QObject, public ccStdPluginInterface
- {
- Q_OBJECT
- Q_INTERFACES( ccPluginInterface ccStdPluginInterface )
- Q_PLUGIN_METADATA( IID "cccorp.cloudcompare.plugin.qM3C2" FILE "../info.json" )
- public:
- //! Default constructor
- qM3C2Plugin(QObject* parent = nullptr);
- virtual ~qM3C2Plugin() = default;
- //inherited from ccStdPluginInterface
- virtual void onNewSelection(const ccHObject::Container& selectedEntities) override;
- virtual QList<QAction *> getActions() override;
- virtual void registerCommands(ccCommandLineInterface* cmd) override;
- private:
- void doAction();
- //! Default action
- QAction* m_action;
- //! Currently selected entities
- ccHObject::Container m_selectedEntities;
- };
- #endif //Q_M3C2_PLUGIN_HEADER
|