File: p4pf.cc

package info (click to toggle)
poselib 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,592 kB
  • sloc: cpp: 15,023; python: 182; sh: 85; makefile: 10
file content (233 lines) | stat: -rw-r--r-- 10,662 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
// Copyright (c) 2020, Viktor Larsson
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//
//     * Redistributions in binary form must reproduce the above copyright
//       notice, this list of conditions and the following disclaimer in the
//       documentation and/or other materials provided with the distribution.
//
//     * Neither the name of the copyright holder nor the
//       names of its contributors may be used to endorse or promote products
//       derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "p4pf.h"

#include "PoseLib/misc/re3q3.h"

namespace poselib {

int p4pf(const std::vector<Eigen::Vector2d> &x, const std::vector<Eigen::Vector3d> &X, std::vector<CameraPose> *output,
         std::vector<double> *output_focal, bool filter_solutions) {

    std::vector<CameraPose> poses;
    std::vector<double> fx;
    std::vector<double> fy;
    int n = p4pf(x, X, &poses, &fx, &fy, filter_solutions);

    if (filter_solutions) {
        int best_ind = -1;
        double best_err = 1.0;

        for (int i = 0; i < n; ++i) {
            double a = fx[i] / fy[i];
            double err = std::max(std::abs(a - 1.0), std::abs(1 / a - 1.0));
            if (err < best_err) {
                best_err = err;
                best_ind = i;
            }
        }
        if (best_err < 1.0 && best_ind > -1) {
            double focal = (fx[best_ind] + fy[best_ind]) / 2.0;
            output_focal->push_back(focal);
            output->push_back(poses[best_ind]);
        }
    } else {
        *output = poses;
        output_focal->resize(n);
        for (int i = 0; i < n; ++i) {
            (*output_focal)[i] = (fx[i] + fy[i]) / 2.0;
        }
    }
    return output->size();
}

int p4pf(const std::vector<Eigen::Vector2d> &x, const std::vector<Eigen::Vector3d> &X, std::vector<CameraPose> *output,
         std::vector<double> *output_fx, std::vector<double> *output_fy, bool filter_solutions) {

    Eigen::Matrix<double, 2, 4> points2d;
    for (int i = 0; i < 4; ++i) {
        points2d.col(i) = x[i];
    }
    double f0 = points2d.colwise().norm().mean();
    points2d /= f0;

    double d[48];
    // Setup nullspace
    Eigen::Matrix<double, 8, 4> M;
    Eigen::Matrix<double, 4, 4> A;
    Eigen::Map<Eigen::Matrix<double, 8, 4>> N(d);
    Eigen::Map<Eigen::Matrix<double, 4, 4>> B(d + 32);

    for (int i = 0; i < 4; i++) {
        M(0, i) = -points2d(1, i) * X[i](0);
        M(2, i) = -points2d(1, i) * X[i](1);
        M(4, i) = -points2d(1, i) * X[i](2);
        M(6, i) = -points2d(1, i);
        M(1, i) = points2d(0, i) * X[i](0);
        M(3, i) = points2d(0, i) * X[i](1);
        M(5, i) = points2d(0, i) * X[i](2);
        M(7, i) = points2d(0, i);
    }

    // Compute nullspace using QR
    Eigen::Matrix<double, 8, 8> Q = M.householderQr().householderQ();
    N = Q.rightCols(4);

    // Setup matrices A and B (see paper for definition)
    for (int i = 0; i < 4; ++i) {
        if (std::abs(points2d(0, i)) < std::abs(points2d(1, i))) {
            A(i, 0) = points2d(1, i) * X[i](0);
            A(i, 1) = points2d(1, i) * X[i](1);
            A(i, 2) = points2d(1, i) * X[i](2);
            A(i, 3) = points2d(1, i);

            B(i, 0) = X[i](0) * N(1, 0) + X[i](1) * N(3, 0) + X[i](2) * N(5, 0) + N(7, 0); // alpha1
            B(i, 1) = X[i](0) * N(1, 1) + X[i](1) * N(3, 1) + X[i](2) * N(5, 1) + N(7, 1); // alpha2
            B(i, 2) = X[i](0) * N(1, 2) + X[i](1) * N(3, 2) + X[i](2) * N(5, 2) + N(7, 2); // alpha3
            B(i, 3) = X[i](0) * N(1, 3) + X[i](1) * N(3, 3) + X[i](2) * N(5, 3) + N(7, 3); // 1
        } else {
            A(i, 0) = points2d(0, i) * X[i](0);
            A(i, 1) = points2d(0, i) * X[i](1);
            A(i, 2) = points2d(0, i) * X[i](2);
            A(i, 3) = points2d(0, i);

            B(i, 0) = X[i](0) * N(0, 0) + X[i](1) * N(2, 0) + X[i](2) * N(4, 0) + N(6, 0); // alpha1
            B(i, 1) = X[i](0) * N(0, 1) + X[i](1) * N(2, 1) + X[i](2) * N(4, 1) + N(6, 1); // alpha2
            B(i, 2) = X[i](0) * N(0, 2) + X[i](1) * N(2, 2) + X[i](2) * N(4, 2) + N(6, 2); // alpha3
            B(i, 3) = X[i](0) * N(0, 3) + X[i](1) * N(2, 3) + X[i](2) * N(4, 3) + N(6, 3); // 1
        }
    }

    // [p31,p32,p33,p34] = B * [alpha; 1]
    B = A.inverse() * B;

    Eigen::Matrix<double, 3, 10> coeffs;
    Eigen::Matrix<double, 3, 8> solutions;

    // Orthogonality constraints
    coeffs.row(0) << d[0] * d[1] + d[2] * d[3] + d[4] * d[5],
        d[0] * d[9] + d[1] * d[8] + d[2] * d[11] + d[3] * d[10] + d[4] * d[13] + d[5] * d[12],
        d[0] * d[17] + d[1] * d[16] + d[2] * d[19] + d[3] * d[18] + d[4] * d[21] + d[5] * d[20],
        d[8] * d[9] + d[10] * d[11] + d[12] * d[13],
        d[8] * d[17] + d[9] * d[16] + d[10] * d[19] + d[11] * d[18] + d[12] * d[21] + d[13] * d[20],
        d[16] * d[17] + d[18] * d[19] + d[20] * d[21],
        d[0] * d[25] + d[1] * d[24] + d[2] * d[27] + d[3] * d[26] + d[4] * d[29] + d[5] * d[28],
        d[8] * d[25] + d[9] * d[24] + d[10] * d[27] + d[11] * d[26] + d[12] * d[29] + d[13] * d[28],
        d[16] * d[25] + d[17] * d[24] + d[18] * d[27] + d[19] * d[26] + d[20] * d[29] + d[21] * d[28],
        d[24] * d[25] + d[26] * d[27] + d[28] * d[29];
    coeffs.row(1) << d[0] * d[32] + d[2] * d[33] + d[4] * d[34],
        d[0] * d[36] + d[2] * d[37] + d[8] * d[32] + d[4] * d[38] + d[10] * d[33] + d[12] * d[34],
        d[0] * d[40] + d[2] * d[41] + d[4] * d[42] + d[16] * d[32] + d[18] * d[33] + d[20] * d[34],
        d[8] * d[36] + d[10] * d[37] + d[12] * d[38],
        d[8] * d[40] + d[10] * d[41] + d[16] * d[36] + d[12] * d[42] + d[18] * d[37] + d[20] * d[38],
        d[16] * d[40] + d[18] * d[41] + d[20] * d[42],
        d[0] * d[44] + d[2] * d[45] + d[4] * d[46] + d[24] * d[32] + d[26] * d[33] + d[28] * d[34],
        d[8] * d[44] + d[10] * d[45] + d[12] * d[46] + d[24] * d[36] + d[26] * d[37] + d[28] * d[38],
        d[16] * d[44] + d[18] * d[45] + d[24] * d[40] + d[20] * d[46] + d[26] * d[41] + d[28] * d[42],
        d[24] * d[44] + d[26] * d[45] + d[28] * d[46];
    coeffs.row(2) << d[1] * d[32] + d[3] * d[33] + d[5] * d[34],
        d[1] * d[36] + d[3] * d[37] + d[9] * d[32] + d[5] * d[38] + d[11] * d[33] + d[13] * d[34],
        d[1] * d[40] + d[3] * d[41] + d[5] * d[42] + d[17] * d[32] + d[19] * d[33] + d[21] * d[34],
        d[9] * d[36] + d[11] * d[37] + d[13] * d[38],
        d[9] * d[40] + d[11] * d[41] + d[17] * d[36] + d[13] * d[42] + d[19] * d[37] + d[21] * d[38],
        d[17] * d[40] + d[19] * d[41] + d[21] * d[42],
        d[1] * d[44] + d[3] * d[45] + d[5] * d[46] + d[25] * d[32] + d[27] * d[33] + d[29] * d[34],
        d[9] * d[44] + d[11] * d[45] + d[13] * d[46] + d[25] * d[36] + d[27] * d[37] + d[29] * d[38],
        d[17] * d[44] + d[19] * d[45] + d[25] * d[40] + d[21] * d[46] + d[27] * d[41] + d[29] * d[42],
        d[25] * d[44] + d[27] * d[45] + d[29] * d[46];

    // The fourth unused constraint (norms of two first rows equal)
    //	d[0] * d[0] - d[1] * d[1] + d[2] * d[2] - d[3] * d[3] + d[4] * d[4] - d[5] * d[5], 2 * d[0] * d[8] - 2 * d[1] *
    // d[9] + 2 * d[2] * d[10] - 2 * d[3] * d[11] + 2 * d[4] * d[12] - 2 * d[5] * d[13], 2 * d[0] * d[16] - 2 * d[1] *
    // d[17] + 2 * d[2] * d[18] - 2 * d[3] * d[19] + 2 * d[4] * d[20] - 2 * d[5] * d[21], d[8] * d[8] - d[9] * d[9] +
    // d[10] * d[10] - d[11] * d[11] + d[12] * d[12] - d[13] * d[13], 2 * d[8] * d[16] - 2 * d[9] * d[17] + 2 * d[10] *
    // d[18] - 2 * d[11] * d[19] + 2 * d[12] * d[20] - 2 * d[13] * d[21], d[16] * d[16] - d[17] * d[17] + d[18] * d[18]
    // - d[19] * d[19] + d[20] * d[20] - d[21] * d[21], 2 * d[0] * d[24] - 2 * d[1] * d[25] + 2 * d[2] * d[26] - 2 *
    // d[3]
    // * d[27] + 2 * d[4] * d[28] - 2 * d[5] * d[29], 2 * d[8] * d[24] - 2 * d[9] * d[25] + 2 * d[10] * d[26] - 2 *
    // d[11]
    // * d[27] + 2 * d[12] * d[28] - 2 * d[13] * d[29], 2 * d[16] * d[24] - 2 * d[17] * d[25] + 2 * d[18] * d[26] - 2 *
    // d[19] * d[27] + 2 * d[20] * d[28] - 2 * d[21] * d[29], d[24] * d[24] - d[25] * d[25] + d[26] * d[26] - d[27] *
    // d[27] + d[28] * d[28] - d[29] * d[29];

    int n_sols = re3q3::re3q3(coeffs, &solutions);

    CameraPose best_pose;
    output->clear();
    output->reserve(n_sols);
    output_fx->clear();
    output_fx->reserve(n_sols);
    output_fy->clear();
    output_fy->reserve(n_sols);

    for (int i = 0; i < n_sols; ++i) {
        Eigen::Matrix<double, 3, 4> P;
        Eigen::Vector4d alpha;
        alpha << solutions.col(i), 1.0;
        Eigen::Matrix<double, 8, 1> P12 = N * alpha;
        P.block<2, 4>(0, 0) = Eigen::Map<Eigen::Matrix<double, 2, 4>>(P12.data());
        P.row(2) = B * alpha;

        if (P.block<3, 3>(0, 0).determinant() < 0)
            P = -P;

        P = P / P.block<1, 3>(2, 0).norm();
        double fx = P.block<1, 3>(0, 0).norm();
        double fy = P.block<1, 3>(1, 0).norm();
        P.row(0) = P.row(0) / fx;
        P.row(1) = P.row(1) / fy;

        Eigen::Matrix3d R = P.block<3, 3>(0, 0);
        Eigen::Vector3d t = P.block<3, 1>(0, 3);
        fx *= f0;
        fy *= f0;

        CameraPose pose(R, t);

        if (filter_solutions) {
            // Check cheirality
            bool ok = true;
            for (int k = 0; k < 4; ++k) {
                if (R.row(2) * X[k] + t(2) < 0.0) {
                    ok = false;
                    break;
                }
            }
            if (!ok) {
                continue;
            }
        }
        output->push_back(pose);
        output_fx->push_back(fx);
        output_fy->push_back(fy);
    }
    return output->size();
}

} // namespace poselib