STIR 6.4.0
ML_estimate_component_based_normalisation.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2022, University College London
3 This file is part of STIR.
4
5 SPDX-License-Identifier: Apache-2.0
6
7 See STIR/LICENSE.txt for details
8*/
15#include "stir/common.h"
16#include <string>
17
18START_NAMESPACE_STIR
19
20class ProjData;
21
27void ML_estimate_component_based_normalisation(const std::string& out_filename_prefix,
28 const ProjData& measured_data,
29 const ProjData& model_data,
30 int num_eff_iterations,
31 int num_iterations,
32 bool do_geo,
33 bool do_block,
34 bool do_symmetry_per_block,
35 bool do_KL,
36 bool do_display);
37
38END_NAMESPACE_STIR
basic configuration include file
void ML_estimate_component_based_normalisation(const std::string &out_filename_prefix, const ProjData &measured_data, const ProjData &model_data, int num_eff_iterations, int num_iterations, bool do_geo, bool do_block, bool do_symmetry_per_block, bool do_KL, bool do_display)
Find normalisation factors using a maximum likelihood approach.
Definition ML_estimate_component_based_normalisation.cxx:39