LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
cmodel.cc
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2013 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #include "pybind11/pybind11.h"
25 
26 #include "ndarray/pybind11.h"
27 
28 #include "lsst/pex/config/python.h"
30 
31 namespace py = pybind11;
32 using namespace pybind11::literals;
33 
34 namespace lsst {
35 namespace meas {
36 namespace modelfit {
37 namespace {
38 
39 using PyCModelStageControl = py::class_<CModelStageControl, std::shared_ptr<CModelStageControl>>;
40 using PyCModelControl = py::class_<CModelControl, std::shared_ptr<CModelControl>>;
41 using PyCModelStageResult = py::class_<CModelStageResult, std::shared_ptr<CModelStageResult>>;
42 using PyCModelResult = py::class_<CModelResult, std::shared_ptr<CModelResult>>;
43 using PyCModelAlgorithm = py::class_<CModelAlgorithm, std::shared_ptr<CModelAlgorithm>>;
44 
45 static PyCModelStageControl declareCModelStageControl(py::module &mod) {
46  PyCModelStageControl cls(mod, "CModelStageControl");
47  cls.def(py::init<>());
48  cls.def("getProfile", &CModelStageControl::getProfile);
49  cls.def("getModel", &CModelStageControl::getModel);
50  cls.def("getPrior", &CModelStageControl::getPrior);
51  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, profileName);
52  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, priorSource);
53  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, priorName);
54  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelStageControl, linearPriorConfig);
55  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelStageControl, empiricalPriorConfig);
56  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, nComponents);
57  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, maxRadius);
58  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, usePixelWeights);
59  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, weightsMultiplier);
60  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelStageControl, optimizer);
61  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, doRecordHistory);
62  LSST_DECLARE_CONTROL_FIELD(cls, CModelStageControl, doRecordTime);
63  return cls;
64 }
65 
66 static PyCModelControl declareCModelControl(py::module &mod) {
67  PyCModelControl cls(mod, "CModelControl");
68  cls.def(py::init<>());
69  LSST_DECLARE_CONTROL_FIELD(cls, CModelControl, psfName);
70  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelControl, region);
71  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelControl, initial);
72  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelControl, exp);
73  LSST_DECLARE_NESTED_CONTROL_FIELD(cls, CModelControl, dev);
74  LSST_DECLARE_CONTROL_FIELD(cls, CModelControl, minInitialRadius);
75  LSST_DECLARE_CONTROL_FIELD(cls, CModelControl, fallbackInitialMomentsPsfFactor);
76  return cls;
77 }
78 
79 // Custom wrapper for views to std::bitset.
80 template <int N>
81 class BitSetView {
82 public:
83  explicit BitSetView(std::bitset<N> const *target) : _target(target) {}
84 
85  bool operator[](int i) const { return (*_target)[i]; }
86 
87  constexpr std::size_t size() const { return N; }
88 
89  template <typename PyParent>
90  static void declare(PyParent &parent) {
91  py::class_<BitSetView<N>> cls(parent, ("BitSetView" + std::to_string(N)).c_str());
92  cls.def("__getitem__", &BitSetView<N>::operator[]);
93  cls.def("__len__", &BitSetView<N>::size);
94  }
95 
96 private:
97  std::bitset<N> const *_target;
98 };
99 
100 static PyCModelStageResult declareCModelStageResult(py::module &mod) {
101  PyCModelStageResult cls(mod, "CModelStageResult");
102 
103  cls.def(py::init<>());
104 
105  cls.attr("FAILED") = py::cast(int(CModelStageResult::FAILED));
106  cls.attr("TR_SMALL") = py::cast(int(CModelStageResult::TR_SMALL));
107  cls.attr("MAX_ITERATIONS") = py::cast(int(CModelStageResult::MAX_ITERATIONS));
108  cls.attr("NUMERIC_ERROR") = py::cast(int(CModelStageResult::NUMERIC_ERROR));
109  cls.attr("BAD_REFERENCE") = py::cast(int(CModelStageResult::BAD_REFERENCE));
110  cls.attr("NO_FLUX") = py::cast(int(CModelStageResult::NO_FLUX));
111  cls.attr("N_FLAGS") = py::cast(int(CModelStageResult::N_FLAGS));
112 
113  // Data members are intentionally read-only from the Python side;
114  // they should only be set by the C++ algorithm code that uses
115  // this class to communicate its outputs.
116  cls.def_readonly("model", &CModelStageResult::model);
117  cls.def_readonly("prior", &CModelStageResult::prior);
118  cls.def_readonly("objfunc", &CModelStageResult::objfunc);
119  cls.def_readonly("likelihood", &CModelStageResult::likelihood);
120  cls.def_readonly("instFlux", &CModelStageResult::instFlux);
121  cls.def_readonly("instFluxErr", &CModelStageResult::instFluxErr);
122  cls.def_readonly("instFluxInner", &CModelStageResult::instFluxInner);
123  cls.def_readonly("objective", &CModelStageResult::objective);
124  cls.def_readonly("time", &CModelStageResult::time);
125  cls.def_readonly("ellipse", &CModelStageResult::ellipse);
126  cls.def_readonly("nonlinear", &CModelStageResult::nonlinear);
127  cls.def_readonly("amplitudes", &CModelStageResult::amplitudes);
128  cls.def_readonly("fixed", &CModelStageResult::fixed);
129 
130  // Declare wrappers for a view class for the flags attribute
132  // Wrap the flag. attributes
133  cls.def_property_readonly(
134  "flags",
135  [](CModelStageResult const &self) { return BitSetView<CModelStageResult::N_FLAGS>(&self.flags); },
136  py::return_value_policy::reference_internal);
137 
138  return cls;
139 }
140 
141 static PyCModelResult declareCModelResult(py::module &mod) {
142  PyCModelResult cls(mod, "CModelResult");
143 
144  cls.def(py::init<>());
145 
146  cls.attr("FAILED") = py::cast(int(CModelResult::FAILED));
147  cls.attr("REGION_MAX_AREA") = py::cast(int(CModelResult::REGION_MAX_AREA));
148  cls.attr("REGION_MAX_BAD_PIXEL_FRACTION") = py::cast(int(CModelResult::REGION_MAX_BAD_PIXEL_FRACTION));
149  cls.attr("REGION_USED_FOOTPRINT_AREA") = py::cast(int(CModelResult::REGION_USED_FOOTPRINT_AREA));
150  cls.attr("REGION_USED_PSF_AREA") = py::cast(int(CModelResult::REGION_USED_PSF_AREA));
151  cls.attr("REGION_USED_INITIAL_ELLIPSE_MIN") =
152  py::cast(int(CModelResult::REGION_USED_INITIAL_ELLIPSE_MIN));
153  cls.attr("REGION_USED_INITIAL_ELLIPSE_MAX") =
154  py::cast(int(CModelResult::REGION_USED_INITIAL_ELLIPSE_MAX));
155  cls.attr("NO_FLUX") = py::cast(int(CModelResult::NO_FLUX));
156 
157  // Data members are intentionally read-only from the Python side;
158  // they should only be set by the C++ algorithm code that uses
159  // this class to communicate its outputs.
160  cls.def_readonly("instFlux", &CModelResult::instFlux);
161  cls.def_readonly("instFluxErr", &CModelResult::instFluxErr);
162  cls.def_readonly("instFluxInner", &CModelResult::instFluxInner);
163  cls.def_readonly("fracDev", &CModelResult::fracDev);
164  cls.def_readonly("objective", &CModelResult::objective);
165  cls.def_readonly("initial", &CModelResult::initial);
166  cls.def_readonly("exp", &CModelResult::exp);
167  cls.def_readonly("dev", &CModelResult::dev);
168  cls.def_readonly("initialFitRegion", &CModelResult::initialFitRegion);
169  cls.def_readonly("finalFitRegion", &CModelResult::finalFitRegion);
170  cls.def_readonly("fitSysToMeasSys", &CModelResult::fitSysToMeasSys);
171 
172  // Declare wrappers for a view class for the flags attribute
174  // Wrap the flag. attributes
175  cls.def_property_readonly(
176  "flags", [](CModelResult const &self) { return BitSetView<CModelResult::N_FLAGS>(&self.flags); },
177  py::return_value_policy::reference_internal);
178 
179  return cls;
180 }
181 
182 static PyCModelAlgorithm declareCModelAlgorithm(py::module &mod) {
183  PyCModelAlgorithm cls(mod, "CModelAlgorithm");
184  cls.def(py::init<std::string const &, CModelControl const &, afw::table::Schema &>(), "name"_a, "ctrl"_a,
185  "schema"_a);
186  cls.def(py::init<std::string const &, CModelControl const &, afw::table::SchemaMapper &>(), "name"_a,
187  "ctrl"_a, "schemaMapper"_a);
188  cls.def(py::init<CModelControl const &>(), "ctrl"_a);
189  cls.def("getControl", &CModelAlgorithm::getControl);
190  cls.def("apply", &CModelAlgorithm::apply, "exposure"_a, "psf"_a, "center"_a, "moments"_a,
191  "approxFlux"_a = -1, "kronRadius"_a = -1, "footprintArea"_a = -1);
192  cls.def("applyForced", &CModelAlgorithm::applyForced, "exposure"_a, "psf"_a, "center"_a, "reference"_a,
193  "approxFlux"_a = -1);
194  cls.def("measure", (void (CModelAlgorithm::*)(afw::table::SourceRecord &,
195  afw::image::Exposure<Pixel> const &) const) &
197  "measRecord"_a, "exposure"_a);
198  cls.def("measure",
199  (void (CModelAlgorithm::*)(afw::table::SourceRecord &, afw::image::Exposure<Pixel> const &,
200  afw::table::SourceRecord const &) const) &
202  "measRecord"_a, "exposure"_a, "refRecord"_a);
203  cls.def("fail", &CModelAlgorithm::fail, "measRecord"_a, "error"_a);
204  cls.def("writeResultToRecord", &CModelAlgorithm::writeResultToRecord, "result"_a, "record"_a);
205  return cls;
206 }
207 
208 PYBIND11_MODULE(cmodel, mod) {
209  py::module::import("lsst.afw.geom.ellipses");
210  py::module::import("lsst.afw.detection");
211  py::module::import("lsst.meas.modelfit.model");
212  py::module::import("lsst.meas.modelfit.priors");
213  py::module::import("lsst.meas.modelfit.optimizer");
214  py::module::import("lsst.meas.modelfit.pixelFitRegion");
215  py::module::import("lsst.meas.modelfit.unitTransformedLikelihood");
216 
217  declareCModelStageControl(mod);
218  auto clsControl = declareCModelControl(mod);
219  declareCModelStageResult(mod);
220  auto clsResult = declareCModelResult(mod);
221  auto clsAlgorithm = declareCModelAlgorithm(mod);
222  clsAlgorithm.attr("Control") = clsControl;
223  clsAlgorithm.attr("Result") = clsResult;
224 }
225 
226 }
227 }
228 }
229 } // namespace lsst::meas::modelfit::anonymous
std::bitset
STL class.
LSST_DECLARE_NESTED_CONTROL_FIELD
#define LSST_DECLARE_NESTED_CONTROL_FIELD(WRAPPER, CLASS, NAME)
Macro used to wrap fields declared by LSST_NESTED_CONTROL_FIELD using Pybind11.
Definition: python.h:72
lsst::afw::geom.transform.transformContinued.cls
cls
Definition: transformContinued.py:33
std::to_string
T to_string(T... args)
python.h
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
target
Key< Flag > const & target
Definition: BaseColumnView.cc:20
amplitudes
table::Key< table::Array< double > > amplitudes
Definition: LinearCombinationKernel.cc:300
CModel.h
pybind11
Definition: _GenericMap.cc:40
std::size_t
lsst.pex::exceptions.wrappers.declare
def declare(module, exception_name, base, wrapped_class)
Definition: wrappers.py:153
lsst::ip::isr.fringe.measure
def measure(mi, x, y, size, statistic, stats)
Definition: fringe.py:512
LSST_DECLARE_CONTROL_FIELD
#define LSST_DECLARE_CONTROL_FIELD(WRAPPER, CLASS, NAME)
Macro used to wrap fields declared by LSST_CONTROL_FIELD using Pybind11.
Definition: python.h:50
lsst::meas::modelfit.psf.psfContinued.module
module
Definition: psfContinued.py:42
lsst::afw::cameraGeom::PYBIND11_MODULE
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:133