Welcome to mirror list, hosted at ThFree Co, Russian Federation.

modal_solver_test.cc « simple_pipeline « libmv « libmv « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0acf978e6f5108e5f334f12af32044cca6573ac9 (plain)
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
// Copyright (c) 2013 libmv authors.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.

#include "libmv/simple_pipeline/modal_solver.h"

#include "libmv/logging/logging.h"
#include "libmv/simple_pipeline/bundle.h"
#include "libmv/simple_pipeline/camera_intrinsics.h"
#include "testing/testing.h"

#include <stdio.h>

namespace libmv {

TEST(ModalSolver, SyntheticCubeSceneMotion) {
  double kTolerance = 1e-8;

  PolynomialCameraIntrinsics intrinsics;
  intrinsics.SetFocalLength(658.286, 658.286);
  intrinsics.SetPrincipalPoint(480.0, 270.0);
  intrinsics.SetRadialDistortion(0.0, 0.0, 0.0);

  Marker markers[] = {
      {1, 0, 212.172775, 354.713538, 1.0},
      {2, 0, 773.468399, 358.735306, 1.0},
      {1, 1, 62.415197, 287.905354, 1.0},
      {2, 1, 619.103336, 324.402537, 1.0},
      {1, 2, 206.847939, 237.567925, 1.0},
      {2, 2, 737.496986, 247.881383, 1.0},
      {1, 3, 351.743889, 316.415906, 1.0},
      {2, 3, 908.779621, 290.703617, 1.0},
      {1, 4, 232.941413, 54.265443, 1.0},
      {2, 4, 719.444847, 63.062531, 1.0},
      {1, 5, 96.391611, 119.283537, 1.0},
      {2, 5, 611.413136, 160.890715, 1.0},
      {1, 6, 363.444958, 150.838144, 1.0},
      {2, 6, 876.374531, 114.916206, 1.0},
  };
  int num_markers = sizeof(markers) / sizeof(Marker);

  Tracks tracks;
  for (int i = 0; i < num_markers; i++) {
    double x = markers[i].x, y = markers[i].y;
    intrinsics.InvertIntrinsics(x, y, &x, &y);
    tracks.Insert(markers[i].image, markers[i].track, x, y);
  }

  EuclideanReconstruction reconstruction;
  ModalSolver(tracks, &reconstruction);
  EuclideanBundleCommonIntrinsics(tracks,
                                  BUNDLE_NO_INTRINSICS,
                                  BUNDLE_NO_TRANSLATION,
                                  &reconstruction,
                                  &intrinsics,
                                  NULL);

  Mat3 expected_rotation;
  // clang-format off
  expected_rotation << 0.98215101743472, 0.17798354937546,  0.06083777694542,
                      -0.16875283983360, 0.97665300495333, -0.13293376908719,
                      -0.08307742172243, 0.12029448893171,  0.98925597189636;
  // clang-format on

  Mat3& first_camera_R = reconstruction.CameraForImage(1)->R;
  Mat3& second_camera_R = reconstruction.CameraForImage(2)->R;

  EXPECT_TRUE(Mat3::Identity().isApprox(first_camera_R, kTolerance));
  EXPECT_TRUE(expected_rotation.isApprox(second_camera_R, kTolerance));
}

}  // namespace libmv