| 65 | }; |
| 66 | |
| 67 | mitk::DummyModelFitFunctor::ParametersType |
| 68 | mitk::DummyModelFitFunctor:: |
| 69 | DoModelFit(const SignalType& value, const ModelBase* model, |
| 70 | const ModelBase::ParametersType& initialParameters, |
| 71 | DebugParameterMapType& /*debugParameters*/) const |
| 72 | { |
| 73 | mitk::MVModelFitCostFunction::Pointer metric = this->GenerateCostFunction(value, model); |
| 74 | |
| 75 | MITK_INFO << "DEBUG signal: " << value; |
| 76 | MITK_INFO << "DEBUG time grid: " << model->GetTimeGrid(); |
| 77 | MITK_INFO << "DEBUG model: " << model->GetSignal(initialParameters); |
| 78 | MITK_INFO << "DEBUG parameters: " << initialParameters; |
| 79 | |
| 80 | MITK_INFO << "DEBUG metric values: " << metric->GetValue(initialParameters); |
| 81 | |
| 82 | return initialParameters; |
| 83 | }; |
| 84 | |
| 85 | mitk::DummyModelFitFunctor::ParameterNamesType |
| 86 | mitk::DummyModelFitFunctor::DefineDebugParameterNames() const |
nothing calls this directly
no test coverage detected