LSST Applications g04dff08e69+a31126d12c,g0fba68d861+6f0555c5d7,g1ec0fe41b4+f536777771,g1fd858c14a+16adead242,g35bb328faa+fcb1d3bbc8,g36376648e7+fcceaebe53,g4af146b050+19aac6f792,g4d2262a081+fa07b6fd24,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+fcceaebe53,g6273192d42+d45c8c5480,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+01ed5cbf73,g8852436030+d9452d045a,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+fcceaebe53,g989de1cb63+4086c0989b,g9d31334357+fcceaebe53,g9f33ca652e+a9aa85e8df,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+ff234fad5d,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+e91e539f6f,gcf25f946ba+d9452d045a,gd6cbbdb0b4+af3c3595f5,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+26cbe7494a,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+b3e27b8ebc,gf67bdafdda+4086c0989b,v29.0.0.rc6
LSST Data Management Base Package
|
Classes | |
class | Image |
A Python image using numpy arrrays for storage. More... | |
Functions | |
template<typename T> | |
std::string | replace_type (std::string target, std::string replacement) |
template<typename Value, typename Index> | |
std::string | replace_images_types (std::string target, std::string str_type, std::string_view separator) |
Replace templated Image and index Image type name with Pythonic names. | |
template<typename T> | |
void | declare_image (py::module &m, std::string str_type) |
template<typename T> | |
std::string | replace_image_types (std::string target, std::string str_type, std::string_view separator) |
Replace a template Image type name with Pythonic names. | |
template<typename T> | |
void | declare_image_array (py::module &m, std::string str_type) |
template<typename T> | |
void | declare_evaluator (py::module &m, std::string str_type) |
template<typename T, class Data, class Indices> | |
void | declare_maker (py::module &m, std::string str_type) |
void lsst::gauss2d::python::declare_evaluator | ( | py::module & | m, |
std::string | str_type ) |
Definition at line 237 of file image.h.
void lsst::gauss2d::python::declare_image | ( | py::module & | m, |
std::string | str_type ) |
Definition at line 157 of file image.h.
void lsst::gauss2d::python::declare_image_array | ( | py::module & | m, |
std::string | str_type ) |
Definition at line 214 of file image.h.
void lsst::gauss2d::python::declare_maker | ( | py::module & | m, |
std::string | str_type ) |
Definition at line 274 of file image.h.
std::string lsst::gauss2d::python::replace_image_types | ( | std::string | target, |
std::string | str_type, | ||
std::string_view | separator ) |
Replace a template Image type name with Pythonic names.
T | The data type of the Image class string to replace. |
target | The string to replace type names in. |
str_type | The replacement string for T. |
separator | The namespace separator to replace. |
Definition at line 203 of file image.h.
std::string lsst::gauss2d::python::replace_images_types | ( | std::string | target, |
std::string | str_type, | ||
std::string_view | separator ) |
Replace templated Image and index Image type name with Pythonic names.
Value | The data type of the Image (data) class string to replace. |
Index | The data type of the Image (index) class string to replace. |
target | The string to replace type names in. |
str_type | The replacement string for T. |
separator | The namespace separator to replace. |
Definition at line 144 of file image.h.
std::string lsst::gauss2d::python::replace_type | ( | std::string | target, |
std::string | replacement ) |