LSSTApplications  16.0-1-gce273f5+20,16.0-10-g1758552,16.0-10-gc1446dd+21,16.0-12-g569485f+3,16.0-13-g5f20d24+1,16.0-13-g80874fd+2,16.0-13-gb122224+12,16.0-14-g08f9460+4,16.0-14-g8a3b804,16.0-14-ga5060d2,16.0-15-g77ef378+7,16.0-18-gdf247dd+2,16.0-18-ge18fa5b,16.0-18-ge4151178,16.0-2-g0febb12+16,16.0-2-g9d5294e+46,16.0-2-gc6e0ed0+5,16.0-23-ge8a9b866+3,16.0-3-g404ea43+13,16.0-3-gbc759ec+19,16.0-3-gcfd6c53+44,16.0-3-ge00e371,16.0-4-g03cf288+35,16.0-4-g13a27c5+21,16.0-4-g5f3a788+15,16.0-4-ga3eb747+5,16.0-5-g1991253+21,16.0-5-g1e9226d+3,16.0-5-g6a53317,16.0-5-g865efd9+23,16.0-5-gb3f8a4b+53,16.0-5-gd0f1235+10,16.0-52-gad2f36c79,16.0-7-g6043bfc+9,16.0-7-gd2eeba5+3,16.0-7-gde5bd64+3,16.0-8-g0e813a6+1,16.0-9-g52c50f7,16.0-9-g73415e6,master-g5768c874b9+5,w.2018.41
LSSTDataManagementBasePackage
psf.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 <memory>
24 
25 #include <pybind11/pybind11.h>
26 //#include <pybind11/stl.h>
27 
28 #include "lsst/daf/base/Citizen.h"
29 #include "lsst/geom/Point.h"
30 #include "lsst/afw/image/Color.h"
31 #include "lsst/afw/table/io/python.h" // for addPersistableMethods
32 #include "lsst/afw/detection/Psf.h"
33 
34 namespace py = pybind11;
35 using namespace pybind11::literals;
36 
37 namespace lsst {
38 namespace afw {
39 namespace detection {
40 
41 namespace {
43 }
44 
46  /* Module level */
47  py::class_<Psf, std::shared_ptr<Psf>, daf::base::Citizen> cls(mod, "Psf");
48 
49  /* Member types and enums */
50  py::enum_<Psf::ImageOwnerEnum>(cls, "ImageOwnerEnum")
51  .value("COPY", Psf::ImageOwnerEnum::COPY)
52  .value("INTERNAL", Psf::ImageOwnerEnum::INTERNAL)
53  .export_values();
54 
55  table::io::python::addPersistableMethods<Psf>(cls);
56 
57  /* Members */
58  cls.def("clone", &Psf::clone);
59  cls.def("resized", &Psf::resized, "width"_a, "height"_a);
60  cls.def("computeImage", &Psf::computeImage, "position"_a = NullPoint, "color"_a = image::Color(),
61  "owner"_a = Psf::ImageOwnerEnum::COPY);
62  cls.def("computeKernelImage", &Psf::computeKernelImage, "position"_a = NullPoint,
63  "color"_a = image::Color(), "owner"_a = Psf::ImageOwnerEnum::COPY);
64  cls.def("computePeak", &Psf::computePeak, "position"_a = NullPoint, "color"_a = image::Color());
65  cls.def("computeApertureFlux", &Psf::computeApertureFlux, "radius"_a, "position"_a = NullPoint,
66  "color"_a = image::Color());
67  cls.def("computeShape", &Psf::computeShape, "position"_a = NullPoint, "color"_a = image::Color());
68  cls.def("computeBBox", &Psf::computeBBox, "position"_a = NullPoint, "color"_a = image::Color());
69  cls.def("getLocalKernel", &Psf::getLocalKernel, "position"_a = NullPoint, "color"_a = image::Color());
70  cls.def("getAverageColor", &Psf::getAverageColor);
71  cls.def("getAveragePosition", &Psf::getAveragePosition);
72  cls.def_static("recenterKernelImage", &Psf::recenterKernelImage, "im"_a, "position"_a,
73  "warpAlgorithm"_a = "lanczos5", "warpBuffer"_a = 5);
74  cls.def("getCacheCapacity", &Psf::getCacheCapacity);
75  cls.def("setCacheCapacity", &Psf::setCacheCapacity);
76 }
77 }
78 }
79 } // namespace lsst::afw::detection;
Point< double, 2 > Point2D
Definition: Point.h:324
A base class for image defects.
Definition: cameraGeom.dox:3
Describe the colour of a source.
Definition: Color.h:26
Citizen is a class that should be among all LSST classes base classes, and handles basic memory manag...
Definition: Citizen.h:55
PYBIND11_MODULE(psf, mod)
Definition: psf.cc:37