KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
g_orthogonal_corner.h
Go to the documentation of this file.
1 
2 /* $Id: g_quaternion.h 6946 2010-10-05 17:12:13Z ksimek $ */
3 
4 /* =========================================================================== *
5 |
6 | Copyright (c) 1994-2008 by Kobus Barnard (author).
7 |
8 | Personal and educational use of this code is granted, provided that this
9 | header is kept intact, and that the authorship is not misrepresented, that
10 | its use is acknowledged in publications, and relevant papers are cited.
11 |
12 | For other use contact the author (kobus AT cs DOT arizona DOT edu).
13 |
14 | Please note that the code in this file has not necessarily been adequately
15 | tested. Naturally, there is no guarantee of performance, support, or fitness
16 | for any particular task. Nonetheless, I am interested in hearing about
17 | problems that you encounter.
18 |
19 * =========================================================================== */
20 
21 #ifndef KJB_ORTHOGONAL_CORNER_H
22 #define KJB_ORTHOGONAL_CORNER_H
23 
24 
25 #include "m_cpp/m_matrix.h"
26 #include "m_cpp/m_vector.h"
27 
28 
29 namespace kjb {
30 
32  (
33  const kjb::Vector & corner2D_1,
34  const kjb::Vector & corner2D_2,
35  const kjb::Vector & corner2D_3,
36  const kjb::Vector & position_2D,
37  const kjb::Vector & position_3D,
38  double focal_length,
39  int epsilon,
40  kjb::Vector & corner3D_1,
41  kjb::Vector & corner3D_2,
42  kjb::Vector & corner3D_3
43  );
44 } // namespace kjb
45 #endif
Definition for the Matrix class, a thin wrapper on the KJB Matrix struct and its related functionalit...
This class implements vectors, in the linear-algebra sense, with real-valued elements.
Definition: m_vector.h:87
REAL epsilon
Definition: triangle.c:674
void get_3D_corner_orientation_from_2D_corner_lines(const kjb::Vector &corner2D_1, const kjb::Vector &corner2D_2, const kjb::Vector &corner2D_3, const kjb::Vector &position_2D, const kjb::Vector &position_3D, double focal_length, int epsilon, kjb::Vector &corner3D_1, kjb::Vector &corner3D_2, kjb::Vector &corner3D_3)
Definition: g_orthogonal_corner.cpp:28
Definition for the Vector class, a thin wrapper on the KJB Vector struct and its related functionalit...