Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkModelFitParameter.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkModelFitParameter_h
14 #define mitkModelFitParameter_h
15 
16 #include <mitkImage.h>
17 #include "mitkModelFitUIDHelper.h"
18 
19 #include "MitkModelFitExports.h"
20 
21 namespace mitk
22 {
23  namespace modelFit
24  {
29  class MITKMODELFIT_EXPORT Parameter : public itk::LightObject
30  {
31  public:
32  mitkClassMacroItkParent(Parameter, itk::LightObject);
33  itkSimpleNewMacro(Parameter);
34 
35  enum Type
36  {
40  EvaluationType
41  };
42 
43  Parameter();
44 
46  std::string name;
50  std::string unit;
52  float scale;
55  };
56 
62  MITKMODELFIT_EXPORT Parameter::Pointer ExtractParameterFromData(const mitk::BaseData* data);
63  }
64 }
65 
66 #endif // mitkModelFitParameter_h
Base of all data objects.
Definition: mitkBaseData.h:37
DataCollection - Class to facilitate loading/accessing structured data.
MITKMODELFIT_EXPORT Parameter::Pointer ExtractParameterFromData(const mitk::BaseData *data)
#define MITKMODELFIT_EXPORT
Data class that stores all information about a modelfit parameter. Such a parameter is going to be fi...
#define mitkClassMacroItkParent(className, SuperClassName)
Definition: mitkCommon.h:49
mitk::Image::ConstPointer image