#pragma once /*========================================================================= medInria Copyright (c) INRIA 2013 - 2020. All rights reserved. See LICENSE.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. =========================================================================*/ #include class diffeomorphicDemonsToolBoxPrivate; class diffeomorphicDemonsToolBox : public medAbstractSelectableToolBox { Q_OBJECT MED_TOOLBOX_INTERFACE("Diffeomorphic Demons", "Diffeomorphic demons registration using the ITK implementation", <<"Registration") public: diffeomorphicDemonsToolBox(QWidget *parentToolBox = nullptr); ~diffeomorphicDemonsToolBox(); dtkPlugin * plugin() override; static bool registered(); medAbstractData* processOutput(); public slots: void run(); private: diffeomorphicDemonsToolBoxPrivate *d; };