#pragma once /* * medInria * Copyright (c) INRIA 2013. All rights reserved. * * medInria is under BSD-2-Clause license. See LICENSE.txt for details in the root of the sources or: * https://github.com/medInria/medInria-public/blob/master/LICENSE.txt * * This software is distributed WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ #include "medUtilitiesExport.h" #include #include class MEDUTILITIES_EXPORT statsROI { public: dtkSmartPointer input0; //data dtkSmartPointer input1; //mask std::vector computedOutput; enum statsParameter {MEAN_STDDEVIATION, VOLUMEML, MINMAX}; statsParameter chooseFct; double outsideValue; statsROI(); //! Input data to the plugin is set through here void setInput(medAbstractData *data, int channel); //! Parameters are set through here, channel allows to handle multiple parameters void setParameter(statsParameter fct); //! Parameter used only with VOLUMEML statsParameter void setParameter(double outsideValue); //! Method to actually start the filter int update(); //! The output will be available through here std::vector output(); };