Medical Imaging Interaction Toolkit  2023.12.00
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkTwoCompartmentExchangeModelFactoryBase.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 #ifndef mitkTwoCompartmentExchangeModelFactoryBase_h
13 #define mitkTwoCompartmentExchangeModelFactoryBase_h
14 
18 
19 namespace mitk
20 {
21  template <class TModelParameterizer>
23  mitk::ConcreteAIFBasedModelFactory< TModelParameterizer >
24  {
25  public:
28  itkFactorylessNewMacro(Self);
29 
30 
31  typedef typename Superclass::ModelType ModelType;
32  typedef typename Superclass::ModelParameterizerType ModelParameterizerType;
33  typedef typename Superclass::ParametersType ParametersType;
34 
36  {
38 
39  constraints->SetLowerBarrier(ModelType::POSITION_PARAMETER_ve, 0.0);
40  constraints->SetUpperBarrier(ModelType::POSITION_PARAMETER_ve, 1.0);
41  constraints->SetLowerBarrier(ModelType::POSITION_PARAMETER_vp, 0.0);
42  constraints->SetUpperBarrier(ModelType::POSITION_PARAMETER_vp, 1.0);
43 
45  indices.push_back(ModelType::POSITION_PARAMETER_ve);
46  indices.push_back(ModelType::POSITION_PARAMETER_vp);
47 
48  constraints->SetUpperSumBarrier(indices, 1.0);
49 
50  return constraints.GetPointer();
51  };
52 
54  {
55  typename ModelParameterizerType::Pointer modelParameterizer =
56  ModelParameterizerType::New();
57 
58  return modelParameterizer->GetDefaultInitialParameterization();
59  };
60 
61  protected:
62 
64  {
65  };
66 
68  {
69  };
70 
71  private:
72 
73  //No copy constructor allowed
74  TwoCompartmentExchangeModelFactoryBase(const Self& source);
75  void operator=(const Self&); //purposely not implemented
76  };
77 
78 }
79 #endif
mitkAIFBasedModelParameterizerBase.h
mitkSimpleBarrierConstraintChecker.h
mitk::TwoCompartmentExchangeModelFactoryBase::GetDefaultInitialParameterization
ParametersType GetDefaultInitialParameterization() const override
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:53
mitk::TwoCompartmentExchangeModelFactoryBase::CreateDefaultConstraints
ConstraintCheckerBase::Pointer CreateDefaultConstraints() const override
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:35
mitkConcreteAIFBasedModelFactory.h
mitk::TwoCompartmentExchangeModelFactoryBase::ModelParameterizerType
Superclass::ModelParameterizerType ModelParameterizerType
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:32
itk::SmartPointer< Self >
mitk::SimpleBarrierConstraintChecker::ParameterIndexVectorType
std::vector< ParameterIndexType > ParameterIndexVectorType
Definition: mitkSimpleBarrierConstraintChecker.h:60
mitk::TwoCompartmentExchangeModelFactoryBase::TwoCompartmentExchangeModelFactoryBase
TwoCompartmentExchangeModelFactoryBase()
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:63
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitk::TwoCompartmentExchangeModelFactoryBase::mitkClassMacro
mitkClassMacro(TwoCompartmentExchangeModelFactoryBase, ConcreteAIFBasedModelFactory< TModelParameterizer >)
mitk::ConcreteAIFBasedModelFactory
Definition: mitkConcreteAIFBasedModelFactory.h:22
mitk::SimpleBarrierConstraintChecker::New
static Pointer New()
mitk::ModelTraitsInterface::ParametersType
itk::Array< ParameterValueType > ParametersType
Definition: mitkModelTraitsInterface.h:31
mitk::TwoCompartmentExchangeModelFactoryBase
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:22
mitk::TwoCompartmentExchangeModelFactoryBase::~TwoCompartmentExchangeModelFactoryBase
~TwoCompartmentExchangeModelFactoryBase() override
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:67
mitk::TwoCompartmentExchangeModelFactoryBase::ModelType
Superclass::ModelType ModelType
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:28
mitk::TwoCompartmentExchangeModelFactoryBase::ParametersType
Superclass::ParametersType ParametersType
Definition: mitkTwoCompartmentExchangeModelFactoryBase.h:33