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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
|
// Copyright (c) 2021, 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 HOLDERS OR CONTRIBUTORS 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.
#ifndef POSELIB_JACOBIAN_IMPL_H_
#define POSELIB_JACOBIAN_IMPL_H_
#include "PoseLib/camera_pose.h"
#include "PoseLib/misc/colmap_models.h"
#include "PoseLib/misc/essential.h"
#include "PoseLib/types.h"
namespace poselib {
// For the accumulators we support supplying a vector<double> with point-wise weights for the residuals
// In case we don't want to have weighted residuals, we can pass UniformWeightVector instead of filling a std::vector
// with 1.0 The multiplication is then hopefully is optimized away since it always returns 1.0
class UniformWeightVector {
public:
UniformWeightVector() {}
constexpr double operator[](std::size_t idx) const { return 1.0; }
};
class UniformWeightVectors { // this corresponds to std::vector<std::vector<double>> used for generalized cameras etc
public:
UniformWeightVectors() {}
constexpr const UniformWeightVector &operator[](std::size_t idx) const { return w; }
const UniformWeightVector w;
typedef UniformWeightVector value_type;
};
template <typename CameraModel, typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class CameraJacobianAccumulator {
public:
CameraJacobianAccumulator(const std::vector<Point2D> &points2D, const std::vector<Point3D> &points3D,
const Camera &cam, const LossFunction &loss,
const ResidualWeightVector &w = ResidualWeightVector())
: x(points2D), X(points3D), camera(cam), loss_fn(loss), weights(w) {}
double residual(const CameraPose &pose) const {
double cost = 0;
for (size_t i = 0; i < x.size(); ++i) {
const Eigen::Vector3d Z = pose.apply(X[i]);
// Note this assumes points that are behind the camera will stay behind the camera
// during the optimization
if (Z(2) < 0)
continue;
const double inv_z = 1.0 / Z(2);
Eigen::Vector2d p(Z(0) * inv_z, Z(1) * inv_z);
CameraModel::project(camera.params, p, &p);
const double r0 = p(0) - x[i](0);
const double r1 = p(1) - x[i](1);
const double r_squared = r0 * r0 + r1 * r1;
cost += weights[i] * loss_fn.loss(r_squared);
}
return cost;
}
// computes J.transpose() * J and J.transpose() * res
// Only computes the lower half of JtJ
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
Eigen::Matrix3d R = pose.R();
Eigen::Matrix2d Jcam;
Jcam.setIdentity(); // we initialize to identity here (this is for the calibrated case)
size_t num_residuals = 0;
for (size_t i = 0; i < x.size(); ++i) {
const Eigen::Vector3d Z = R * X[i] + pose.t;
const Eigen::Vector2d z = Z.hnormalized();
// Note this assumes points that are behind the camera will stay behind the camera
// during the optimization
if (Z(2) < 0)
continue;
// Project with intrinsics
Eigen::Vector2d zp = z;
CameraModel::project_with_jac(camera.params, z, &zp, &Jcam);
// Setup residual
Eigen::Vector2d r = zp - x[i];
const double r_squared = r.squaredNorm();
const double weight = weights[i] * loss_fn.weight(r_squared);
if (weight == 0.0) {
continue;
}
num_residuals++;
// Compute jacobian w.r.t. Z (times R)
Eigen::Matrix<double, 2, 3> dZ;
dZ.block<2, 2>(0, 0) = Jcam;
dZ.col(2) = -Jcam * z;
dZ *= 1.0 / Z(2);
dZ *= R;
const double X0 = X[i](0);
const double X1 = X[i](1);
const double X2 = X[i](2);
const double dZtdZ_0_0 = weight * dZ.col(0).dot(dZ.col(0));
const double dZtdZ_1_0 = weight * dZ.col(1).dot(dZ.col(0));
const double dZtdZ_1_1 = weight * dZ.col(1).dot(dZ.col(1));
const double dZtdZ_2_0 = weight * dZ.col(2).dot(dZ.col(0));
const double dZtdZ_2_1 = weight * dZ.col(2).dot(dZ.col(1));
const double dZtdZ_2_2 = weight * dZ.col(2).dot(dZ.col(2));
JtJ(0, 0) += X2 * (X2 * dZtdZ_1_1 - X1 * dZtdZ_2_1) + X1 * (X1 * dZtdZ_2_2 - X2 * dZtdZ_2_1);
JtJ(1, 0) += -X2 * (X2 * dZtdZ_1_0 - X0 * dZtdZ_2_1) - X1 * (X0 * dZtdZ_2_2 - X2 * dZtdZ_2_0);
JtJ(2, 0) += X1 * (X0 * dZtdZ_2_1 - X1 * dZtdZ_2_0) - X2 * (X0 * dZtdZ_1_1 - X1 * dZtdZ_1_0);
JtJ(3, 0) += X1 * dZtdZ_2_0 - X2 * dZtdZ_1_0;
JtJ(4, 0) += X1 * dZtdZ_2_1 - X2 * dZtdZ_1_1;
JtJ(5, 0) += X1 * dZtdZ_2_2 - X2 * dZtdZ_2_1;
JtJ(1, 1) += X2 * (X2 * dZtdZ_0_0 - X0 * dZtdZ_2_0) + X0 * (X0 * dZtdZ_2_2 - X2 * dZtdZ_2_0);
JtJ(2, 1) += -X2 * (X1 * dZtdZ_0_0 - X0 * dZtdZ_1_0) - X0 * (X0 * dZtdZ_2_1 - X1 * dZtdZ_2_0);
JtJ(3, 1) += X2 * dZtdZ_0_0 - X0 * dZtdZ_2_0;
JtJ(4, 1) += X2 * dZtdZ_1_0 - X0 * dZtdZ_2_1;
JtJ(5, 1) += X2 * dZtdZ_2_0 - X0 * dZtdZ_2_2;
JtJ(2, 2) += X1 * (X1 * dZtdZ_0_0 - X0 * dZtdZ_1_0) + X0 * (X0 * dZtdZ_1_1 - X1 * dZtdZ_1_0);
JtJ(3, 2) += X0 * dZtdZ_1_0 - X1 * dZtdZ_0_0;
JtJ(4, 2) += X0 * dZtdZ_1_1 - X1 * dZtdZ_1_0;
JtJ(5, 2) += X0 * dZtdZ_2_1 - X1 * dZtdZ_2_0;
JtJ(3, 3) += dZtdZ_0_0;
JtJ(4, 3) += dZtdZ_1_0;
JtJ(5, 3) += dZtdZ_2_0;
JtJ(4, 4) += dZtdZ_1_1;
JtJ(5, 4) += dZtdZ_2_1;
JtJ(5, 5) += dZtdZ_2_2;
r *= weight;
Jtr(0) += (r(0) * (X1 * dZ(0, 2) - X2 * dZ(0, 1)) + r(1) * (X1 * dZ(1, 2) - X2 * dZ(1, 1)));
Jtr(1) += (-r(0) * (X0 * dZ(0, 2) - X2 * dZ(0, 0)) - r(1) * (X0 * dZ(1, 2) - X2 * dZ(1, 0)));
Jtr(2) += (r(0) * (X0 * dZ(0, 1) - X1 * dZ(0, 0)) + r(1) * (X0 * dZ(1, 1) - X1 * dZ(1, 0)));
Jtr(3) += (dZ(0, 0) * r(0) + dZ(1, 0) * r(1));
Jtr(4) += (dZ(0, 1) * r(0) + dZ(1, 1) * r(1));
Jtr(5) += (dZ(0, 2) * r(0) + dZ(1, 2) * r(1));
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
// The rotation is parameterized via the lie-rep. and post-multiplication
// i.e. R(delta) = R * expm([delta]_x)
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
// Translation is parameterized as (negative) shift in position
// i.e. t(delta) = t + R*delta
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
const std::vector<Point2D> &x;
const std::vector<Point3D> &X;
const Camera &camera;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
};
template <typename LossFunction, typename ResidualWeightVectors = UniformWeightVectors>
class GeneralizedCameraJacobianAccumulator {
public:
GeneralizedCameraJacobianAccumulator(const std::vector<std::vector<Point2D>> &points2D,
const std::vector<std::vector<Point3D>> &points3D,
const std::vector<CameraPose> &camera_ext,
const std::vector<Camera> &camera_int, const LossFunction &l,
const ResidualWeightVectors &w = ResidualWeightVectors())
: num_cams(points2D.size()), x(points2D), X(points3D), rig_poses(camera_ext), cameras(camera_int), loss_fn(l),
weights(w) {}
double residual(const CameraPose &pose) const {
double cost = 0.0;
for (size_t k = 0; k < num_cams; ++k) {
if (x[k].size() == 0) {
continue;
}
const Camera &camera = cameras[k];
CameraPose full_pose;
full_pose.q = quat_multiply(rig_poses[k].q, pose.q);
full_pose.t = rig_poses[k].rotate(pose.t) + rig_poses[k].t;
switch (camera.model_id) {
#define SWITCH_CAMERA_MODEL_CASE(Model) \
case Model::model_id: { \
CameraJacobianAccumulator<Model, decltype(loss_fn), typename ResidualWeightVectors::value_type> accum( \
x[k], X[k], cameras[k], loss_fn, weights[k]); \
cost += accum.residual(full_pose); \
break; \
}
SWITCH_CAMERA_MODELS
#undef SWITCH_CAMERA_MODEL_CASE
}
}
return cost;
}
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
size_t num_residuals = 0;
for (size_t k = 0; k < num_cams; ++k) {
if (x[k].size() == 0) {
continue;
}
const Camera &camera = cameras[k];
CameraPose full_pose;
full_pose.q = quat_multiply(rig_poses[k].q, pose.q);
full_pose.t = rig_poses[k].rotate(pose.t) + rig_poses[k].t;
switch (camera.model_id) {
#define SWITCH_CAMERA_MODEL_CASE(Model) \
case Model::model_id: { \
CameraJacobianAccumulator<Model, decltype(loss_fn), typename ResidualWeightVectors::value_type> accum( \
x[k], X[k], cameras[k], loss_fn, weights[k]); \
num_residuals += accum.accumulate(full_pose, JtJ, Jtr); \
break; \
}
SWITCH_CAMERA_MODELS
#undef SWITCH_CAMERA_MODEL_CASE
}
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
const size_t num_cams;
const std::vector<std::vector<Point2D>> &x;
const std::vector<std::vector<Point3D>> &X;
const std::vector<CameraPose> &rig_poses;
const std::vector<Camera> &cameras;
const LossFunction &loss_fn;
const ResidualWeightVectors &weights;
};
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector> class LineJacobianAccumulator {
public:
LineJacobianAccumulator(const std::vector<Line2D> &lines2D_, const std::vector<Line3D> &lines3D_,
const LossFunction &loss, const ResidualWeightVector &w = ResidualWeightVector())
: lines2D(lines2D_), lines3D(lines3D_), loss_fn(loss), weights(w) {}
double residual(const CameraPose &pose) const {
Eigen::Matrix3d R = pose.R();
double cost = 0;
for (size_t i = 0; i < lines2D.size(); ++i) {
const Eigen::Vector3d Z1 = R * lines3D[i].X1 + pose.t;
const Eigen::Vector3d Z2 = R * lines3D[i].X2 + pose.t;
Eigen::Vector3d l = Z1.cross(Z2);
l /= l.topRows<2>().norm();
const double r0 = l.dot(lines2D[i].x1.homogeneous());
const double r1 = l.dot(lines2D[i].x2.homogeneous());
const double r_squared = r0 * r0 + r1 * r1;
cost += weights[i] * loss_fn.loss(r_squared);
}
return cost;
}
// computes J.transpose() * J and J.transpose() * res
// Only computes the lower half of JtJ
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
Eigen::Matrix3d E, R;
R = pose.R();
E << pose.t.cross(R.col(0)), pose.t.cross(R.col(1)), pose.t.cross(R.col(2));
size_t num_residuals = 0;
for (size_t k = 0; k < lines2D.size(); ++k) {
const Eigen::Vector3d Z1 = R * lines3D[k].X1 + pose.t;
const Eigen::Vector3d Z2 = R * lines3D[k].X2 + pose.t;
const Eigen::Vector3d X12 = lines3D[k].X1.cross(lines3D[k].X2);
const Eigen::Vector3d dX = lines3D[k].X1 - lines3D[k].X2;
// Projected line
const Eigen::Vector3d l = Z1.cross(Z2);
// Normalized line by first two coordinates
Eigen::Vector2d alpha = l.topRows<2>();
double beta = l(2);
const double n_alpha = alpha.norm();
alpha /= n_alpha;
beta /= n_alpha;
// Compute residual
Eigen::Vector2d r;
r << alpha.dot(lines2D[k].x1) + beta, alpha.dot(lines2D[k].x2) + beta;
const double r_squared = r.squaredNorm();
const double weight = weights[k] * loss_fn.weight(r_squared);
if (weight == 0.0) {
continue;
}
num_residuals++;
Eigen::Matrix<double, 3, 6> dl_drt;
// Differentiate line with respect to rotation parameters
dl_drt.block<1, 3>(0, 0) = E.row(0).cross(dX) - R.row(0).cross(X12);
dl_drt.block<1, 3>(1, 0) = E.row(1).cross(dX) - R.row(1).cross(X12);
dl_drt.block<1, 3>(2, 0) = E.row(2).cross(dX) - R.row(2).cross(X12);
// and translation params
dl_drt.block<1, 3>(0, 3) = R.row(0).cross(dX);
dl_drt.block<1, 3>(1, 3) = R.row(1).cross(dX);
dl_drt.block<1, 3>(2, 3) = R.row(2).cross(dX);
// Differentiate normalized line w.r.t. original line
Eigen::Matrix3d dln_dl;
dln_dl.block<2, 2>(0, 0) = (Eigen::Matrix2d::Identity() - alpha * alpha.transpose()) / n_alpha;
dln_dl.block<1, 2>(2, 0) = -beta * alpha / n_alpha;
dln_dl.block<2, 1>(0, 2).setZero();
dln_dl(2, 2) = 1 / n_alpha;
// Differentiate residual w.r.t. line
Eigen::Matrix<double, 2, 3> dr_dl;
dr_dl.row(0) << lines2D[k].x1.transpose(), 1.0;
dr_dl.row(1) << lines2D[k].x2.transpose(), 1.0;
Eigen::Matrix<double, 2, 6> J = dr_dl * dln_dl * dl_drt;
// Accumulate into JtJ and Jtr
Jtr += weight * J.transpose() * r;
for (size_t i = 0; i < 6; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weight * (J.col(i).dot(J.col(j)));
}
}
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
// The rotation is parameterized via the lie-rep. and post-multiplication
// i.e. R(delta) = R * expm([delta]_x)
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
// Translation is parameterized as (negative) shift in position
// i.e. t(delta) = t + R*delta
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
const std::vector<Line2D> &lines2D;
const std::vector<Line3D> &lines3D;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
};
template <typename PointLossFunction, typename LineLossFunction, typename PointResidualsVector = UniformWeightVector,
typename LineResidualsVector = UniformWeightVector>
class PointLineJacobianAccumulator {
public:
PointLineJacobianAccumulator(const std::vector<Point2D> &points2D, const std::vector<Point3D> &points3D,
const std::vector<Line2D> &lines2D, const std::vector<Line3D> &lines3D,
const PointLossFunction &l_point, const LineLossFunction &l_line,
const PointResidualsVector &weights_pts = PointResidualsVector(),
const LineResidualsVector &weights_l = LineResidualsVector())
: pts_accum(points2D, points3D, trivial_camera, l_point, weights_pts),
line_accum(lines2D, lines3D, l_line, weights_l) {
trivial_camera.model_id = NullCameraModel::model_id;
}
double residual(const CameraPose &pose) const { return pts_accum.residual(pose) + line_accum.residual(pose); }
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
return pts_accum.accumulate(pose, JtJ, Jtr) + line_accum.accumulate(pose, JtJ, Jtr);
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
// Both CameraJacobianAccumulator and LineJacobianAccumulator have the same step!
CameraPose pose_new;
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
Camera trivial_camera;
CameraJacobianAccumulator<NullCameraModel, PointLossFunction, PointResidualsVector> pts_accum;
LineJacobianAccumulator<LineLossFunction, LineResidualsVector> line_accum;
};
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class RelativePoseJacobianAccumulator {
public:
RelativePoseJacobianAccumulator(const std::vector<Point2D> &points2D_1, const std::vector<Point2D> &points2D_2,
const LossFunction &l, const ResidualWeightVector &w = ResidualWeightVector())
: x1(points2D_1), x2(points2D_2), loss_fn(l), weights(w) {}
double residual(const CameraPose &pose) const {
Eigen::Matrix3d E;
essential_from_motion(pose, &E);
double cost = 0.0;
for (size_t k = 0; k < x1.size(); ++k) {
double C = x2[k].homogeneous().dot(E * x1[k].homogeneous());
double nJc_sq = (E.block<2, 3>(0, 0) * x1[k].homogeneous()).squaredNorm() +
(E.block<3, 2>(0, 0).transpose() * x2[k].homogeneous()).squaredNorm();
double r2 = (C * C) / nJc_sq;
cost += weights[k] * loss_fn.loss(r2);
}
return cost;
}
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 5, 5> &JtJ, Eigen::Matrix<double, 5, 1> &Jtr) {
// We start by setting up a basis for the updates in the translation (orthogonal to t)
// We find the minimum element of t and cross product with the corresponding basis vector.
// (this ensures that the first cross product is not close to the zero vector)
if (std::abs(pose.t.x()) < std::abs(pose.t.y())) {
// x < y
if (std::abs(pose.t.x()) < std::abs(pose.t.z())) {
tangent_basis.col(0) = pose.t.cross(Eigen::Vector3d::UnitX()).normalized();
} else {
tangent_basis.col(0) = pose.t.cross(Eigen::Vector3d::UnitZ()).normalized();
}
} else {
// x > y
if (std::abs(pose.t.y()) < std::abs(pose.t.z())) {
tangent_basis.col(0) = pose.t.cross(Eigen::Vector3d::UnitY()).normalized();
} else {
tangent_basis.col(0) = pose.t.cross(Eigen::Vector3d::UnitZ()).normalized();
}
}
tangent_basis.col(1) = tangent_basis.col(0).cross(pose.t).normalized();
Eigen::Matrix3d E, R;
R = pose.R();
essential_from_motion(pose, &E);
// Matrices contain the jacobians of E w.r.t. the rotation and translation parameters
Eigen::Matrix<double, 9, 3> dR;
Eigen::Matrix<double, 9, 2> dt;
// Each column is vec(E*skew(e_k)) where e_k is k:th basis vector
dR.block<3, 1>(0, 0).setZero();
dR.block<3, 1>(0, 1) = -E.col(2);
dR.block<3, 1>(0, 2) = E.col(1);
dR.block<3, 1>(3, 0) = E.col(2);
dR.block<3, 1>(3, 1).setZero();
dR.block<3, 1>(3, 2) = -E.col(0);
dR.block<3, 1>(6, 0) = -E.col(1);
dR.block<3, 1>(6, 1) = E.col(0);
dR.block<3, 1>(6, 2).setZero();
// Each column is vec(skew(tangent_basis[k])*R)
dt.block<3, 1>(0, 0) = tangent_basis.col(0).cross(R.col(0));
dt.block<3, 1>(0, 1) = tangent_basis.col(1).cross(R.col(0));
dt.block<3, 1>(3, 0) = tangent_basis.col(0).cross(R.col(1));
dt.block<3, 1>(3, 1) = tangent_basis.col(1).cross(R.col(1));
dt.block<3, 1>(6, 0) = tangent_basis.col(0).cross(R.col(2));
dt.block<3, 1>(6, 1) = tangent_basis.col(1).cross(R.col(2));
size_t num_residuals = 0;
for (size_t k = 0; k < x1.size(); ++k) {
double C = x2[k].homogeneous().dot(E * x1[k].homogeneous());
// J_C is the Jacobian of the epipolar constraint w.r.t. the image points
Eigen::Vector4d J_C;
J_C << E.block<3, 2>(0, 0).transpose() * x2[k].homogeneous(), E.block<2, 3>(0, 0) * x1[k].homogeneous();
const double nJ_C = J_C.norm();
const double inv_nJ_C = 1.0 / nJ_C;
const double r = C * inv_nJ_C;
// Compute weight from robust loss function (used in the IRLS)
const double weight = weights[k] * loss_fn.weight(r * r);
if (weight == 0.0) {
continue;
}
num_residuals++;
// Compute Jacobian of Sampson error w.r.t the fundamental/essential matrix (3x3)
Eigen::Matrix<double, 1, 9> dF;
dF << x1[k](0) * x2[k](0), x1[k](0) * x2[k](1), x1[k](0), x1[k](1) * x2[k](0), x1[k](1) * x2[k](1),
x1[k](1), x2[k](0), x2[k](1), 1.0;
const double s = C * inv_nJ_C * inv_nJ_C;
dF(0) -= s * (J_C(2) * x1[k](0) + J_C(0) * x2[k](0));
dF(1) -= s * (J_C(3) * x1[k](0) + J_C(0) * x2[k](1));
dF(2) -= s * (J_C(0));
dF(3) -= s * (J_C(2) * x1[k](1) + J_C(1) * x2[k](0));
dF(4) -= s * (J_C(3) * x1[k](1) + J_C(1) * x2[k](1));
dF(5) -= s * (J_C(1));
dF(6) -= s * (J_C(2));
dF(7) -= s * (J_C(3));
dF *= inv_nJ_C;
// and then w.r.t. the pose parameters (rotation + tangent basis for translation)
Eigen::Matrix<double, 1, 5> J;
J.block<1, 3>(0, 0) = dF * dR;
J.block<1, 2>(0, 3) = dF * dt;
// Accumulate into JtJ and Jtr
Jtr += weight * C * inv_nJ_C * J.transpose();
JtJ(0, 0) += weight * (J(0) * J(0));
JtJ(1, 0) += weight * (J(1) * J(0));
JtJ(1, 1) += weight * (J(1) * J(1));
JtJ(2, 0) += weight * (J(2) * J(0));
JtJ(2, 1) += weight * (J(2) * J(1));
JtJ(2, 2) += weight * (J(2) * J(2));
JtJ(3, 0) += weight * (J(3) * J(0));
JtJ(3, 1) += weight * (J(3) * J(1));
JtJ(3, 2) += weight * (J(3) * J(2));
JtJ(3, 3) += weight * (J(3) * J(3));
JtJ(4, 0) += weight * (J(4) * J(0));
JtJ(4, 1) += weight * (J(4) * J(1));
JtJ(4, 2) += weight * (J(4) * J(2));
JtJ(4, 3) += weight * (J(4) * J(3));
JtJ(4, 4) += weight * (J(4) * J(4));
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 5, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
pose_new.t = pose.t + tangent_basis * dp.block<2, 1>(3, 0);
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 5;
private:
const std::vector<Point2D> &x1;
const std::vector<Point2D> &x2;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
Eigen::Matrix<double, 3, 2> tangent_basis;
};
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class SharedFocalRelativePoseJacobianAccumulator {
public:
SharedFocalRelativePoseJacobianAccumulator(const std::vector<Point2D> &points2D_1,
const std::vector<Point2D> &points2D_2, const LossFunction &l,
const ResidualWeightVector &w = ResidualWeightVector())
: x1(points2D_1), x2(points2D_2), loss_fn(l), weights(w) {}
double residual(const ImagePair &image_pair) const {
Eigen::Matrix3d E;
essential_from_motion(image_pair.pose, &E);
Eigen::Matrix3d K_inv;
K_inv << 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, image_pair.camera1.focal();
Eigen::Matrix3d F = K_inv * (E * K_inv);
double cost = 0.0;
for (size_t k = 0; k < x1.size(); ++k) {
double C = x2[k].homogeneous().dot(F * x1[k].homogeneous());
double nJc_sq = (F.block<2, 3>(0, 0) * x1[k].homogeneous()).squaredNorm() +
(F.block<3, 2>(0, 0).transpose() * x2[k].homogeneous()).squaredNorm();
double r2 = (C * C) / nJc_sq;
cost += weights[k] * loss_fn.loss(r2);
}
return cost;
}
size_t accumulate(const ImagePair &image_pair, Eigen::Matrix<double, 6, 6> &JtJ, Eigen::Matrix<double, 6, 1> &Jtr) {
// We start by setting up a basis for the updates in the translation (orthogonal to t)
// We find the minimum element of t and cross product with the corresponding basis vector.
// (this ensures that the first cross product is not close to the zero vector)
if (std::abs(image_pair.pose.t.x()) < std::abs(image_pair.pose.t.y())) {
// x < y
if (std::abs(image_pair.pose.t.x()) < std::abs(image_pair.pose.t.z())) {
tangent_basis.col(0) = image_pair.pose.t.cross(Eigen::Vector3d::UnitX()).normalized();
} else {
tangent_basis.col(0) = image_pair.pose.t.cross(Eigen::Vector3d::UnitZ()).normalized();
}
} else {
// x > y
if (std::abs(image_pair.pose.t.y()) < std::abs(image_pair.pose.t.z())) {
tangent_basis.col(0) = image_pair.pose.t.cross(Eigen::Vector3d::UnitY()).normalized();
} else {
tangent_basis.col(0) = image_pair.pose.t.cross(Eigen::Vector3d::UnitZ()).normalized();
}
}
tangent_basis.col(1) = tangent_basis.col(0).cross(image_pair.pose.t).normalized();
double focal = image_pair.camera1.focal();
Eigen::Matrix3d K_inv;
K_inv << 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, focal;
Eigen::Matrix3d E, R;
R = image_pair.pose.R();
essential_from_motion(image_pair.pose, &E);
Eigen::Matrix3d F = K_inv * (E * K_inv);
// Matrices contain the jacobians of E w.r.t. the rotation and translation parameters
Eigen::Matrix<double, 9, 3> dR;
Eigen::Matrix<double, 9, 2> dt;
// Each column is vec(E*skew(e_k)) where e_k is k:th basis vector
dR.block<3, 1>(0, 0).setZero();
dR.block<3, 1>(0, 1) = -E.col(2);
dR.block<3, 1>(0, 2) = E.col(1);
dR.block<3, 1>(3, 0) = E.col(2);
dR.block<3, 1>(3, 1).setZero();
dR.block<3, 1>(3, 2) = -E.col(0);
dR.block<3, 1>(6, 0) = -E.col(1);
dR.block<3, 1>(6, 1) = E.col(0);
dR.block<3, 1>(6, 2).setZero();
dR.row(2) *= focal;
dR.row(5) *= focal;
dR.row(6) *= focal;
dR.row(7) *= focal;
dR.row(8) *= focal * focal;
// Each column is vec(skew(tangent_basis[k])*R)
dt.block<3, 1>(0, 0) = tangent_basis.col(0).cross(R.col(0));
dt.block<3, 1>(0, 1) = tangent_basis.col(1).cross(R.col(0));
dt.block<3, 1>(3, 0) = tangent_basis.col(0).cross(R.col(1));
dt.block<3, 1>(3, 1) = tangent_basis.col(1).cross(R.col(1));
dt.block<3, 1>(6, 0) = tangent_basis.col(0).cross(R.col(2));
dt.block<3, 1>(6, 1) = tangent_basis.col(1).cross(R.col(2));
dt.row(2) *= focal;
dt.row(5) *= focal;
dt.row(6) *= focal;
dt.row(7) *= focal;
dt.row(8) *= focal * focal;
Eigen::Matrix<double, 9, 1> df;
df << 0.0, 0.0, E(2, 0), 0.0, 0.0, E(2, 1), E(0, 2), E(1, 2), 2 * E(2, 2) * focal;
size_t num_residuals = 0;
for (size_t k = 0; k < x1.size(); ++k) {
double C = x2[k].homogeneous().dot(F * x1[k].homogeneous());
// J_C is the Jacobian of the epipolar constraint w.r.t. the image points
Eigen::Vector4d J_C;
J_C << F.block<3, 2>(0, 0).transpose() * x2[k].homogeneous(), F.block<2, 3>(0, 0) * x1[k].homogeneous();
const double nJ_C = J_C.norm();
const double inv_nJ_C = 1.0 / nJ_C;
const double r = C * inv_nJ_C;
// Compute weight from robust loss function (used in the IRLS)
const double weight = weights[k] * loss_fn.weight(r * r);
if (weight == 0.0) {
continue;
}
num_residuals++;
// Compute Jacobian of Sampson error w.r.t the fundamental/essential matrix (3x3)
Eigen::Matrix<double, 1, 9> dF;
dF << x1[k](0) * x2[k](0), x1[k](0) * x2[k](1), x1[k](0), x1[k](1) * x2[k](0), x1[k](1) * x2[k](1),
x1[k](1), x2[k](0), x2[k](1), 1.0;
const double s = C * inv_nJ_C * inv_nJ_C;
dF(0) -= s * (J_C(2) * x1[k](0) + J_C(0) * x2[k](0));
dF(1) -= s * (J_C(3) * x1[k](0) + J_C(0) * x2[k](1));
dF(2) -= s * (J_C(0));
dF(3) -= s * (J_C(2) * x1[k](1) + J_C(1) * x2[k](0));
dF(4) -= s * (J_C(3) * x1[k](1) + J_C(1) * x2[k](1));
dF(5) -= s * (J_C(1));
dF(6) -= s * (J_C(2));
dF(7) -= s * (J_C(3));
dF *= inv_nJ_C;
// and then w.r.t. the pose parameters (rotation + tangent basis for translation)
Eigen::Matrix<double, 1, 6> J;
J.block<1, 3>(0, 0) = dF * dR;
J.block<1, 2>(0, 3) = dF * dt;
J(0, 5) = dF * df;
// Accumulate into JtJ and Jtr
Jtr += weight * C * inv_nJ_C * J.transpose();
JtJ(0, 0) += weight * (J(0) * J(0));
JtJ(1, 0) += weight * (J(1) * J(0));
JtJ(1, 1) += weight * (J(1) * J(1));
JtJ(2, 0) += weight * (J(2) * J(0));
JtJ(2, 1) += weight * (J(2) * J(1));
JtJ(2, 2) += weight * (J(2) * J(2));
JtJ(3, 0) += weight * (J(3) * J(0));
JtJ(3, 1) += weight * (J(3) * J(1));
JtJ(3, 2) += weight * (J(3) * J(2));
JtJ(3, 3) += weight * (J(3) * J(3));
JtJ(4, 0) += weight * (J(4) * J(0));
JtJ(4, 1) += weight * (J(4) * J(1));
JtJ(4, 2) += weight * (J(4) * J(2));
JtJ(4, 3) += weight * (J(4) * J(3));
JtJ(4, 4) += weight * (J(4) * J(4));
JtJ(5, 0) += weight * (J(5) * J(0));
JtJ(5, 1) += weight * (J(5) * J(1));
JtJ(5, 2) += weight * (J(5) * J(2));
JtJ(5, 3) += weight * (J(5) * J(3));
JtJ(5, 4) += weight * (J(5) * J(4));
JtJ(5, 5) += weight * (J(5) * J(5));
}
return num_residuals;
}
ImagePair step(Eigen::Matrix<double, 6, 1> dp, const ImagePair &image_pair) const {
CameraPose pose_new;
pose_new.q = quat_step_post(image_pair.pose.q, dp.block<3, 1>(0, 0));
pose_new.t = image_pair.pose.t + tangent_basis * dp.block<2, 1>(3, 0);
Camera camera_new =
Camera("SIMPLE_PINHOLE",
std::vector<double>{std::max(image_pair.camera1.focal() + dp(5, 0), 0.0), 0.0, 0.0}, -1, -1);
ImagePair calib_pose_new(pose_new, camera_new, camera_new);
return calib_pose_new;
}
typedef ImagePair param_t;
static constexpr size_t num_params = 6;
private:
const std::vector<Point2D> &x1;
const std::vector<Point2D> &x2;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
Eigen::Matrix<double, 3, 2> tangent_basis;
};
template <typename LossFunction, typename ResidualWeightVectors = UniformWeightVectors>
class GeneralizedRelativePoseJacobianAccumulator {
public:
GeneralizedRelativePoseJacobianAccumulator(const std::vector<PairwiseMatches> &pairwise_matches,
const std::vector<CameraPose> &camera1_ext,
const std::vector<CameraPose> &camera2_ext, const LossFunction &l,
const ResidualWeightVectors &w = ResidualWeightVectors())
: matches(pairwise_matches), rig1_poses(camera1_ext), rig2_poses(camera2_ext), loss_fn(l), weights(w) {}
double residual(const CameraPose &pose) const {
double cost = 0.0;
for (size_t match_k = 0; match_k < matches.size(); ++match_k) {
const PairwiseMatches &m = matches[match_k];
Eigen::Vector4d q1 = rig1_poses[m.cam_id1].q;
Eigen::Vector3d t1 = rig1_poses[m.cam_id1].t;
Eigen::Vector4d q2 = rig2_poses[m.cam_id2].q;
Eigen::Vector3d t2 = rig2_poses[m.cam_id2].t;
CameraPose relpose;
relpose.q = quat_multiply(q2, quat_multiply(pose.q, quat_conj(q1)));
relpose.t = t2 + quat_rotate(q2, pose.t) - relpose.rotate(t1);
RelativePoseJacobianAccumulator<LossFunction, typename ResidualWeightVectors::value_type> accum(
m.x1, m.x2, loss_fn, weights[match_k]);
cost += accum.residual(relpose);
}
return cost;
}
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
Eigen::Matrix3d R = pose.R();
size_t num_residuals = 0;
for (size_t match_k = 0; match_k < matches.size(); ++match_k) {
const PairwiseMatches &m = matches[match_k];
// Cameras are
// [R1 t1]
// [R2 t2] * [R t; 0 1] = [R2*R t2+R2*t]
// Relative pose is
// [R2*R*R1' t2+R2*t-R2*R*R1'*t1]
// Essential matrix is
// [t2]_x*R2*R*R1' + [R2*t]_x*R2*R*R1' - R2*R*R1'*[t1]_x
Eigen::Vector4d q1 = rig1_poses[m.cam_id1].q;
Eigen::Matrix3d R1 = quat_to_rotmat(q1);
Eigen::Vector3d t1 = rig1_poses[m.cam_id1].t;
Eigen::Vector4d q2 = rig2_poses[m.cam_id2].q;
Eigen::Matrix3d R2 = quat_to_rotmat(q2);
Eigen::Vector3d t2 = rig2_poses[m.cam_id2].t;
CameraPose relpose;
relpose.q = quat_multiply(q2, quat_multiply(pose.q, quat_conj(q1)));
relpose.t = t2 + R2 * pose.t - relpose.rotate(t1);
Eigen::Matrix3d E;
essential_from_motion(relpose, &E);
Eigen::Matrix3d R2R = R2 * R;
Eigen::Vector3d Rt = R.transpose() * pose.t;
// The messy expressions below compute
// dRdw = [vec(S1) vec(S2) vec(S3)];
// dR = (kron(R1,skew(t2)*R2R+ R2*skew(t)*R) + kron(skew(t1)*R1,R2*R)) * dRdw
// dt = [vec(R2*R*S1*R1.') vec(R2*R*S2*R1.') vec(R2*R*S3*R1.')]
// TODO: Replace with something nice
Eigen::Matrix<double, 9, 3> dR;
Eigen::Matrix<double, 9, 3> dt;
dR(0, 0) = R2R(0, 1) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R2R(0, 2) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) +
R1(0, 1) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(0, 2) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1));
dR(0, 1) = R2R(0, 2) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R2R(0, 0) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R1(0, 0) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(0, 2) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(0, 2) = R2R(0, 0) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) -
R2R(0, 1) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R1(0, 0) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1)) -
R1(0, 1) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(1, 0) = R2R(1, 1) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R2R(1, 2) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) +
R1(0, 1) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(0, 2) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0));
dR(1, 1) = R2R(1, 2) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R2R(1, 0) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R1(0, 0) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(0, 2) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(1, 2) = R2R(1, 0) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) -
R2R(1, 1) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R1(0, 0) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0)) -
R1(0, 1) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(2, 0) = R2R(2, 1) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R2R(2, 2) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) +
R1(0, 1) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(0, 2) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0));
dR(2, 1) = R2R(2, 2) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R2R(2, 0) * (R1(1, 2) * t1(2) - R1(2, 2) * t1(1)) -
R1(0, 0) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(0, 2) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dR(2, 2) = R2R(2, 0) * (R1(1, 1) * t1(2) - R1(2, 1) * t1(1)) -
R2R(2, 1) * (R1(1, 0) * t1(2) - R1(2, 0) * t1(1)) -
R1(0, 0) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0)) -
R1(0, 1) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dR(3, 0) = R2R(0, 2) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R2R(0, 1) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) +
R1(1, 1) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(1, 2) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1));
dR(3, 1) = R2R(0, 0) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) -
R2R(0, 2) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R1(1, 0) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(1, 2) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(3, 2) = R2R(0, 1) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R2R(0, 0) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R1(1, 0) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1)) -
R1(1, 1) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(4, 0) = R2R(1, 2) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R2R(1, 1) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) +
R1(1, 1) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(1, 2) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0));
dR(4, 1) = R2R(1, 0) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) -
R2R(1, 2) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R1(1, 0) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(1, 2) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(4, 2) = R2R(1, 1) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R2R(1, 0) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R1(1, 0) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0)) -
R1(1, 1) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(5, 0) = R2R(2, 2) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R2R(2, 1) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) +
R1(1, 1) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(1, 2) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0));
dR(5, 1) = R2R(2, 0) * (R1(0, 2) * t1(2) - R1(2, 2) * t1(0)) -
R2R(2, 2) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R1(1, 0) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(1, 2) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dR(5, 2) = R2R(2, 1) * (R1(0, 0) * t1(2) - R1(2, 0) * t1(0)) -
R2R(2, 0) * (R1(0, 1) * t1(2) - R1(2, 1) * t1(0)) -
R1(1, 0) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0)) -
R1(1, 1) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dR(6, 0) = R2R(0, 1) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R2R(0, 2) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) +
R1(2, 1) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(2, 2) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1));
dR(6, 1) = R2R(0, 2) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R2R(0, 0) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R1(2, 0) * (R2R(0, 0) * Rt(1) - R2R(0, 1) * Rt(0) - R2R(1, 2) * t2(2) + R2R(2, 2) * t2(1)) +
R1(2, 2) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(6, 2) = R2R(0, 0) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) -
R2R(0, 1) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R1(2, 0) * (R2R(0, 0) * Rt(2) - R2R(0, 2) * Rt(0) + R2R(1, 1) * t2(2) - R2R(2, 1) * t2(1)) -
R1(2, 1) * (R2R(0, 1) * Rt(2) - R2R(0, 2) * Rt(1) - R2R(1, 0) * t2(2) + R2R(2, 0) * t2(1));
dR(7, 0) = R2R(1, 1) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R2R(1, 2) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) +
R1(2, 1) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(2, 2) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0));
dR(7, 1) = R2R(1, 2) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R2R(1, 0) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R1(2, 0) * (R2R(1, 0) * Rt(1) - R2R(1, 1) * Rt(0) + R2R(0, 2) * t2(2) - R2R(2, 2) * t2(0)) +
R1(2, 2) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(7, 2) = R2R(1, 0) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) -
R2R(1, 1) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R1(2, 0) * (R2R(1, 0) * Rt(2) - R2R(1, 2) * Rt(0) - R2R(0, 1) * t2(2) + R2R(2, 1) * t2(0)) -
R1(2, 1) * (R2R(1, 1) * Rt(2) - R2R(1, 2) * Rt(1) + R2R(0, 0) * t2(2) - R2R(2, 0) * t2(0));
dR(8, 0) = R2R(2, 1) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R2R(2, 2) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) +
R1(2, 1) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(2, 2) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0));
dR(8, 1) = R2R(2, 2) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R2R(2, 0) * (R1(0, 2) * t1(1) - R1(1, 2) * t1(0)) -
R1(2, 0) * (R2R(2, 0) * Rt(1) - R2R(2, 1) * Rt(0) - R2R(0, 2) * t2(1) + R2R(1, 2) * t2(0)) +
R1(2, 2) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dR(8, 2) = R2R(2, 0) * (R1(0, 1) * t1(1) - R1(1, 1) * t1(0)) -
R2R(2, 1) * (R1(0, 0) * t1(1) - R1(1, 0) * t1(0)) -
R1(2, 0) * (R2R(2, 0) * Rt(2) - R2R(2, 2) * Rt(0) + R2R(0, 1) * t2(1) - R2R(1, 1) * t2(0)) -
R1(2, 1) * (R2R(2, 1) * Rt(2) - R2R(2, 2) * Rt(1) - R2R(0, 0) * t2(1) + R2R(1, 0) * t2(0));
dt(0, 0) = R2R(0, 2) * R1(0, 1) - R2R(0, 1) * R1(0, 2);
dt(0, 1) = R2R(0, 0) * R1(0, 2) - R2R(0, 2) * R1(0, 0);
dt(0, 2) = R2R(0, 1) * R1(0, 0) - R2R(0, 0) * R1(0, 1);
dt(1, 0) = R2R(1, 2) * R1(0, 1) - R2R(1, 1) * R1(0, 2);
dt(1, 1) = R2R(1, 0) * R1(0, 2) - R2R(1, 2) * R1(0, 0);
dt(1, 2) = R2R(1, 1) * R1(0, 0) - R2R(1, 0) * R1(0, 1);
dt(2, 0) = R2R(2, 2) * R1(0, 1) - R2R(2, 1) * R1(0, 2);
dt(2, 1) = R2R(2, 0) * R1(0, 2) - R2R(2, 2) * R1(0, 0);
dt(2, 2) = R2R(2, 1) * R1(0, 0) - R2R(2, 0) * R1(0, 1);
dt(3, 0) = R2R(0, 2) * R1(1, 1) - R2R(0, 1) * R1(1, 2);
dt(3, 1) = R2R(0, 0) * R1(1, 2) - R2R(0, 2) * R1(1, 0);
dt(3, 2) = R2R(0, 1) * R1(1, 0) - R2R(0, 0) * R1(1, 1);
dt(4, 0) = R2R(1, 2) * R1(1, 1) - R2R(1, 1) * R1(1, 2);
dt(4, 1) = R2R(1, 0) * R1(1, 2) - R2R(1, 2) * R1(1, 0);
dt(4, 2) = R2R(1, 1) * R1(1, 0) - R2R(1, 0) * R1(1, 1);
dt(5, 0) = R2R(2, 2) * R1(1, 1) - R2R(2, 1) * R1(1, 2);
dt(5, 1) = R2R(2, 0) * R1(1, 2) - R2R(2, 2) * R1(1, 0);
dt(5, 2) = R2R(2, 1) * R1(1, 0) - R2R(2, 0) * R1(1, 1);
dt(6, 0) = R2R(0, 2) * R1(2, 1) - R2R(0, 1) * R1(2, 2);
dt(6, 1) = R2R(0, 0) * R1(2, 2) - R2R(0, 2) * R1(2, 0);
dt(6, 2) = R2R(0, 1) * R1(2, 0) - R2R(0, 0) * R1(2, 1);
dt(7, 0) = R2R(1, 2) * R1(2, 1) - R2R(1, 1) * R1(2, 2);
dt(7, 1) = R2R(1, 0) * R1(2, 2) - R2R(1, 2) * R1(2, 0);
dt(7, 2) = R2R(1, 1) * R1(2, 0) - R2R(1, 0) * R1(2, 1);
dt(8, 0) = R2R(2, 2) * R1(2, 1) - R2R(2, 1) * R1(2, 2);
dt(8, 1) = R2R(2, 0) * R1(2, 2) - R2R(2, 2) * R1(2, 0);
dt(8, 2) = R2R(2, 1) * R1(2, 0) - R2R(2, 0) * R1(2, 1);
for (size_t k = 0; k < m.x1.size(); ++k) {
double C = m.x2[k].homogeneous().dot(E * m.x1[k].homogeneous());
// J_C is the Jacobian of the epipolar constraint w.r.t. the image points
Eigen::Vector4d J_C;
J_C << E.block<3, 2>(0, 0).transpose() * m.x2[k].homogeneous(),
E.block<2, 3>(0, 0) * m.x1[k].homogeneous();
const double nJ_C = J_C.norm();
const double inv_nJ_C = 1.0 / nJ_C;
const double r = C * inv_nJ_C;
// Compute weight from robust loss function (used in the IRLS)
const double weight = weights[match_k][k] * loss_fn.weight(r * r);
if (weight == 0.0) {
continue;
}
num_residuals++;
// Compute Jacobian of Sampson error w.r.t the fundamental/essential matrix (3x3)
Eigen::Matrix<double, 1, 9> dF;
dF << m.x1[k](0) * m.x2[k](0), m.x1[k](0) * m.x2[k](1), m.x1[k](0), m.x1[k](1) * m.x2[k](0),
m.x1[k](1) * m.x2[k](1), m.x1[k](1), m.x2[k](0), m.x2[k](1), 1.0;
const double s = C * inv_nJ_C * inv_nJ_C;
dF(0) -= s * (J_C(2) * m.x1[k](0) + J_C(0) * m.x2[k](0));
dF(1) -= s * (J_C(3) * m.x1[k](0) + J_C(0) * m.x2[k](1));
dF(2) -= s * (J_C(0));
dF(3) -= s * (J_C(2) * m.x1[k](1) + J_C(1) * m.x2[k](0));
dF(4) -= s * (J_C(3) * m.x1[k](1) + J_C(1) * m.x2[k](1));
dF(5) -= s * (J_C(1));
dF(6) -= s * (J_C(2));
dF(7) -= s * (J_C(3));
dF *= inv_nJ_C;
// and then w.r.t. the pose parameters
Eigen::Matrix<double, 1, 6> J;
J.block<1, 3>(0, 0) = dF * dR;
J.block<1, 3>(0, 3) = dF * dt;
// Accumulate into JtJ and Jtr
Jtr += weight * C * inv_nJ_C * J.transpose();
for (size_t i = 0; i < 6; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weight * (J(i) * J(j));
}
}
}
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
const std::vector<PairwiseMatches> &matches;
const std::vector<CameraPose> &rig1_poses;
const std::vector<CameraPose> &rig2_poses;
const LossFunction &loss_fn;
const ResidualWeightVectors &weights;
};
template <typename LossFunction, typename AbsResidualsVector = UniformWeightVector,
typename RelResidualsVectors = UniformWeightVectors>
class HybridPoseJacobianAccumulator {
public:
HybridPoseJacobianAccumulator(const std::vector<Point2D> &points2D, const std::vector<Point3D> &points3D,
const std::vector<PairwiseMatches> &pairwise_matches,
const std::vector<CameraPose> &map_ext, const LossFunction &l,
const LossFunction &l_epi,
const AbsResidualsVector &weights_abs = AbsResidualsVector(),
const RelResidualsVectors &weights_rel = RelResidualsVectors())
: abs_pose_accum(points2D, points3D, trivial_camera, l, weights_abs),
gen_rel_accum(pairwise_matches, map_ext, trivial_rig, l_epi, weights_rel) {
trivial_camera.model_id = NullCameraModel::model_id;
trivial_rig.emplace_back();
}
double residual(const CameraPose &pose) const {
return abs_pose_accum.residual(pose) + gen_rel_accum.residual(pose);
}
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 6, 6> &JtJ,
Eigen::Matrix<double, 6, 1> &Jtr) const {
return abs_pose_accum.accumulate(pose, JtJ, Jtr) + gen_rel_accum.accumulate(pose, JtJ, Jtr);
}
CameraPose step(Eigen::Matrix<double, 6, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
pose_new.q = quat_step_post(pose.q, dp.block<3, 1>(0, 0));
pose_new.t = pose.t + pose.rotate(dp.block<3, 1>(3, 0));
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 6;
private:
Camera trivial_camera;
std::vector<CameraPose> trivial_rig;
CameraJacobianAccumulator<NullCameraModel, LossFunction, AbsResidualsVector> abs_pose_accum;
GeneralizedRelativePoseJacobianAccumulator<LossFunction, RelResidualsVectors> gen_rel_accum;
};
// This is the SVD factorization proposed by Bartoli and Sturm in
// Non-Linear Estimation of the Fundamental Matrix With Minimal Parameters, PAMI 2004
// Though we do different updates (lie vs the euler angles used in the original paper)
struct FactorizedFundamentalMatrix {
FactorizedFundamentalMatrix() {}
FactorizedFundamentalMatrix(const Eigen::Matrix3d &F) {
Eigen::JacobiSVD<Eigen::Matrix3d> svd(F, Eigen::ComputeFullV | Eigen::ComputeFullU);
Eigen::Matrix3d U = svd.matrixU();
Eigen::Matrix3d V = svd.matrixV();
if (U.determinant() < 0) {
U = -U;
}
if (V.determinant() < 0) {
V = -V;
}
qU = rotmat_to_quat(U);
qV = rotmat_to_quat(V);
Eigen::Vector3d s = svd.singularValues();
sigma = s(1) / s(0);
}
Eigen::Matrix3d F() const {
Eigen::Matrix3d U = quat_to_rotmat(qU);
Eigen::Matrix3d V = quat_to_rotmat(qV);
return U.col(0) * V.col(0).transpose() + sigma * U.col(1) * V.col(1).transpose();
}
Eigen::Vector4d qU, qV;
double sigma;
};
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class FundamentalJacobianAccumulator {
public:
FundamentalJacobianAccumulator(const std::vector<Point2D> &points2D_1, const std::vector<Point2D> &points2D_2,
const LossFunction &l, const ResidualWeightVector &w = ResidualWeightVector())
: x1(points2D_1), x2(points2D_2), loss_fn(l), weights(w) {}
double residual(const FactorizedFundamentalMatrix &FF) const {
Eigen::Matrix3d F = FF.F();
double cost = 0.0;
for (size_t k = 0; k < x1.size(); ++k) {
double C = x2[k].homogeneous().dot(F * x1[k].homogeneous());
double nJc_sq = (F.block<2, 3>(0, 0) * x1[k].homogeneous()).squaredNorm() +
(F.block<3, 2>(0, 0).transpose() * x2[k].homogeneous()).squaredNorm();
double r2 = (C * C) / nJc_sq;
cost += weights[k] * loss_fn.loss(r2);
}
return cost;
}
size_t accumulate(const FactorizedFundamentalMatrix &FF, Eigen::Matrix<double, 7, 7> &JtJ,
Eigen::Matrix<double, 7, 1> &Jtr) const {
const Eigen::Matrix3d F = FF.F();
// Matrices contain the jacobians of F w.r.t. the factorized fundamental matrix (U,V,sigma)
const Eigen::Matrix3d U = quat_to_rotmat(FF.qU);
const Eigen::Matrix3d V = quat_to_rotmat(FF.qV);
const Eigen::Matrix3d d_sigma = U.col(1) * V.col(1).transpose();
Eigen::Matrix<double, 9, 7> dF_dparams;
dF_dparams << 0, F(2, 0), -F(1, 0), 0, F(0, 2), -F(0, 1), d_sigma(0, 0), -F(2, 0), 0, F(0, 0), 0, F(1, 2),
-F(1, 1), d_sigma(1, 0), F(1, 0), -F(0, 0), 0, 0, F(2, 2), -F(2, 1), d_sigma(2, 0), 0, F(2, 1), -F(1, 1),
-F(0, 2), 0, F(0, 0), d_sigma(0, 1), -F(2, 1), 0, F(0, 1), -F(1, 2), 0, F(1, 0), d_sigma(1, 1), F(1, 1),
-F(0, 1), 0, -F(2, 2), 0, F(2, 0), d_sigma(2, 1), 0, F(2, 2), -F(1, 2), F(0, 1), -F(0, 0), 0, d_sigma(0, 2),
-F(2, 2), 0, F(0, 2), F(1, 1), -F(1, 0), 0, d_sigma(1, 2), F(1, 2), -F(0, 2), 0, F(2, 1), -F(2, 0), 0,
d_sigma(2, 2);
size_t num_residuals = 0;
for (size_t k = 0; k < x1.size(); ++k) {
const double C = x2[k].homogeneous().dot(F * x1[k].homogeneous());
// J_C is the Jacobian of the epipolar constraint w.r.t. the image points
Eigen::Vector4d J_C;
J_C << F.block<3, 2>(0, 0).transpose() * x2[k].homogeneous(), F.block<2, 3>(0, 0) * x1[k].homogeneous();
const double nJ_C = J_C.norm();
const double inv_nJ_C = 1.0 / nJ_C;
const double r = C * inv_nJ_C;
// Compute weight from robust loss function (used in the IRLS)
const double weight = weights[k] * loss_fn.weight(r * r);
if (weight == 0.0) {
continue;
}
num_residuals++;
// Compute Jacobian of Sampson error w.r.t the fundamental/essential matrix (3x3)
Eigen::Matrix<double, 1, 9> dF;
dF << x1[k](0) * x2[k](0), x1[k](0) * x2[k](1), x1[k](0), x1[k](1) * x2[k](0), x1[k](1) * x2[k](1),
x1[k](1), x2[k](0), x2[k](1), 1.0;
const double s = C * inv_nJ_C * inv_nJ_C;
dF(0) -= s * (J_C(2) * x1[k](0) + J_C(0) * x2[k](0));
dF(1) -= s * (J_C(3) * x1[k](0) + J_C(0) * x2[k](1));
dF(2) -= s * (J_C(0));
dF(3) -= s * (J_C(2) * x1[k](1) + J_C(1) * x2[k](0));
dF(4) -= s * (J_C(3) * x1[k](1) + J_C(1) * x2[k](1));
dF(5) -= s * (J_C(1));
dF(6) -= s * (J_C(2));
dF(7) -= s * (J_C(3));
dF *= inv_nJ_C;
// and then w.r.t. the pose parameters (rotation + tangent basis for translation)
Eigen::Matrix<double, 1, 7> J = dF * dF_dparams;
// Accumulate into JtJ and Jtr
Jtr += weight * C * inv_nJ_C * J.transpose();
for (size_t i = 0; i < 7; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weight * (J(i) * J(j));
}
}
}
return num_residuals;
}
FactorizedFundamentalMatrix step(Eigen::Matrix<double, 7, 1> dp, const FactorizedFundamentalMatrix &F) const {
FactorizedFundamentalMatrix F_new;
F_new.qU = quat_step_pre(F.qU, dp.block<3, 1>(0, 0));
F_new.qV = quat_step_pre(F.qV, dp.block<3, 1>(3, 0));
F_new.sigma = F.sigma + dp(6);
return F_new;
}
typedef FactorizedFundamentalMatrix param_t;
static constexpr size_t num_params = 7;
private:
const std::vector<Point2D> &x1;
const std::vector<Point2D> &x2;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
};
// Non-linear refinement of symmetric transfer error |x2 - pi(H*x1)|^2 + |x1 - pi(inv(H)*x2)|^2
// Code is Based on the original single-side transfer error by Viktor Larsson. Implementations of other
// parameterizations (different affine patches, linear least squares, SVD as in Bartoli/Sturm, etc) can be found at
// https://github.com/vlarsson/homopt
// Use adjugate of H to formulate inv(H) since the transfer error is independent of the scale.
// Consider H(2,2) as a constant (not necessary to be 1), we only update the first 8 elements of H.
// Author: Yaqing Ding
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class HomographyJacobianAccumulator {
public:
HomographyJacobianAccumulator(const std::vector<Point2D> &points2D_1, const std::vector<Point2D> &points2D_2,
const LossFunction &l, const ResidualWeightVector &w = ResidualWeightVector())
: x1(points2D_1), x2(points2D_2), loss_fn(l), weights(w) {}
double residual(const Eigen::Matrix3d &H) const {
double cost = 0.0;
const double H0_0 = H(0, 0), H0_1 = H(0, 1), H0_2 = H(0, 2);
const double H1_0 = H(1, 0), H1_1 = H(1, 1), H1_2 = H(1, 2);
const double H2_0 = H(2, 0), H2_1 = H(2, 1), H2_2 = H(2, 2);
const Eigen::Matrix3d G = adjugate(H);
const double G0_0 = G(0, 0), G0_1 = G(0, 1), G0_2 = G(0, 2);
const double G1_0 = G(1, 0), G1_1 = G(1, 1), G1_2 = G(1, 2);
const double G2_0 = G(2, 0), G2_1 = G(2, 1), G2_2 = G(2, 2);
for (size_t k = 0; k < x1.size(); ++k) {
// Forward error: |x2 - pi(H*x1)|^2
const double x1_0 = x1[k](0), x1_1 = x1[k](1);
const double x2_0 = x2[k](0), x2_1 = x2[k](1);
const double Hx1_0 = H0_0 * x1_0 + H0_1 * x1_1 + H0_2;
const double Hx1_1 = H1_0 * x1_0 + H1_1 * x1_1 + H1_2;
const double inv_Hx1_2 = 1.0 / (H2_0 * x1_0 + H2_1 * x1_1 + H2_2);
const double r0 = Hx1_0 * inv_Hx1_2 - x2_0;
const double r1 = Hx1_1 * inv_Hx1_2 - x2_1;
const double r2 = r0 * r0 + r1 * r1;
// Backward error: |x1 - pi(G*x2)|^2
const double Gx2_0 = G0_0 * x2_0 + G0_1 * x2_1 + G0_2;
const double Gx2_1 = G1_0 * x2_0 + G1_1 * x2_1 + G1_2;
const double inv_Gx2_2 = 1.0 / (G2_0 * x2_0 + G2_1 * x2_1 + G2_2);
const double s0 = Gx2_0 * inv_Gx2_2 - x1_0;
const double s1 = Gx2_1 * inv_Gx2_2 - x1_1;
const double s2 = s0 * s0 + s1 * s1;
cost += weights[k] * (loss_fn.loss(r2) + loss_fn.loss(s2));
}
return cost;
}
size_t accumulate(const Eigen::Matrix3d &H, Eigen::Matrix<double, 8, 8> &JtJ, Eigen::Matrix<double, 8, 1> &Jtr) {
Eigen::Matrix<double, 2, 8> dH;
const double H0_0 = H(0, 0), H0_1 = H(0, 1), H0_2 = H(0, 2);
const double H1_0 = H(1, 0), H1_1 = H(1, 1), H1_2 = H(1, 2);
const double H2_0 = H(2, 0), H2_1 = H(2, 1), H2_2 = H(2, 2);
const Eigen::Matrix3d G = adjugate(H);
const double G0_0 = G(0, 0), G0_1 = G(0, 1), G0_2 = G(0, 2);
const double G1_0 = G(1, 0), G1_1 = G(1, 1), G1_2 = G(1, 2);
const double G2_0 = G(2, 0), G2_1 = G(2, 1), G2_2 = G(2, 2);
size_t num_residuals = 0;
for (size_t k = 0; k < x1.size(); ++k) {
const double x1_0 = x1[k](0), x1_1 = x1[k](1);
const double x2_0 = x2[k](0), x2_1 = x2[k](1);
// Forward error
const double Hx1_0 = H0_0 * x1_0 + H0_1 * x1_1 + H0_2;
const double Hx1_1 = H1_0 * x1_0 + H1_1 * x1_1 + H1_2;
const double inv_Hx1_2 = 1.0 / (H2_0 * x1_0 + H2_1 * x1_1 + H2_2);
const double z0 = Hx1_0 * inv_Hx1_2;
const double z1 = Hx1_1 * inv_Hx1_2;
const double r0 = z0 - x2_0;
const double r1 = z1 - x2_1;
const double r2 = r0 * r0 + r1 * r1;
// Compute weight from robust loss function (used in the IRLS)
const double weight = weights[k] * loss_fn.weight(r2);
if (weight != 0.0) {
dH << x1_0, 0.0, -x1_0 * z0, x1_1, 0.0, -x1_1 * z0, 1.0, 0.0, // -z0,
0.0, x1_0, -x1_0 * z1, 0.0, x1_1, -x1_1 * z1, 0.0, 1.0; // -z1,
dH = dH * inv_Hx1_2;
// accumulate into JtJ and Jtr
Jtr += dH.transpose() * (weight * Eigen::Vector2d(r0, r1));
for (size_t i = 0; i < 8; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weight * dH.col(i).dot(dH.col(j));
}
}
num_residuals++;
}
const double Gx2_0 = G0_0 * x2_0 + G0_1 * x2_1 + G0_2;
const double Gx2_1 = G1_0 * x2_0 + G1_1 * x2_1 + G1_2;
const double inv_Gx2_2 = 1.0 / (G2_0 * x2_0 + G2_1 * x2_1 + G2_2);
const double y0 = Gx2_0 * inv_Gx2_2;
const double y1 = Gx2_1 * inv_Gx2_2;
const double s0 = y0 - x1_0;
const double s1 = y1 - x1_1;
const double s2 = s0 * s0 + s1 * s1;
const double y0x2_1 = y0 * x2_1;
const double y0x2_0 = y0 * x2_0;
const double y1x2_1 = y1 * x2_1;
const double y1x2_0 = y1 * x2_0;
// Compute weight from robust loss function (used in the IRLS)
const double weightg = weights[k] * loss_fn.weight(s2);
if (weightg != 0.0) {
Eigen::Matrix<double, 2, 8> dH_backward;
dH_backward << H2_1 * y0x2_1 - H1_1 * y0, H0_1 * y0 - H2_1 * y0x2_0, H1_1 * y0x2_0 - H0_1 * y0x2_1,
H1_2 - H2_2 * x2_1 + H1_0 * y0 - H2_0 * y0x2_1, H2_2 * x2_0 - H0_2 - H0_0 * y0 + H2_0 * y0x2_0,
H0_2 * x2_1 - H1_2 * x2_0 + H0_0 * y0x2_1 - H1_0 * y0x2_0, H2_1 * x2_1 - H1_1, H0_1 - H2_1 * x2_0,
H2_2 * x2_1 - H1_2 - H1_1 * y1 + H2_1 * y1x2_1, H0_2 - H2_2 * x2_0 + H0_1 * y1 - H2_1 * y1x2_0,
H1_2 * x2_0 - H0_2 * x2_1 - H0_1 * y1x2_1 + H1_1 * y1x2_0, H1_0 * y1 - H2_0 * y1x2_1,
H2_0 * y1x2_0 - H0_0 * y1, H0_0 * y1x2_1 - H1_0 * y1x2_0, H1_0 - H2_0 * x2_1, H2_0 * x2_0 - H0_0;
dH_backward = dH_backward * inv_Gx2_2;
// Accumulate backward error
Jtr += dH_backward.transpose() * (weightg * Eigen::Vector2d(s0, s1));
for (size_t i = 0; i < 8; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weightg * dH_backward.col(i).dot(dH_backward.col(j));
}
}
num_residuals++;
}
}
return num_residuals;
}
Eigen::Matrix3d step(Eigen::Matrix<double, 8, 1> dp, const Eigen::Matrix3d &H) const {
Eigen::Matrix3d H_new = H;
Eigen::Map<Eigen::Matrix<double, 8, 1>>(H_new.data()) += dp;
return H_new;
}
typedef Eigen::Matrix3d param_t;
static constexpr size_t num_params = 8;
private:
Eigen::Matrix3d adjugate(const Eigen::Matrix3d &H) const {
Eigen::Matrix3d adj;
adj(0, 0) = H(1, 1) * H(2, 2) - H(1, 2) * H(2, 1);
adj(0, 1) = H(0, 2) * H(2, 1) - H(0, 1) * H(2, 2);
adj(0, 2) = H(0, 1) * H(1, 2) - H(0, 2) * H(1, 1);
adj(1, 0) = H(1, 2) * H(2, 0) - H(1, 0) * H(2, 2);
adj(1, 1) = H(0, 0) * H(2, 2) - H(0, 2) * H(2, 0);
adj(1, 2) = H(0, 2) * H(1, 0) - H(0, 0) * H(1, 2);
adj(2, 0) = H(1, 0) * H(2, 1) - H(1, 1) * H(2, 0);
adj(2, 1) = H(0, 1) * H(2, 0) - H(0, 0) * H(2, 1);
adj(2, 2) = H(0, 0) * H(1, 1) - H(0, 1) * H(1, 0);
return adj;
}
const std::vector<Point2D> &x1, &x2;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
};
template <typename LossFunction, typename ResidualWeightVector = UniformWeightVector>
class Radial1DJacobianAccumulator {
public:
Radial1DJacobianAccumulator(const std::vector<Point2D> &points2D, const std::vector<Point3D> &points3D,
const LossFunction &l, const ResidualWeightVector &w = ResidualWeightVector())
: x(points2D), X(points3D), loss_fn(l), weights(w) {}
double residual(const CameraPose &pose) const {
double cost = 0.0;
Eigen::Matrix3d R = pose.R();
for (size_t k = 0; k < x.size(); ++k) {
Eigen::Vector2d z = (R * X[k] + pose.t).template topRows<2>().normalized();
double alpha = z.dot(x[k]);
// This assumes points will not cross the half-space during optimization
if (alpha < 0)
continue;
double r2 = (alpha * z - x[k]).squaredNorm();
cost += weights[k] * loss_fn.loss(r2);
}
return cost;
}
size_t accumulate(const CameraPose &pose, Eigen::Matrix<double, 5, 5> &JtJ,
Eigen::Matrix<double, 5, 1> &Jtr) const {
Eigen::Matrix3d R = pose.R();
size_t num_residuals = 0;
for (size_t k = 0; k < x.size(); ++k) {
Eigen::Vector3d RX = R * X[k];
const Eigen::Vector2d z = (RX + pose.t).topRows<2>();
const double n_z = z.norm();
const Eigen::Vector2d zh = z / n_z;
const double alpha = zh.dot(x[k]);
// This assumes points will not cross the half-space during optimization
if (alpha < 0)
continue;
// Setup residual
Eigen::Vector2d r = alpha * zh - x[k];
const double r_squared = r.squaredNorm();
const double weight = weights[k] * loss_fn.weight(r_squared);
if (weight == 0.0) {
continue;
}
num_residuals++;
// differentiate residual with respect to z
Eigen::Matrix2d dr_dz = (zh * x[k].transpose() + alpha * Eigen::Matrix2d::Identity()) *
(Eigen::Matrix2d::Identity() - zh * zh.transpose()) / n_z;
Eigen::Matrix<double, 2, 5> dz;
dz << 0.0, RX(2), -RX(1), 1.0, 0.0, -RX(2), 0.0, RX(0), 0.0, 1.0;
Eigen::Matrix<double, 2, 5> J = dr_dz * dz;
// Accumulate into JtJ and Jtr
Jtr += weight * J.transpose() * r;
for (size_t i = 0; i < 5; ++i) {
for (size_t j = 0; j <= i; ++j) {
JtJ(i, j) += weight * (J.col(i).dot(J.col(j)));
}
}
}
return num_residuals;
}
CameraPose step(Eigen::Matrix<double, 5, 1> dp, const CameraPose &pose) const {
CameraPose pose_new;
pose_new.q = quat_step_pre(pose.q, dp.block<3, 1>(0, 0));
pose_new.t(0) = pose.t(0) + dp(3);
pose_new.t(1) = pose.t(1) + dp(4);
return pose_new;
}
typedef CameraPose param_t;
static constexpr size_t num_params = 5;
private:
const std::vector<Point2D> &x;
const std::vector<Point3D> &X;
const LossFunction &loss_fn;
const ResidualWeightVector &weights;
};
} // namespace poselib
#endif
|