LSSTApplications
11.0-24-g0a022a1,14.0+77,15.0,15.0+1
LSSTDataManagementBasePackage
|
#include <iostream>
#include <iomanip>
#include <iterator>
#include <math.h>
#include <fstream>
#include "assert.h"
#include <sstream>
#include "Eigen/Core"
#include "lsst/log/Log.h"
#include "lsst/afw/geom/Point.h"
#include "lsst/jointcal/Gtransfo.h"
#include "lsst/jointcal/Frame.h"
#include "lsst/jointcal/StarMatch.h"
#include "lsst/pex/exceptions.h"
#include "Eigen/Cholesky"
Go to the source code of this file.
Classes | |
class | lsst::jointcal::GtransfoInverse |
class | lsst::jointcal::GtransfoComposition |
Private class to handle Gtransfo compositions (i.e. More... | |
class | lsst::jointcal::PolyXY |
Namespaces | |
lsst | |
A base class for image defects. | |
lsst::jointcal | |
Functions | |
bool | lsst::jointcal::isIdentity (const Gtransfo *gtransfo) |
Shorthand test to tell if a transfo belongs to the GtransfoIdentity class. More... | |
bool | lsst::jointcal::isIntegerShift (const Gtransfo *gtransfo) |
Shorthand test to tell if a transfo is a simple integer shift. More... | |
std::ostream & | lsst::jointcal::operator<< (std::ostream &stream, const Gtransfo >ransfo) |
allows 'stream << Transfo;' (by calling gtransfo.dump(stream)). More... | |
std::unique_ptr< Gtransfo > | lsst::jointcal::gtransfoCompose (const Gtransfo *left, const Gtransfo *right) |
Returns a pointer to a composition. More... | |
GtransfoLin | lsst::jointcal::normalizeCoordinatesTransfo (const Frame &frame) |
Returns the transformation that maps the input frame along both axes to [-1,1]. More... | |
std::unique_ptr< GtransfoPoly > | lsst::jointcal::inversePolyTransfo (const Gtransfo &Direct, const Frame &frame, const double Prec) |
approximates the inverse by a polynomial, up to required precision. More... | |
std::unique_ptr< Gtransfo > | lsst::jointcal::gtransfoRead (const std::string &fileName) |
The virtual constructor from a file. More... | |
std::unique_ptr< Gtransfo > | lsst::jointcal::gtransfoRead (std::istream &s) |
The virtual constructor from a file. More... | |