LSSTApplications  18.1.0
LSSTDataManagementBasePackage
gaussianPsf.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2008-2016 AURA/LSST.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <https://www.lsstcorp.org/LegalNotices/>.
21  */
22 
23 #include <pybind11/pybind11.h>
24 //#include <pybind11/operators.h>
25 //#include <pybind11/stl.h>
26 
27 #include "lsst/afw/table/io/python.h" // for addPersistableMethods
29 
30 namespace py = pybind11;
31 using namespace py::literals;
32 
33 namespace lsst {
34 namespace afw {
35 namespace detection {
36 
38  py::class_<GaussianPsf, std::shared_ptr<GaussianPsf>, Psf> clsGaussianPsf(mod, "GaussianPsf");
39 
40  table::io::python::addPersistableMethods<GaussianPsf>(clsGaussianPsf);
41 
42  /* Constructors */
43  clsGaussianPsf.def(py::init<int, int, double>(), "width"_a, "height"_a, "sigma"_a);
44  clsGaussianPsf.def(py::init<lsst::geom::Extent2I const &, double>(), "dimensions"_a, "sigma"_a);
45 
46  /* Members */
47  clsGaussianPsf.def("clone", &GaussianPsf::clone);
48  clsGaussianPsf.def("resized", &GaussianPsf::resized, "width"_a, "height"_a);
49  clsGaussianPsf.def("getDimensions", &GaussianPsf::getDimensions);
50  clsGaussianPsf.def("getSigma", &GaussianPsf::getSigma);
51  clsGaussianPsf.def("isPersistable", &GaussianPsf::isPersistable);
52 }
53 }
54 }
55 } // lsst::afw::detection
A base class for image defects.
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:76
PYBIND11_MODULE(gaussianPsf, mod)
Definition: gaussianPsf.cc:37