#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 #include #include class ITKDATASHIMAGEPLUGIN_EXPORT itkDataSHImageReader : public dtkAbstractDataReader { Q_OBJECT public: itkDataSHImageReader(); virtual ~itkDataSHImageReader(); virtual QStringList handled() const; static QStringList s_handled(); virtual QString identifier() const; virtual QString description() const; static bool registered(); public slots: /** if number of components of itk vector image is 15 or 28 returns true*/ virtual bool canRead (const QString &path); virtual bool canRead (const QStringList &paths); /** it reads the information of vector itkDataSHImageFloat3 or itkDataSHImageDoublet3*/ virtual bool readInformation (const QString &path); virtual bool readInformation (const QStringList &paths); /** where the itk::VectorImage is read*/ virtual bool read (const QString &path); virtual bool read (const QStringList &paths); }; dtkAbstractDataReader *createItkDataSHImageReader();