Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis Developer Reference
EigenUtilities.h
Go to the documentation of this file.
1#ifndef EigenUtilities_h
2#define EigenUtilities_h
3
4// Do not include Eigen header files here as those will slow down the compilation
5// whereever this header file is included.
6
7#include <vector>
8
9namespace Isis {
10
11// Compute the best-fitting projective transform that maps a set of 3D points
12// to 2D points.
13void computeBestFitProjectiveTransform(std::vector<std::vector<double>> const& imagePts,
14 std::vector<std::vector<double>> const& groundPts,
15 std::vector<double> & transformCoeffs);
16}
17#endif
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
void computeBestFitProjectiveTransform(std::vector< std::vector< double > > const &imagePts, std::vector< std::vector< double > > const &groundPts, std::vector< double > &transformCoeffs)
Definition EigenUtilities.cpp:17