#include <cassert>
#include <cmath>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <limits>
#include <memory>
#include <sstream>
#include <utility>
#include "Eigen/Core"
#include "lsst/log/Log.h"
#include "lsst/geom/Point.h"
#include "lsst/jointcal/AstrometryTransform.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.
|
bool | lsst::jointcal::isIntegerShift (const AstrometryTransform *transform) |
| Shorthand test to tell if a transform is a simple integer shift.
|
|
std::ostream & | lsst::jointcal::operator<< (std::ostream &stream, AstrometryTransform const &transform) |
|
std::unique_ptr< AstrometryTransform > | lsst::jointcal::compose (AstrometryTransform const &left, AstrometryTransformIdentity const &right) |
|
std::unique_ptr< AstrometryTransform > | lsst::jointcal::compose (AstrometryTransform const &left, AstrometryTransform const &right) |
| Returns a pointer to a composition of transforms, representing left(right()) .
|
|
AstrometryTransformLinear | lsst::jointcal::normalizeCoordinatesTransform (const Frame &frame) |
| Returns the transformation that maps the input frame along both axes to [-1,1].
|
|
std::shared_ptr< AstrometryTransformPolynomial > | lsst::jointcal::inversePolyTransform (AstrometryTransform const &forward, Frame const &domain, double precision, std::size_t maxOrder=9, std::size_t nSteps=50) |
| Approximate the inverse by a polynomial, to some precision.
|
|
std::unique_ptr< AstrometryTransform > | lsst::jointcal::astrometryTransformRead (const std::string &fileName) |
| The virtual constructor from a file.
|
|
std::unique_ptr< AstrometryTransform > | lsst::jointcal::astrometryTransformRead (std::istream &s) |
| The virtual constructor from a file.
|
|