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 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
|
static const char *copyright =
" Copyright (c) 2013 Laurent Kneip, ANU. All rights reserved.";
/******************************************************************************
* Author: Laurent Kneip *
* Contact: kneip.laurent@gmail.com *
* License: Copyright (c) 2013 Laurent Kneip, ANU. 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 ANU 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 ANU OR THE 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. *
******************************************************************************/
// Matlab usage:
//
// X = opengv ( method, data1, data2 )
// X = opengv ( method, indices, data1, data2 )
// X = opengv ( method, indices, data1, data2, prior )
//
// where
// method is a string that characterizes the algorithm to use
// data1, data2 are matched points (each one of dimension 3xn or 6xn)
// indices is a vector of indices indicating a subset of the correspondences
// X is a 3xnxm matrix, where n is the second dimensionality of the solution space,
// and m is the number of solutions
// prior is a prior pose in case it is known (a matrix of format [R t])
//
// Note that the indices of inliers can also be returned for Ransac methods
// if adding a second left-hand side parameter upon function call
// (format: [X, inliers] = opengv(...) )
//matlab header
//standard headers
#include <stdlib.h>
#include <stdio.h>
#include <vector>
#include "mex.h"
//include generic headers for opengv stuff
#include <opengv/types.hpp>
//include the matlab-adapters
#include <opengv/absolute_pose/MACentralAbsolute.hpp>
#include <opengv/absolute_pose/MANoncentralAbsolute.hpp>
#include <opengv/relative_pose/MACentralRelative.hpp>
#include <opengv/relative_pose/MANoncentralRelative.hpp>
#include <opengv/point_cloud/MAPointCloud.hpp>
//expose all methods to matlab
#include <opengv/absolute_pose/methods.hpp>
#include <opengv/relative_pose/methods.hpp>
#include <opengv/point_cloud/methods.hpp>
//expose all ransac-facilities to matlab
#include <opengv/sac/Ransac.hpp>
#include <opengv/sac_problems/absolute_pose/AbsolutePoseSacProblem.hpp>
#include <opengv/sac_problems/relative_pose/CentralRelativePoseSacProblem.hpp>
#include <opengv/sac_problems/relative_pose/NoncentralRelativePoseSacProblem.hpp>
#include <opengv/sac_problems/relative_pose/EigensolverSacProblem.hpp>
#include <opengv/sac_problems/relative_pose/RotationOnlySacProblem.hpp>
#include <opengv/sac_problems/point_cloud/PointCloudSacProblem.hpp>
// The different methods that can be used within Matlab
static const char* methods[]=
{
// absolute_pose methods
"p2p", // 3
"p3p_kneip", // 9
"p3p_gao", // 7
"epnp", // 4
"p3p_kneip_ransac", // 16
"p3p_gao_ransac", // 14
"epnp_ransac", // 11
"abs_nonlin_central", // 18
"gp3p", // 4
"gp3p_ransac", // 11
"gpnp", // 4
"abs_nonlin_noncentral", // 21
"upnp", // 4
// relative_pose methods
"twopt", // 5
"twopt_rotationOnly", // 18
"rotationOnly", // 12
"fivept_stewenius", // 16
"fivept_nister", // 13
"fivept_kneip", // 12
"sevenpt", // 7
"eightpt", // 7
"eigensolver", // 11
"rotationOnly_ransac", // 19
"fivept_stewenius_ransac", // 23
"fivept_nister_ransac", // 20
"sevenpt_ransac", // 14
"eightpt_ransac", // 14
"eigensolver_ransac", // 18
"rel_nonlin_central", // 18
"sixpt", // 5
"seventeenpt", // 11
"ge", // 2
"sixpt_ransac", // 12
"seventeenpt_ransac", // 18
"ge_ransac", // 9
"rel_nonlin_noncentral", // 21
// point_cloud methods
"threept_arun", // 12
"threept_arun_ransac" // 19
};
// The length of the method strings (needed for comparison)
static const int methodsLengths[] =
{ 3,9,7,4,16,14,11,18,4,11,4,21,4,5,18,12,16,13,12,
7,7,11,19,23,20,14,14,18,18,5,11,2,12,18,9,21,12,19 };
static const int absCentralFirst = 0;
static const int absCentralLast = 7;
static const int absNoncentralFirst = 8;
static const int absNoncentralLast = 11;
static const int upnpIndex = 12;
static const int relCentralFirst = 13;
static const int relCentralLast = 28;
static const int relNoncentralFirst = 29;
static const int relNoncentralLast = 35;
static const int pointCloudFirst = 36;
static const int pointCloudLast = 37;
// The number of methods (needed for comparison)
static const int numberMethods = pointCloudLast + 1;
enum Method
{
P2P,
P3P_KNEIP,
P3P_GAO,
EPNP,
P3P_KNEIP_RANSAC,
P3P_GAO_RANSAC,
EPNP_RANSAC,
ABS_NONLIN_CENTRAL,
GP3P,
GP3P_RANSAC,
GPNP,
ABS_NONLIN_NONCENTRAL,
UPNP,
TWOPT,
TWOPT_ROTATIONONLY,
ROTATIONONLY,
FIVEPT_STEWENIUS,
FIVEPT_NISTER,
FIVEPT_KNEIP,
SEVENPT,
EIGHTPT,
EIGENSOLVER,
ROTATIONONLY_RANSAC,
FIVEPT_STEWENIUS_RANSAC,
FIVEPT_NISTER_RANSAC,
SEVENPT_RANSAC,
EIGHTPT_RANSAC,
EIGENSOLVER_RANSAC,
REL_NONLIN_CENTRAL,
SIXPT,
SEVENTEENPT,
GE,
SIXPT_RANSAC,
SEVENTEENPT_RANSAC,
GE_RANSAC,
REL_NONLIN_NONCENTRAL,
THREEPT_ARUN,
THREEPT_ARUN_RANSAC
};
// Finds the method based on string comparison
int findCase( const char* input, int inputLength )
{
int n = 0;
while( n < numberMethods )
{
// First check the length of the string, it needs to be same
if( inputLength == methodsLengths[n])
{
// Now check if all the elements are the same
int allSame = 1;
for( int i = 0; i < inputLength; i++ )
{
if( input[i] != methods[n][i] )
{
allSame = 0;
break;
}
}
// Break if method found
if( allSame )
return n;
//Otherwise go on with the next one
}
n++;
}
// Return -1 if not found
return -1;
}
// Print all possible cases
void printCases()
{
mexPrintf("The known methods are:");
for( int i = 0; i < numberMethods; i++ )
{
mexPrintf("\n");
mexPrintf(methods[i]);
}
mexPrintf("\n");
}
typedef opengv::sac_problems::absolute_pose::AbsolutePoseSacProblem absRansac;
typedef std::shared_ptr<absRansac> absRansacPtr;
typedef opengv::sac_problems::relative_pose::CentralRelativePoseSacProblem relRansac;
typedef std::shared_ptr<relRansac> relRansacPtr;
typedef opengv::sac_problems::relative_pose::NoncentralRelativePoseSacProblem nrelRansac;
typedef std::shared_ptr<nrelRansac> nrelRansacPtr;
typedef opengv::sac_problems::relative_pose::RotationOnlySacProblem rotRansac;
typedef std::shared_ptr<rotRansac> rotRansacPtr;
typedef opengv::sac_problems::relative_pose::EigensolverSacProblem eigRansac;
typedef std::shared_ptr<eigRansac> eigRansacPtr;
typedef opengv::sac_problems::point_cloud::PointCloudSacProblem ptRansac;
typedef std::shared_ptr<ptRansac> ptRansacPtr;
// The main mex-function
void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] )
{
int numberIterations = 20;
// Check if right number of arguments
if( nrhs < 3 || nrhs > 5 )
{
mexPrintf("opengv: Not an acceptable number of arguments\n");
mexPrintf("Usage: X = opengv( method, data1, data2 )\n");
mexPrintf("Or: X = opengv( method, indices, data1, data2 )\n");
mexPrintf("Or: X = opengv( method, indices, data1, data2, prior )\n");
return;
}
// Get the method
if( mxGetM(prhs[0]) != 1 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Usage: X = opengv( method, data1, data2 )\n");
mexPrintf("Or: X = opengv( method, indices, data1, data2 )\n");
mexPrintf("Or: X = opengv( method, indices, data1, data2, prior )\n");
mexPrintf("Hint: Method must be a string\n");
return;
}
// Now get the string and find the caseNumber
mwSize strlen = (mwSize) mxGetN(prhs[0]) + 1;
char * method = (char *) malloc(strlen);
mxGetString(prhs[0], method, strlen);
int caseNumber = findCase(method, (int) mxGetN(prhs[0]));
// Return if method not found
if( caseNumber < 0 )
{
mexPrintf("opengv: Unknown method\n");
printCases();
return;
}
// Characterize the type of the call
int callCharacter = -1;
const mxArray *data1;
const mxArray *data2;
const mwSize *data1dim;
const mwSize *data2dim;
if( nrhs == 3 ) // X = opengv( method, data1, data2 )
{
// Check the input
data1 = prhs[1];
data2 = prhs[2];
// Check the dimensions of the arguments
int ndimensions1 = mxGetNumberOfDimensions(data1);
int ndimensions2 = mxGetNumberOfDimensions(data2);
data1dim = mxGetDimensions(data1);
data2dim = mxGetDimensions(data2);
// Now check them
if( ndimensions1 != 2 || ndimensions2 != 2 ||
(data1dim[0] != 3 && data1dim[0] != 6) ||
(data2dim[0] != 3 && data2dim[0] != 6) ||
data1dim[1] != data2dim[1] ||
data1dim[1] < 1 || data2dim[1] < 1 )
{
mexPrintf("opengv: Bad input to mex function\n");
mexPrintf("Assuming signature: X = opengv( method, data1, data2 )\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) or (6,n),\n");
mexPrintf("where n is the number of correspondences\n");
return;
}
callCharacter = 0;
}
if( nrhs == 4 )
{
// X = opengv( method, indices, data1, data2 )
// Check the input
data1 = prhs[2];
data2 = prhs[3];
// Check the dimensions of the arguments
int ndimensions1 = mxGetNumberOfDimensions(data1);
int ndimensions2 = mxGetNumberOfDimensions(data2);
int ndimensions3 = mxGetNumberOfDimensions(prhs[1]);
data1dim = mxGetDimensions(data1);
data2dim = mxGetDimensions(data2);
const mwSize *indicesDim = mxGetDimensions(prhs[1]);
// Now check them
if( ndimensions1 != 2 || ndimensions2 != 2 || ndimensions3 != 2 ||
(data1dim[0] != 3 && data1dim[0] != 6) ||
(data2dim[0] != 3 && data2dim[0] != 6) ||
indicesDim[0] != 1 ||
data1dim[1] != data2dim[1] ||
data1dim[1] < 1 || data2dim[1] < 1 ||
data2dim[1] < indicesDim[1] )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming signature: X = opengv( method, indices, data1, ");
mexPrintf("data2 )\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) or (6,n),\n");
mexPrintf("where n is the number of correspondences\n");
mexPrintf("indices must be a 1xm vector, with m smaller or equal than n\n");
return;
}
callCharacter = 1;
}
if(nrhs == 5)
{
// X = opengv( method, indices, data1, data2, prior )
// Check the input
data1 = prhs[2];
data2 = prhs[3];
// Check the dimensions of the arguments
int ndimensions1 = mxGetNumberOfDimensions(data1);
int ndimensions2 = mxGetNumberOfDimensions(data2);
int ndimensions3 = mxGetNumberOfDimensions(prhs[1]);
int ndimensions4 = mxGetNumberOfDimensions(prhs[4]);
data1dim = mxGetDimensions(data1);
data2dim = mxGetDimensions(data2);
const mwSize *indicesDim = mxGetDimensions(prhs[1]);
const mwSize *priorDim = mxGetDimensions(prhs[4]);
// Now check them
if( ndimensions1 != 2 || ndimensions2 != 2 || ndimensions3 != 2 || ndimensions4 != 2 ||
(data1dim[0] != 3 && data1dim[0] != 6) ||
(data2dim[0] != 3 && data2dim[0] != 6) ||
indicesDim[0] != 1 ||
priorDim[0] != 3 ||
(priorDim[1] != 1 && priorDim[1] != 3 && priorDim[1] != 4) ||
data1dim[1] != data2dim[1] ||
data1dim[1] < 1 || data2dim[1] < 1 ||
data2dim[1] < indicesDim[1] )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming signature: X = opengv( method, indices, data1, ");
mexPrintf("data2, prior )\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) or (6,n),\n");
mexPrintf("where n is the number of correspondences\n");
mexPrintf("indices must be a 1xm vector, with m smaller or equal than n\n");
mexPrintf("prior must be a 3x1, 3x3, or 3x4 matrix\n");
return;
}
callCharacter = 2;
}
//create three pointers to absolute, relative, and point_cloud adapters here
opengv::absolute_pose::AbsoluteAdapterBase* absoluteAdapter;
opengv::relative_pose::RelativeAdapterBase* relativeAdapter;
opengv::point_cloud::PointCloudAdapterBase* pointCloudAdapter;
int translationPrior = 0;
int rotationPrior = 0;
opengv::translation_t translation;
opengv::rotation_t rotation;
//set the prior if needed
if( callCharacter == 2 )
{
const mxArray *prior;
const mwSize *priorDim;
prior = prhs[4];
priorDim = mxGetDimensions(prhs[4]);
if( priorDim[1] == 1 )
{
//set translation
translationPrior = 1;
double * ptr = (double*) mxGetData(prior);
translation[0] = ptr[0];
translation[1] = ptr[1];
translation[2] = ptr[2];
}
if( priorDim[1] == 3 )
{
//set rotation
rotationPrior = 1;
double * ptr = (double*) mxGetData(prior);
rotation(0,0) = ptr[0];
rotation(1,0) = ptr[1];
rotation(2,0) = ptr[2];
rotation(0,1) = ptr[3];
rotation(1,1) = ptr[4];
rotation(2,1) = ptr[5];
rotation(0,2) = ptr[6];
rotation(1,2) = ptr[7];
rotation(2,2) = ptr[8];
}
if( priorDim[1] == 4 )
{
translationPrior = 1;
rotationPrior = 1;
double * ptr = (double*) mxGetData(prior);
rotation(0,0) = ptr[0];
rotation(1,0) = ptr[1];
rotation(2,0) = ptr[2];
rotation(0,1) = ptr[3];
rotation(1,1) = ptr[4];
rotation(2,1) = ptr[5];
rotation(0,2) = ptr[6];
rotation(1,2) = ptr[7];
rotation(2,2) = ptr[8];
translation[0] = ptr[9];
translation[1] = ptr[10];
translation[2] = ptr[11];
}
}
if( caseNumber >= absCentralFirst && caseNumber <= absCentralLast )
{
//central absolute case
if( data1dim[0] != 3 || data2dim[0] != 3 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) for a central ");
mexPrintf("absolute method\n");
return;
}
absoluteAdapter = new opengv::absolute_pose::MACentralAbsolute(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
if( translationPrior == 1 )
absoluteAdapter->sett(translation);
if( rotationPrior == 1 )
absoluteAdapter->setR(rotation);
}
if( caseNumber >= absNoncentralFirst && caseNumber <= absNoncentralLast )
{
//non-central absolute case
if( data1dim[0] != 3 || data2dim[0] != 6 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have sizes (3,n) and (6,n) for ");
mexPrintf("a noncentral absolute method\n");
return;
}
absoluteAdapter = new opengv::absolute_pose::MANoncentralAbsolute(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
if( translationPrior == 1 )
absoluteAdapter->sett(translation);
if( rotationPrior == 1 )
absoluteAdapter->setR(rotation);
}
if( caseNumber == upnpIndex )
{
if( data1dim[0] != 3 || (data2dim[0] != 3 && data2dim[0] != 6) )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have sizes (3,n) and (3,n) or (6,n) for ");
mexPrintf("upnp\n");
return;
}
if( data2dim[0] == 3 )
{
absoluteAdapter = new opengv::absolute_pose::MACentralAbsolute(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
}
else
{
absoluteAdapter = new opengv::absolute_pose::MANoncentralAbsolute(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
}
if( translationPrior == 1 )
absoluteAdapter->sett(translation);
if( rotationPrior == 1 )
absoluteAdapter->setR(rotation);
}
if( caseNumber >= relCentralFirst && caseNumber <= relCentralLast )
{
//central relative case
if( data1dim[0] != 3 || data2dim[0] != 3 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) for a central ");
mexPrintf("relative method\n");
return;
}
relativeAdapter = new opengv::relative_pose::MACentralRelative(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
if( translationPrior == 1 )
relativeAdapter->sett12(translation);
if( rotationPrior == 1 )
relativeAdapter->setR12(rotation);
}
if(caseNumber >= relNoncentralFirst && caseNumber <= relNoncentralLast )
{
//noncentral relative case
if( data1dim[0] != 6 || data2dim[0] != 6 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have size (6,n) for a ");
mexPrintf("noncentral relative method\n");
return;
}
relativeAdapter = new opengv::relative_pose::MANoncentralRelative(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
if( translationPrior == 1 )
relativeAdapter->sett12(translation);
if( rotationPrior == 1 )
relativeAdapter->setR12(rotation);
}
if(caseNumber >= pointCloudFirst && caseNumber <= pointCloudLast )
{
//point-cloud case
if( data1dim[0] != 3 || data2dim[0] != 3 )
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("Inputs data1 and data2 must have size (3,n) for a ");
mexPrintf("point-cloud method\n");
return;
}
pointCloudAdapter = new opengv::point_cloud::MAPointCloud(
(double*) mxGetData(data1),
(double*) mxGetData(data2),
data1dim[1],
data2dim[1] );
if( translationPrior == 1 )
pointCloudAdapter->sett12(translation);
if( rotationPrior == 1 )
pointCloudAdapter->setR12(rotation);
}
//check if a return argument is needed, otherwise we won't start computing
if( nlhs != 1 && nlhs != 2 )
{
if( nlhs > 2 )
mexPrintf("opengv: Returns one or two variables!\n");
return;
}
//create the indices array (todo: check if there is a smarter way for doing this)
std::vector<int> indices;
int useIndices = 0;
if( callCharacter > 0 )
{
useIndices = 1;
const mwSize *indicesDim = mxGetDimensions(prhs[1]);
int numberOfIndices = indicesDim[1];
indices.reserve(numberOfIndices);
double * mxIndices = (double*) mxGetData(prhs[1]);
for( int i = 0; i < numberOfIndices; i++ )
indices.push_back(floor(mxIndices[i]+0.01)-1);
}
Method methodEnum = static_cast<Method>(caseNumber);
if( caseNumber != (int) methodEnum )
{
mexPrintf("opengv: This method is not yet implemented!\n");
return;
}
// Finally, call the respective algorithm
switch (methodEnum)
{
case P2P:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::translation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::p2p(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::p2p(*absoluteAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 1;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 3*sizeof(double));
break;
}
case P3P_KNEIP:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformations_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::p3p_kneip(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::p3p_kneip(*absoluteAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 4;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*12*sizeof(double);
memcpy(targetAddress, temp[i].data(), 12*sizeof(double));
}
break;
}
case P3P_GAO:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformations_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::p3p_gao(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::p3p_gao(*absoluteAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 4;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*12*sizeof(double);
memcpy(targetAddress, temp[i].data(), 12*sizeof(double));
}
break;
}
case EPNP:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::epnp(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::epnp(*absoluteAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case P3P_KNEIP_RANSAC:
{
absRansacPtr problem;
if(useIndices)
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::KNEIP, indices ) );
else
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::KNEIP ) );
opengv::sac::Ransac<absRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 1.0 - cos(atan(sqrt(2.0)*0.5/800.0));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case P3P_GAO_RANSAC:
{
absRansacPtr problem;
if(useIndices)
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::GAO, indices ) );
else
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::GAO ) );
opengv::sac::Ransac<absRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 1.0 - cos(atan(sqrt(2.0)*0.5/800.0));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case EPNP_RANSAC:
{
absRansacPtr problem;
if(useIndices)
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::EPNP, indices ) );
else
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::EPNP ) );
opengv::sac::Ransac<absRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 1.0 - cos(atan(sqrt(2.0)*0.5/800.0));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case ABS_NONLIN_CENTRAL:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
opengv::translation_t starting_position = absoluteAdapter->gett();
opengv::rotation_t starting_rotation = absoluteAdapter->getR();
for( int i = 0; i < numberIterations; i++ )
{
//reset the starting value
absoluteAdapter->sett(starting_position);
absoluteAdapter->setR(starting_rotation);
if(useIndices)
temp = opengv::absolute_pose::optimize_nonlinear(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::optimize_nonlinear(*absoluteAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case GP3P:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformations_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::gp3p(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::gp3p(*absoluteAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 4;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*12*sizeof(double);
memcpy(targetAddress, temp[i].data(), 12*sizeof(double));
}
break;
}
case GP3P_RANSAC:
{
absRansacPtr problem;
if(useIndices)
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::GP3P, indices ) );
else
problem = absRansacPtr( new absRansac( *absoluteAdapter, absRansac::GP3P ) );
opengv::sac::Ransac<absRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 1.0 - cos(atan(sqrt(2.0)*0.5/800.0));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case GPNP:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::gpnp(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::gpnp(*absoluteAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case ABS_NONLIN_NONCENTRAL:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
opengv::translation_t starting_position = absoluteAdapter->gett();
opengv::rotation_t starting_rotation = absoluteAdapter->getR();
for( int i = 0; i < numberIterations; i++ )
{
//reset the starting value
absoluteAdapter->sett(starting_position);
absoluteAdapter->setR(starting_rotation);
if(useIndices)
temp = opengv::absolute_pose::optimize_nonlinear(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::optimize_nonlinear(*absoluteAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case UPNP:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformations_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::absolute_pose::upnp(*absoluteAdapter,indices);
else
temp = opengv::absolute_pose::upnp(*absoluteAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 4;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*12*sizeof(double);
memcpy(targetAddress, temp[i].data(), 12*sizeof(double));
}
break;
}
case TWOPT:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::translation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::twopt(*relativeAdapter,false,indices);
else
temp = opengv::relative_pose::twopt(*relativeAdapter,false);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 1;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 3*sizeof(double));
break;
}
case TWOPT_ROTATIONONLY:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::twopt_rotationOnly(*relativeAdapter,indices);
else
temp = opengv::relative_pose::twopt_rotationOnly(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 9*sizeof(double));
break;
}
case ROTATIONONLY:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::rotationOnly(*relativeAdapter,indices);
else
temp = opengv::relative_pose::rotationOnly(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 9*sizeof(double));
break;
}
case FIVEPT_STEWENIUS:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::complexEssentials_t temp2;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp2 = opengv::relative_pose::fivept_stewenius(*relativeAdapter,indices);
else
temp2 = opengv::relative_pose::fivept_stewenius(*relativeAdapter);
}
opengv::essentials_t temp;
for(size_t i = 0; i < temp2.size(); i++)
{
opengv::essential_t essentialMatrix;
for(size_t r = 0; r < 3; r++)
{
for(size_t c = 0; c < 3; c++)
essentialMatrix(r,c) = temp2[i](r,c).real();
}
temp.push_back(essentialMatrix);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 3;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*9*sizeof(double);
memcpy(targetAddress, temp[i].data(), 9*sizeof(double));
}
break;
}
case FIVEPT_NISTER:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::essentials_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::fivept_nister(*relativeAdapter,indices);
else
temp = opengv::relative_pose::fivept_nister(*relativeAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 3;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*9*sizeof(double);
memcpy(targetAddress, temp[i].data(), 9*sizeof(double));
}
break;
}
case FIVEPT_KNEIP:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotations_t temp;
if(useIndices)
{
for( int i = 0; i < numberIterations; i++ )
temp = opengv::relative_pose::fivept_kneip(*relativeAdapter,indices);
}
else
{
mexPrintf("opengv: Bad input to mex function opengv\n");
mexPrintf("Assuming method: ");
mexPrintf(methods[caseNumber]);
mexPrintf("\n");
mexPrintf("You must provide an indices vector\n");
break;
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 3;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*9*sizeof(double);
memcpy(targetAddress, temp[i].data(), 9*sizeof(double));
}
break;
}
case SEVENPT:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::essentials_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::sevenpt(*relativeAdapter,indices);
else
temp = opengv::relative_pose::sevenpt(*relativeAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 3;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*9*sizeof(double);
memcpy(targetAddress, temp[i].data(), 9*sizeof(double));
}
break;
}
case EIGHTPT:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::essential_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::eightpt(*relativeAdapter,indices);
else
temp = opengv::relative_pose::eightpt(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 9*sizeof(double));
break;
}
case EIGENSOLVER:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotation_t temp;
opengv::rotation_t starting_rotation = relativeAdapter->getR12();
for( int i = 0; i < numberIterations; i++ )
{
relativeAdapter->setR12(starting_rotation);
if(useIndices)
temp = opengv::relative_pose::eigensolver(*relativeAdapter,indices);
else
temp = opengv::relative_pose::eigensolver(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 9*sizeof(double));
break;
}
case ROTATIONONLY_RANSAC:
{
rotRansacPtr problem;
if(useIndices)
problem = rotRansacPtr( new rotRansac( *relativeAdapter, indices ) );
else
problem = rotRansacPtr( new rotRansac( *relativeAdapter ) );
opengv::sac::Ransac<rotRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 9*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case FIVEPT_STEWENIUS_RANSAC:
{
relRansacPtr problem;
if(useIndices)
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::STEWENIUS, indices ) );
else
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::STEWENIUS ) );
opengv::sac::Ransac<relRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
opengv::transformation_t optimizedModel;
problem->optimizeModelCoefficients(ransac.inliers_,ransac.model_coefficients_,optimizedModel);
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
//memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
memcpy(mxGetData(plhs[0]), optimizedModel.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case FIVEPT_NISTER_RANSAC:
{
relRansacPtr problem;
if(useIndices)
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::NISTER, indices ) );
else
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::NISTER ) );
opengv::sac::Ransac<relRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case SEVENPT_RANSAC:
{
relRansacPtr problem;
if(useIndices)
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::SEVENPT, indices ) );
else
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::SEVENPT ) );
opengv::sac::Ransac<relRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case EIGHTPT_RANSAC:
{
relRansacPtr problem;
if(useIndices)
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::EIGHTPT, indices ) );
else
problem = relRansacPtr( new relRansac( *relativeAdapter, relRansac::EIGHTPT ) );
opengv::sac::Ransac<relRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case EIGENSOLVER_RANSAC:
{
eigRansacPtr problem;
if(useIndices)
problem = eigRansacPtr( new eigRansac( *relativeAdapter, 10, indices ) );
else
problem = eigRansacPtr( new eigRansac( *relativeAdapter, 10 ) );
opengv::sac::Ransac<eigRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 1.0;
ransac.max_iterations_ = 50;
ransac.computeModel();
opengv::transformation_t temp;
temp.block<3,3>(0,0) = ransac.model_coefficients_.rotation;
temp.block<3,1>(0,3) = ransac.model_coefficients_.translation;
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case REL_NONLIN_CENTRAL:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
opengv::translation_t starting_position = relativeAdapter->gett12();
opengv::rotation_t starting_rotation = relativeAdapter->getR12();
for( int i = 0; i < numberIterations; i++ )
{
//reset the starting value
relativeAdapter->sett12(starting_position);
relativeAdapter->setR12(starting_rotation);
if(useIndices)
temp = opengv::relative_pose::optimize_nonlinear(*relativeAdapter,indices);
else
temp = opengv::relative_pose::optimize_nonlinear(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case SIXPT:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotations_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::sixpt(*relativeAdapter,indices);
else
temp = opengv::relative_pose::sixpt(*relativeAdapter);
}
mwSize dims[3];
dims[0] = 3;
dims[1] = 3;
dims[2] = temp.size();
plhs[0] = mxCreateNumericArray(3, dims, mxDOUBLE_CLASS, mxREAL);
for( int i = 0; i < temp.size(); i++ )
{
void * targetAddress = ((char*) mxGetData(plhs[0])) + i*9*sizeof(double);
memcpy(targetAddress, temp[i].data(), 9*sizeof(double));
}
break;
}
case SEVENTEENPT:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::relative_pose::seventeenpt(*relativeAdapter,indices);
else
temp = opengv::relative_pose::seventeenpt(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case GE:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::rotation_t temp;
opengv::rotation_t starting_rotation = relativeAdapter->getR12();
opengv::geOutput_t output;;
for( int i = 0; i < numberIterations; i++ )
{
output.rotation = starting_rotation;
relativeAdapter->setR12(starting_rotation);
if(useIndices)
temp = opengv::relative_pose::ge(*relativeAdapter,indices,output);
else
temp = opengv::relative_pose::ge(*relativeAdapter,output);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 3;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]),temp.data(), 9*sizeof(double));
break;
}
case SIXPT_RANSAC:
{
nrelRansacPtr problem;
if(useIndices)
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::SIXPT, indices ) );
else
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::SIXPT ) );
opengv::sac::Ransac<nrelRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case SEVENTEENPT_RANSAC:
{
nrelRansacPtr problem;
if(useIndices)
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::SEVENTEENPT, indices ) );
else
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::SEVENTEENPT ) );
opengv::sac::Ransac<nrelRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case GE_RANSAC:
{
nrelRansacPtr problem;
if(useIndices)
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::GE, indices ) );
else
problem = nrelRansacPtr( new nrelRansac( *relativeAdapter, nrelRansac::GE ) );
opengv::sac::Ransac<nrelRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 2.0*(1.0 - cos(atan(sqrt(2.0)*0.5/800.0)));
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
case REL_NONLIN_NONCENTRAL:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
opengv::translation_t starting_position = relativeAdapter->gett12();
opengv::rotation_t starting_rotation = relativeAdapter->getR12();
for( int i = 0; i < numberIterations; i++ )
{
//reset the starting value
relativeAdapter->sett12(starting_position);
relativeAdapter->setR12(starting_rotation);
if(useIndices)
temp = opengv::relative_pose::optimize_nonlinear(*relativeAdapter,indices);
else
temp = opengv::relative_pose::optimize_nonlinear(*relativeAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case THREEPT_ARUN:
{
if(nlhs > 1)
{
mexPrintf("opengv: method ");
mexPrintf(methods[caseNumber]);
mexPrintf(" returns only one parameter.");
return;
}
opengv::transformation_t temp;
for( int i = 0; i < numberIterations; i++ )
{
if(useIndices)
temp = opengv::point_cloud::threept_arun(*pointCloudAdapter,indices);
else
temp = opengv::point_cloud::threept_arun(*pointCloudAdapter);
}
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), temp.data(), 12*sizeof(double));
break;
}
case THREEPT_ARUN_RANSAC:
{
ptRansacPtr problem;
if(useIndices)
problem = ptRansacPtr( new ptRansac( *pointCloudAdapter, indices ) );
else
problem = ptRansacPtr( new ptRansac( *pointCloudAdapter ) );
opengv::sac::Ransac<ptRansac> ransac;
ransac.sac_model_ = problem;
ransac.threshold_ = 0.1;
ransac.max_iterations_ = 50;
ransac.computeModel();
mwSize dims[2];
dims[0] = 3;
dims[1] = 4;
plhs[0] = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
memcpy(mxGetData(plhs[0]), ransac.model_coefficients_.data(), 12*sizeof(double));
if(nlhs > 1)
{
//fill the second return variable with the inliers
std::vector<int> inliers = ransac.inliers_;
for( int i = 0; i < inliers.size(); i++ )
inliers[i] += 1;
dims[0] = 1;
dims[1] = inliers.size();
plhs[1] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
memcpy(mxGetData(plhs[1]), (void*) &(inliers[0]), inliers.size()*sizeof(int));
}
break;
}
default: //-1
{
// impossible
break;
}
}
}
|