/*========================================================================= medInria Copyright (c) INRIA 2013. 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 "LCCLogDemons.h" #include "LCCLogDemonsPlugin.h" #include "LCCLogDemonsToolBox.h" // ///////////////////////////////////////////////////////////////// // LCCLogDemonsPlugin // ///////////////////////////////////////////////////////////////// LCCLogDemonsPlugin::LCCLogDemonsPlugin(QObject *parent) : medPluginLegacy(parent) { } bool LCCLogDemonsPlugin::initialize() { if(!LCCLogDemons::registered()) { qWarning() << "Unable to register LCCLogDemons type"; } if(!LCCLogDemonsToolBox::registered()) { qWarning() << "Unable to register LCCLogDemons toolbox"; } return true; } QString LCCLogDemonsPlugin::name() const { return "LCCLogDemonsPlugin"; } QString LCCLogDemonsPlugin::description() const { QString description; description += "

LCC Log Demons Tutorial

"; description += "Apply LCC log demons algorithm on 2 images.
"; description += ""; return description; } QStringList LCCLogDemonsPlugin::types() const { return QStringList() << "LCCLogDemons"; }