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 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605
|
/* Panorama_Tools - Generate, Edit and Convert Panoramic Images
Copyright (C) 1998,1999 - Helmut Dersch der@fh-furtwangen.de
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/*------------------------------------------------------------*/
/* ---- Revision history ----
May 2004, Rik Littlefield, reworked fcnPano and related functions as follows:
1) For normal control points, allows exposing latitude and longitude
error components separately to the optimizer. This trades
faster convergence for slight loss of stability. This
behavior can be changed at runtime by calling setFcnPanoNperCP().
(new capability)
2) Optimize distance^2 instead of distance^4 for hor, vert, and
line control points (bug fix)
3) Scale errors by change in average fov. This stabilizes
fov optimization and allows its use in more cases with partial panos.
(new capability)
4) Improve accuracy of angular distance calculation by using asin
instead of acos (results improvement)
5) Consistently report errors in units of pixels scaled to current
panorama size (feature change)
6) Report rms error during optimization (bug fix)
*/
#include "filter.h"
#include "f2c.h"
#include <float.h>
#define C_FACTOR 100.0
static AlignInfo *g; // This struct holds all informations for the optimization
static double initialAvgFov; // these three for fov stabilization
static double avgfovFromSAP;
static int needInitialAvgFov;
#define ADJUST_LOG_FILENAME "c:\\PToolsLog.txt" // file name for logging, if enabled
#define ADJUST_LOGGING_ENABLED 0
FILE* adjustLogFile = 0;
void ColCorrect( Image *im, double ColCoeff[3][2] );
void GetColCoeff( Image *src, Image *buf, double ColCoeff[3][2] );
void getControlPoints( Image *im, struct controlPoint *cp );
void writeControlPoints( struct controlPoint *cp,char* cdesc );
int CheckParams( AlignInfo *g );
static int CheckMakeParams( aPrefs *aP);
//static int GetOverlapRect( PTRect *OvRect, PTRect *r1, PTRect *r2 );
int AddEdgePoints( AlignInfo *gl );
int pt_average( UCHAR* pixel, int BytesPerLine, double rgb[3], int bytesPerChannel );
double distsqLine(int N0, int N1);
void adjust(TrformStr *TrPtr, aPrefs *prefs)
{
int destwidth, destheight;
aPrefs aP, *aPtr=NULL;
#if 0
int nt = 0; // Morph parameters
PTTriangle *ts=NULL;
PTTriangle *td=NULL;
#endif
SetAdjustDefaults(&aP);
switch( prefs->mode & 7 )// Should we use prefs, or read from script?
{
case _insert:
case _extract:
if( prefs->mode & _useScript ){
aPtr = readAdjustLine( &(prefs->scriptFile) );
if(aPtr==NULL){
PrintError("Error processing script file" );
TrPtr->success = 0;
return;
}
memcpy(&aP, aPtr, sizeof(aPrefs));
free(aPtr); aPtr = &aP;
if( (TrPtr->mode & 7) == _usedata ){ // Report panorama format and stitching info back to calling app.
memcpy( &prefs->pano, &aP.pano, sizeof( Image ) );
memcpy( &prefs->sBuf, &aP.sBuf, sizeof( stBuf ) );
}
TrPtr->interpolator = aP.interpolator;
TrPtr->gamma = aP.gamma;
#if 0
int readmode = 1;
aPtr = &aP;
gsPrPtr->interpolator = TrPtr->interpolator;
gsPrPtr->gamma = TrPtr->gamma;
if( TrPtr->mode & _destSupplied ){
PTRect* p = &TrPtr->dest->selection;
if( !(p->bottom == 0 && p->right == 0) &&
!(p->right == TrPtr->dest->width &&
p->bottom == TrPtr->dest->height) )
readmode = 0;
}
if( readAdjust( aPtr, &(prefs->scriptFile), readmode, gsPrPtr ) != 0 )
{
PrintError("Error processing script file" );
TrPtr->success = 0;
return;
}
if( (TrPtr->mode & 7) == _usedata ) // Report panorama format and stitching info back to calling app.
{
memcpy( &prefs->pano, &aP.pano, sizeof( Image ) );
memcpy( &prefs->sBuf, &aP.sBuf, sizeof( stBuf ) );
}
// Use modevalues read from script
TrPtr->interpolator = gsPrPtr->interpolator;
TrPtr->gamma = gsPrPtr->gamma;
// Parse script again, now reading triangles if morphing requested
if( aPtr->im.cP.correction_mode & correction_mode_morph )
{
char* script;
AlignInfo ainf;
int nIm, nPts; // Number of image being processed
Image im[2];
script = LoadScript( &(prefs->scriptFile) );
if( script != NULL ) // We can read the scriptfile
{
nIm = numLines( script, '!' ) - 1;
if( nIm < 0)
nIm = numLines( script, 'o' ) - 1;
// Set ainf
ainf.nt = 0;
ainf.t = NULL;
ainf.numIm = 2;
ainf.im = im;
memcpy( &ainf.pano, &aP.pano, sizeof( Image ));
memcpy( &ainf.im[0], &aP.pano, sizeof( Image ));
memcpy( &ainf.im[1], &aP.pano, sizeof( Image ));
nPts = ReadMorphPoints( script, &ainf, nIm );
if(nPts > 0) // Found Points
{
AddEdgePoints( &ainf );
TriangulatePoints( &ainf, 1 );
nt = ainf.nt;
if(nt > 0)
{
SortControlPoints ( &ainf, 1 );
SetSourceTriangles ( &ainf, 1, &td );
SetDestTriangles ( &ainf, 1, &ts );
}
}
if(ainf.numPts > 0) free(ainf.cpt);
free( script );
}
}
#endif
}else{
aPtr = prefs;
}
break;
default:
break;
}
switch( prefs->mode & 7)
{
case _insert: // Create a panoramic image using src; merge with buffer if required
// Find brightest rectangle if this is a circular fisheye image
{
Image ImCrop, *theSrc=NULL;
// Initialise at least the data pointer since cutTheFrame may not do it
ImCrop.data = NULL;
if( aPtr->im.format ==_fisheye_circ && aPtr->im.cP.cutFrame )
{
int fwidth = TrPtr->src->width, fheight = TrPtr->src->height;
if( aPtr->im.cP.frame ) // subtract framewidth from width/height
{
fwidth = TrPtr->src->width - aPtr->im.cP.frame;
if( aPtr->im.cP.frame < fwidth ) fwidth -= aPtr->im.cP.frame;
if( aPtr->im.cP.frame < fheight) fheight-= aPtr->im.cP.frame;
}
else
{
if( aPtr->im.cP.fwidth > 0)
fwidth = aPtr->im.cP.fwidth;
if( aPtr->im.cP.fheight > 0)
fheight = aPtr->im.cP.fheight;
}
if( cutTheFrame( &ImCrop, TrPtr->src, fwidth, fheight, TrPtr->mode & _show_progress ) != 0 )
{
PrintError("Error Cropping Image");
TrPtr->success = 0;
return;
}
theSrc = TrPtr->src;
TrPtr->src = &ImCrop;
}
// Image params are set as src
aPtr->im.width = TrPtr->src->width;
aPtr->im.height = TrPtr->src->height;
// Pano is set to buffer, if merging requested; else as prefs
if( *aPtr->sBuf.srcName != 0 )
{
if (LoadBufImage( &(aPtr->pano), aPtr->sBuf.srcName, 0) != 0 )
{
PrintError( "Error loading Buffer; trying without" );
}
}
if( aPtr->pano.width == 0 && aPtr->im.hfov != 0.0)
{
aPtr->pano.width = aPtr->im.width * aPtr->pano.hfov / aPtr->im.hfov;
aPtr->pano.width/=10; aPtr->pano.width*=10;
}
if( aPtr->pano.height == 0 )
aPtr->pano.height = aPtr->pano.width/2;
destheight = aPtr->pano.height;
destwidth = aPtr->pano.width;
if( destheight == 0 || destwidth == 0 )
{
PrintError("Please set Panorama width/height" );
TrPtr->success = 0;
goto _insert_exit;
}
if( SetDestImage( TrPtr, destwidth, destheight) != 0)
{
PrintError("Could not allocate %ld bytes",TrPtr->dest->dataSize );
TrPtr->success = 0;
goto _insert_exit;
}
TrPtr->mode |= _honor_valid;
CopyPosition( TrPtr->src, &(aPtr->im) );
CopyPosition( TrPtr->dest, &(aPtr->pano) );
addAlpha( TrPtr->src ); // Add alpha channel to indicate valid data
aPtr->mode = prefs->mode; // For checkparam
MakePano( TrPtr, aPtr );
if(aPtr->ts) free(aPtr->ts);
if(aPtr->td) free(aPtr->td);
// Stitch images; Proceed only if panoramic image valid
if( TrPtr->success )
{
if( *(aPtr->sBuf.srcName) != 0 ){ // We have to merge in one images
// Load the bufferimage
if( LoadBufImage( &aPtr->pano, aPtr->sBuf.srcName, 1 ) != 0 )
{
PrintError( "Could not load buffer %s; Keeping Source",aPtr->sBuf.srcName );
goto _insert_exit;
}
if( HaveEqualSize( &aPtr->pano, TrPtr->dest ))
{
// At this point we have two valid, equally sized images
// Do Colour Correction on one or both images
DoColorCorrection( TrPtr->dest, &aPtr->pano, aPtr->sBuf.colcorrect & 3);
if( merge( TrPtr->dest , &aPtr->pano, aPtr->sBuf.feather, TrPtr->mode & _show_progress, aPtr->sBuf.seam ) != 0 )
{
PrintError( "Error merging images. Keeping Source" );
}
}
myfree( (void**)aPtr->pano.data );
} // src != 0
if( *(aPtr->sBuf.destName) != 0 ) // save buffer image
{
if( SaveBufImage( TrPtr->dest, aPtr->sBuf.destName ) != 0 )
PrintError( "Could not save to Buffer. Most likely your disk is full");
}
} // Tr.success
if( TrPtr->success == 0 && ! (TrPtr->mode & _destSupplied) )
myfree( (void**)TrPtr->dest->data );
_insert_exit:
if( aPtr->im.format ==_fisheye_circ && aPtr->im.cP.cutFrame ) // There is a cropped source image;
{
if( ImCrop.data != NULL )
myfree( (void**) ImCrop.data );
TrPtr->src = theSrc;
}
}
break;
case _extract:
if( aPtr->im.width == 0 )
{
aPtr->im.width = 500 ;
}
if( aPtr->im.height == 0 )
{
aPtr->im.height = aPtr->im.width * 4 / 5;
}
// Set pano-params to src-image irrespective of prefs
aPtr->pano.width = TrPtr->src->width; // width of panorama
aPtr->pano.height = TrPtr->src->height; // height of panorama
CopyPosition( TrPtr->src, &(aPtr->pano) );
addAlpha( TrPtr->src );
if( *(aPtr->sBuf.destName) != 0 ) // save buffer image
{
if( SaveBufImage( TrPtr->src, aPtr->sBuf.destName ) != 0 )
PrintError( "Could not save Buffer Image. Most likely your disk is full");
}
// Set up Image Structure in TrPtr struct
destheight = aPtr->im.height;
destwidth = aPtr->im.width;
if( SetDestImage( TrPtr, destwidth, destheight) != 0)
{
PrintError("Could not allocate %ld bytes",TrPtr->dest->dataSize );
TrPtr->success = 0;
return;
}
CopyPosition( TrPtr->dest, &(aPtr->im) );
TrPtr->mode |= _honor_valid;
if( aPtr->pano.hfov == 360.0 )
TrPtr->mode |= _wrapX;
aPtr->mode = prefs->mode; // For checkparam
ExtractStill( TrPtr, aPtr );
if( TrPtr->success == 0 && ! (TrPtr->mode & _destSupplied))
myfree( (void**)TrPtr->dest->data );
break;
case _readControlPoints:
{
char *script, *newscript, cdesc[1000];
controlPoint cp[NUMPTS]; // List of Control points
script = LoadScript( &(prefs->scriptFile) );
if( script != NULL ) // We can read the scriptfile
{
newscript = (char*) malloc( strlen(script) + NUMPTS * 60 ); // One line per pair of points
if( newscript != NULL )
{
readControlPoints( script, cp ); // If this is the second image: get coordinates in first
getControlPoints( TrPtr->src, cp ); // Scan image and find control points
writeControlPoints( cp, cdesc ); // format control point coordinates
sprintf( newscript, "%s\n%s", script, cdesc );
if( WriteScript( newscript,&( prefs->scriptFile), 0 ) != 0 )
PrintError( "Could not write Scriptfile" );
free( newscript );
}
free( script );
}
}
TrPtr->success = 0; // Don't destroy image!
break;
case _runOptimizer:
// Run Optimizer; Dummy image needed but not changed
{
char* script;
OptInfo opt;
AlignInfo ainf;
script = LoadScript( &(prefs->scriptFile) );
if( script != NULL ) // We can read the scriptfile
{
if (ParseScript( script, &ainf ) == 0)
{
if( CheckParams( &ainf ) == 0 ) // and it seems to make sense
{
ainf.fcn = fcnPano;
SetGlobalPtr( &ainf );
opt.numVars = g->numParam;
opt.numData = g->numPts;
opt.SetVarsToX = SetLMParams;
opt.SetXToVars = SetAlignParams;
opt.fcn = g->fcn;
*opt.message = 0;
RunLMOptimizer( &opt );
g->data = opt.message;
WriteResults( script, &(prefs->scriptFile), g, distSquared ,
( TrPtr->mode & 7 ) != _usedata );
}
DisposeAlignInfo( &ainf ); // These were allocated by 'ParseScript()'
}
free( script );
}
}
TrPtr->success = 0; // Don't destroy Dummy image!
break;
default:
TrPtr->success = 0;
break;
}
}
// Make a pano in TrPtr->dest (must be allocated and all set!)
// using parameters in aPrefs (ignore image parameters in TrPtr !)
void MakePano( TrformStr *TrPtr, aPrefs *aP )
{
MyMakePano( TrPtr, aP, 1 );
}
/*This function was added by Kekus Digital on 18/9/2002.
This function takes the parameter 'imageNum' which repesents the index
of the image that has to be converted.*/
void MyMakePano( TrformStr *TrPtr, aPrefs *aP, int imageNum )
{
struct MakeParams mp,mpinv;
fDesc stack[15], fD; // Parameters for execute
fDesc invstack[15], finvD; // Invers Parameters for execute
void *morph[3];
int i,k, kstart, kend, color;
TrPtr->success = 1;
if( CheckMakeParams( aP) != 0)
{
TrPtr->success = 0;
return;
}
if( isColorSpecific( &(aP->im.cP) ) ) // Color dependent
{
kstart = 1; kend = 4;
}
else // Color independent
{
kstart = 0; kend = 1;
}
for( k = kstart; k < kend; k++ )
{
color = k-1; if( color < 0 ) color = 0;
SetMakeParams( stack, &mp, &(aP->im) , &(aP->pano), color );
SetInvMakeParamsCorrect( invstack, &mpinv, &(aP->im) , &(aP->pano), color );
if( aP->nt > 0 ) // Morphing requested
{
morph[0] = (void*)aP->td;
morph[1] = (void*)aP->ts;
morph[2] = (void*)&aP->nt;
i=0; while( stack[i].func != NULL && i<14 ) i++;
if( i!=14 )
{
for(i=14; i>0; i--)
{
memcpy( &stack[i], &stack[i-1], sizeof( fDesc ));
}
stack[0].func = tmorph;
stack[0].param = (void*)morph;
}
}
if( TrPtr->success != 0)
{
fD.func = execute_stack_new; fD.param = stack;
finvD.func = execute_stack_new; finvD.param = invstack;
transFormEx( TrPtr, &fD , &finvD , k, imageNum );
}
}
}
// Extract image from pano in TrPtr->src
// using parameters in prefs (ignore image parameters
// in TrPtr)
void ExtractStill( TrformStr *TrPtr , aPrefs *aP )
{
struct MakeParams mp,mpinv;
fDesc stack[15], fD; // Parameters for execute
fDesc stackinv[15], fDinv; // Invers Parameters for execute
int k, kstart, kend, color;
TrPtr->success = 1;
if( CheckMakeParams( aP) != 0)
{
TrPtr->success = 0;
return;
}
if( isColorSpecific( &(aP->im.cP) ) ) // Color dependent
{
kstart = 1; kend = 4;
}
else // Color independent
{
kstart = 0; kend = 1;
}
for( k = kstart; k < kend; k++ )
{
color = k-1; if( color < 0 ) color = 0;
SetInvMakeParamsCorrect( stack, &mp, &(aP->im), &(aP->pano), color );
SetMakeParams( stackinv, &mpinv, &(aP->im), &(aP->pano), color );
if( TrPtr->success != 0)
{
fD.func = execute_stack_new; fD.param = stack;
fDinv.func = execute_stack_new; fDinv.param = stackinv;
transFormEx( TrPtr, &fD, &fDinv, k, 1 );
}
}
}
// Set Makeparameters depending on adjustprefs, color and source image
void SetMakeParams( struct fDesc *stack, struct MakeParams *mp, Image *im , Image *pn, int color )
{
int i;
double a,b; // field of view in rad
double tx,ty, tpara; // temporary variables
/* Joost Nieuwenhuijse, 3 feb 2005: Fix for cropping bug
If a script containing the 'C' crop parameter was stitched by PTStitcher,
it would fail if the cropping area is partially outside the source image.
For 'inside' cropping, PTStitcher apparently pre-crops the images, such that
*im contains the cropped area of the source image.
For 'outside' cropping, PTStitcher apparently does nothing. The cropping area
is stored in im->selection, and im->cp.cutFrame is set, but this information
was not used at all.
This is fixed here: All processing is now done based on the width&height of the
cropped area (instead of the width&height of the image). And an additional horizontal
and vertical offset are added to compensate for the shift of the center of the
crop area relative to the center of the image.
*/
int image_selection_width=im->width;
int image_selection_height=im->height;
if(im->cP.horizontal)
{
mp->horizontal=im->cP.horizontal_params[color];
}
else
{
mp->horizontal=0;
}
if(im->cP.vertical)
{
mp->vertical=im->cP.vertical_params[color];
}
else
{
mp->vertical=0;
}
if( (im->selection.left != 0) || (im->selection.top != 0) || (im->selection.bottom != 0) || (im->selection.right != 0) )
{
if(im->cP.cutFrame)
{
image_selection_width = im->selection.right - im->selection.left;
image_selection_height = im->selection.bottom - im->selection.top;
mp->horizontal += (im->selection.right + im->selection.left - im->width)/2.0;
mp->vertical += (im->selection.bottom + im->selection.top - im->height)/2.0;
}
}
a = DEG_TO_RAD( im->hfov ); // field of view in rad
b = DEG_TO_RAD( pn->hfov );
SetMatrix( - DEG_TO_RAD( im->pitch ),
0.0,
- DEG_TO_RAD( im->roll ),
mp->mt,
0 );
#if 0
switch (pn->format)
{
case _rectilinear:
mp->distance = (double) pn->width / (2.0 * tan(b/2.0));
if(im->format == _rectilinear) // rectilinear image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) *
(a /(2.0 * tan(a/2.0))) * ((double)image_selection_width/(double) pn->width)
* 2.0 * tan(b/2.0) / b;
}
else // pamoramic or fisheye image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * ((double)image_selection_width/ (double) pn->width)
* 2.0 * tan(b/2.0) / b;
}
break;
case _equirectangular:
case _fisheye_ff:
case _panorama:
case _mercator:
case _sinusoidal:
// horizontal pixels per degree
mp->distance = ((double) pn->width) / b;
if(im->format == _rectilinear) // rectilinear image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * (a /(2.0 * tan(a/2.0))) * ((double)image_selection_width)/ ((double) pn->width);
}
else // pamoramic or fisheye image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * ((double)image_selection_width)/ ((double) pn->width);
}
break;
case _stereographic:
case _trans_mercator:
default:
break;
}
mp->scale[1] = mp->scale[0];
printf("\nOrig params: mp->distance: %lf, mp->scale: %lf\n\n", mp->distance, mp->scale[0]);
#endif
/* Pablo d'Angelo, April 2006.
* Added more output projection types. Broke mp->distance and mp->scale factor calculation
* into separate parts, making it easier to add new projection types
*/
// calculate distance
switch (pn->format)
{
case _rectilinear:
mp->distance = (double) pn->width / (2.0 * tan(b/2.0));
break;
case _equirectangular:
case _fisheye_ff:
case _panorama:
case _mercator:
case _sinusoidal:
// horizontal pixels per degree
mp->distance = ((double) pn->width) / b;
break;
case _stereographic:
tpara = 1;
stereographic_erect(b/2.0, 0.0, &tx, &ty, & tpara);
mp->distance = pn->width/(2.0*tx);
break;
case _trans_mercator:
tpara = 1;
transmercator_erect(b/2.0, 0.0, &tx, &ty, &tpara);
mp->distance = pn->width/(2.0*tx);
break;
default:
// unknown
PrintError ("SetMakeParams: Unsupported panorama projection");
// no way to report an error back to the caller...
mp->distance = 1;
}
// calculate final scaling factor, that reverses the mp->distance
// scaling and applies the required output scaling factor
switch (im->format)
{
case _rectilinear:
// calculate distance for this projection
mp->scale[0] = (double) im->width / (2.0 * tan(a/2.0)) / mp->distance;
break;
case _equirectangular:
case _panorama:
case _fisheye_ff:
case _fisheye_circ:
mp->scale[0] = ((double) im->width) / a / mp->distance;
break;
default:
PrintError ("SetMakeParams: Unsupported input image projection");
// no way to report an error back to the caller...
mp->scale[1] = 1;
}
mp->scale[1] = mp->scale[0];
// printf("new params: mp->distance: %lf, mp->scale: %lf\n\n", mp->distance, mp->scale[0]);
mp->shear[0] = im->cP.shear_x / image_selection_height;
mp->shear[1] = im->cP.shear_y / image_selection_width;
mp->rot[0] = mp->distance * PI; // 180 in screenpoints
mp->rot[1] = -im->yaw * mp->distance * PI / 180.0; // rotation angle in screenpoints
mp->perspect[0] = (void*)(mp->mt);
mp->perspect[1] = (void*)&(mp->distance);
for(i=0; i<4; i++)
mp->rad[i] = im->cP.radial_params[color][i];
mp->rad[5] = im->cP.radial_params[color][4];
if( (im->cP.correction_mode & 3) == correction_mode_radial )
mp->rad[4] = ( (double)( image_selection_width < image_selection_height ? image_selection_width : image_selection_height) ) / 2.0;
else
mp->rad[4] = ((double) image_selection_height) / 2.0;
// Joost: removed, see above
// mp->horizontal = im->cP.horizontal_params[color];
// mp->vertical = im->cP.vertical_params[color];
i = 0;
if(pn->format == _rectilinear) // rectilinear panorama
{
SetDesc(stack[i], erect_rect, &(mp->distance) ); i++; // Convert rectilinear to equirect
}
else if(pn->format == _panorama)
{
SetDesc(stack[i], erect_pano, &(mp->distance) ); i++; // Convert panoramic to equirect
}
else if(pn->format == _fisheye_circ || pn->format == _fisheye_ff)
{
SetDesc(stack[i], erect_sphere_tp, &(mp->distance) ); i++; // Convert panoramic to sphere
}
else if(pn->format == _mercator)
{
SetDesc(stack[i], erect_mercator, &(mp->distance) ); i++; // Convert mercator to sphere
}
else if(pn->format == _trans_mercator)
{
SetDesc(stack[i], erect_transmercator, &(mp->distance) ); i++; // Convert transverse mercator to sphere
}
else if(pn->format == _stereographic)
{
SetDesc(stack[i], erect_stereographic, &(mp->distance) ); i++; // Convert stereographic to sphere
}
else if(pn->format == _sinusoidal)
{
SetDesc(stack[i], erect_sinusoidal, &(mp->distance) ); i++; // Convert sinusoidal to sphere
}
else if(pn->format == _equirectangular)
{
// no conversion needed
} else {
PrintError("Projection type %d not supported, using equirectangular", pn->format);
}
SetDesc( stack[i], rotate_erect, mp->rot ); i++; // Rotate equirect. image horizontally
SetDesc( stack[i], sphere_tp_erect, &(mp->distance) ); i++; // Convert spherical image to equirect.
SetDesc( stack[i], persp_sphere, mp->perspect ); i++; // Perspective Control spherical Image
if(im->format == _rectilinear) // rectilinear image
{
SetDesc(stack[i], rect_sphere_tp, &(mp->distance) ); i++; // Convert rectilinear to spherical
}
else if (im->format == _panorama) // pamoramic image
{
SetDesc(stack[i], pano_sphere_tp, &(mp->distance) ); i++; // Convert panoramic to spherical
}
else if (im->format == _equirectangular) // PSphere image
{
SetDesc(stack[i], erect_sphere_tp, &(mp->distance) ); i++; // Convert PSphere to spherical
}
SetDesc( stack[i], resize, mp->scale ); i++; // Scale image
if( im->cP.radial )
{
switch( im->cP.correction_mode & 3 )
{
case correction_mode_radial: SetDesc(stack[i],radial,mp->rad); i++; break;
case correction_mode_vertical: SetDesc(stack[i],vertical,mp->rad); i++; break;
case correction_mode_deregister:SetDesc(stack[i],deregister,mp->rad); i++; break;
}
}
// if ( im->cP.vertical)
if (mp->vertical != 0.0)
{
SetDesc(stack[i],vert, &(mp->vertical)); i++;
}
// if ( im->cP.horizontal )
if (mp->horizontal != 0.0)
{
SetDesc(stack[i],horiz, &(mp->horizontal)); i++;
}
if( im->cP.shear )
{
SetDesc( stack[i],shear, mp->shear ); i++;
}
stack[i].func = (trfn)NULL;
// print stack for debugging
#if 0
printf( "Rotate params: %lg %lg\n" , mp->rot[0], mp->rot[1]);
printf( "Distance : %lg\n" , mp->distance);
printf( "Perspect params: %lg %lg %lg\n",a, beta , gammar );
if(aP->format == _rectilinear) // rectilinear image
{
printf( "Rectilinear\n" );
}
else if (aP->format == _panorama) // pamoramic image
{
printf( "Panorama\n" );
}
else
printf( "Fisheye\n" );
printf( "Scaling : %lg\n" , mp->scale[0]);
if( aP->correct )
{
printf( "Correct:\n" );
if( aP->c_prefs.shear )
{
printf( "Shear: %lg\n", mp->shear );
}
if ( aP->c_prefs.horizontal )
{
printf( "horiz:%lg\n", mp->horizontal );
}
if ( aP->c_prefs.vertical)
{
printf( "vert:%lg\n", mp->vertical );
}
if( aP->c_prefs.radial )
{
printf( "Polynomial:\n" );
if( aP->c_prefs.isScanningSlit )
{
printf( "Scanning Slit:\n" );
}
else
{
printf( "Radial:\n" );
printf( "Params: %lg %lg %lg %lg %lg\n", mp->rad[0],mp->rad[1],mp->rad[2],mp->rad[3],mp->rad[4] );
}
}
}
#endif
}
// Set inverse Makeparameters depending on adjustprefs, color and source image
void SetInvMakeParams( struct fDesc *stack, struct MakeParams *mp, Image *im , Image *pn, int color )
{
int i;
double a,b; // field of view in rad
double tx,ty,tpara;
a = DEG_TO_RAD( im->hfov ); // field of view in rad
b = DEG_TO_RAD( pn->hfov );
SetMatrix( DEG_TO_RAD( im->pitch ),
0.0,
DEG_TO_RAD( im->roll ),
mp->mt,
1 );
// dangelo: added mercator, sinusoidal and stereographic projection
switch (pn->format)
{
case _rectilinear:
mp->distance = (double) pn->width / (2.0 * tan(b/2.0));
break;
case _equirectangular:
case _fisheye_ff:
case _panorama:
case _mercator:
case _sinusoidal:
// horizontal pixels per degree
mp->distance = ((double) pn->width) / b;
break;
case _stereographic:
tpara = 1;
stereographic_erect(b/2.0, 0.0, &tx, &ty, & tpara);
mp->distance = pn->width/(2.0*tx);
break;
case _trans_mercator:
tpara = 1;
transmercator_erect(b/2.0, 0.0, &tx, &ty, & tpara);
mp->distance = pn->width/(2.0*tx);
break;
default:
// unknown
PrintError ("SetMakeParams: Unsupported panorama projection");
// no way to report an error back to the caller...
mp->distance = 1;
}
// calculate final scaling factor, that reverses the mp->distance
// scaling and applies the required output scaling factor
switch (im->format)
{
case _rectilinear:
// calculate distance for this projection
mp->scale[0] = (double) im->width / (2.0 * tan(a/2.0)) / mp->distance;
break;
case _equirectangular:
case _panorama:
case _fisheye_ff:
case _fisheye_circ:
mp->scale[0] = ((double) im->width) / a / mp->distance;
break;
default:
PrintError ("SetMakeParams: Unsupported input image projection");
// no way to report an error back to the caller...
mp->scale[1] = 1;
}
mp->scale[1] = mp->scale[0];
/*
if(pn->format == _rectilinear) // rectilinear panorama
{
mp->distance = (double) pn->width / (2.0 * tan(b/2.0));
if(im->format == _rectilinear) // rectilinear image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) *
(a /(2.0 * tan(a/2.0))) * ((double)im->width/(double) pn->width)
* 2.0 * tan(b/2.0) / b;
}
else // pamoramic or fisheye image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * ((double)im->width/ (double) pn->width)
* 2.0 * tan(b/2.0) / b;
}
}
else // equirectangular or panoramic
{
mp->distance = ((double) pn->width) / b;
if(im->format == _rectilinear) // rectilinear image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * (a /(2.0 * tan(a/2.0))) * ((double)im->width)/ ((double) pn->width);
}
else // pamoramic or fisheye image
{
mp->scale[0] = ((double)pn->hfov / im->hfov) * ((double)im->width)/ ((double) pn->width);
}
}
*/
mp->shear[0] = -im->cP.shear_x / im->height;
mp->shear[1] = -im->cP.shear_y / im->width;
mp->scale[0] = 1.0 / mp->scale[0];
mp->scale[1] = mp->scale[0];
mp->horizontal = -im->cP.horizontal_params[color];
mp->vertical = -im->cP.vertical_params[color];
for(i=0; i<4; i++)
mp->rad[i] = im->cP.radial_params[color][i];
mp->rad[5] = im->cP.radial_params[color][4];
switch( im->cP.correction_mode & 3 )
{
case correction_mode_radial: mp->rad[4] = ((double)(im->width < im->height ? im->width : im->height) ) / 2.0;break;
case correction_mode_vertical:
case correction_mode_deregister: mp->rad[4] = ((double) im->height) / 2.0;break;
}
mp->rot[0] = mp->distance * PI; // 180 in screenpoints
mp->rot[1] = im->yaw * mp->distance * PI / 180.0; // rotation angle in screenpoints
mp->perspect[0] = (void*)(mp->mt);
mp->perspect[1] = (void*)&(mp->distance);
i = 0; // Stack counter
// Perform radial correction
if( im->cP.shear )
{
SetDesc( stack[i],shear, mp->shear ); i++;
}
if ( im->cP.horizontal )
{
SetDesc(stack[i],horiz, &(mp->horizontal)); i++;
}
if ( im->cP.vertical)
{
SetDesc(stack[i],vert, &(mp->vertical)); i++;
}
if( im->cP.radial )
{
switch( im->cP.correction_mode & 3)
{
case correction_mode_radial: SetDesc(stack[i],inv_radial,mp->rad); i++; break;
case correction_mode_vertical: SetDesc(stack[i],inv_vertical,mp->rad); i++; break;
case correction_mode_deregister: break;
}
}
SetDesc( stack[i], resize, mp->scale ); i++; // Scale image
if(im->format == _rectilinear) // rectilinear image
{
SetDesc(stack[i], sphere_tp_rect, &(mp->distance) ); i++; //
}
else if (im->format == _panorama) // pamoramic image
{
SetDesc(stack[i], sphere_tp_pano, &(mp->distance) ); i++; // Convert panoramic to spherical
}
else if (im->format == _equirectangular) // PSphere image
{
SetDesc(stack[i], sphere_tp_erect, &(mp->distance) ); i++; // Convert Psphere to spherical
}
SetDesc( stack[i], persp_sphere, mp->perspect ); i++; // Perspective Control spherical Image
SetDesc( stack[i], erect_sphere_tp, &(mp->distance) ); i++; // Convert spherical image to equirect.
SetDesc( stack[i], rotate_erect, mp->rot ); i++; // Rotate equirect. image horizontally
if(pn->format == _rectilinear) // rectilinear panorama
{
SetDesc(stack[i], rect_erect, &(mp->distance) ); i++; // Convert rectilinear to spherical
}
else if(pn->format == _panorama)
{
SetDesc(stack[i], pano_erect, &(mp->distance) ); i++; // Convert rectilinear to spherical
}
else if(pn->format == _fisheye_circ || pn->format == _fisheye_ff )
{
SetDesc(stack[i], sphere_tp_erect, &(mp->distance) ); i++; // Convert rectilinear to spherical
}
else if(pn->format == _mercator)
{
SetDesc(stack[i], mercator_erect, &(mp->distance) ); i++; // Convert sphere to sphere
}
else if(pn->format == _trans_mercator)
{
SetDesc(stack[i], transmercator_erect, &(mp->distance) ); i++; // Convert sphere to transverse mercator
}
else if(pn->format == _stereographic)
{
SetDesc(stack[i], stereographic_erect, &(mp->distance) ); i++; // Convert sphere to stereographic
}
else if(pn->format == _sinusoidal)
{
SetDesc(stack[i], sinusoidal_erect, &(mp->distance) ); i++; // Convert sphere to sinusoidal
}
else if(pn->format == _equirectangular)
{
// no conversion needed
} else {
PrintError("Projection type %d not supported, using equirectangular", pn->format);
}
stack[i].func = (trfn)NULL;
}
void SetInvMakeParamsCorrect( struct fDesc *stack, struct MakeParams *mp, Image *im , Image *pn, int color )
{
/* Thomas Rauscher, Sep 2005: Transfered the changes of Joost Nieuwenhuijse for MakeParams
to the inverse function. This has broken the optimizer, now there are two functions.
*/
Image imSel; /* create a tempory copy of the image to manipulate */
memcpy( &imSel, im, sizeof(Image));
if(im->cP.horizontal)
{
mp->horizontal = im->cP.horizontal_params[color];
}
else
{
mp->horizontal = 0;
}
if(im->cP.vertical)
{
mp->vertical = im->cP.vertical_params[color];
}
else
{
mp->vertical = 0;
}
if( (im->selection.left != 0) || (im->selection.top != 0) || (im->selection.bottom != 0) || (im->selection.right != 0) )
{
if(im->cP.cutFrame)
{
imSel.width = im->selection.right - im->selection.left;
imSel.width = im->selection.bottom - im->selection.top;
mp->horizontal += (im->selection.right + im->selection.left - im->width)/2.0;
mp->vertical += (im->selection.bottom + im->selection.top - im->height)/2.0;
imSel.cP.horizontal_params[color] = mp->horizontal;
imSel.cP.vertical_params[color] = mp->vertical;
}
}
SetInvMakeParams( stack, mp, &imSel, pn, color );
}
// Add an alpha channel to the image, assuming rectangular or circular shape
// subtract frame
void addAlpha( Image *im ){
register int x,y,c1;
int framex, framey;
register unsigned char *src;
src = *(im->data);
framex = 0; framey = 0;
if( im->cP.cutFrame ){
if( im->cP.frame < 0 || im->cP.fwidth < 0 || im->cP.fheight < 0 ){ // Use supplied alpha channel
return;
}
if( im->cP.frame != 0 ){
framex = (im->width/2 > im->cP.frame ? im->cP.frame : 0);
framey = (im->height/2 > im->cP.frame ? im->cP.frame : 0);
}
else{
if( im->width > im->cP.fwidth )
framex = (im->width - im->cP.fwidth) / 2;
if( im->height > im->cP.fheight )
framey = (im->height - im->cP.fheight) / 2;
}
}
if( im->bitsPerPixel == 32 || im->bitsPerPixel == 64 ) // leave 24/48 bit images unchanged
{
if( im->format != _fisheye_circ ) // Rectangle valid
{
int yend = im->height - framey;
int xend = im->width - framex;
if( im->bitsPerPixel == 32 )
{
if( 0 != framey || 0 != framex )
{
for(y = 0; y < im->height; y++)
{
c1 = y * im->bytesPerLine;
for(x = 0; x < im->width; x++)
src[ c1 + 4 * x ] = 0;
}
}
for(y = framey; y < yend; y++)
{
c1 = y * im->bytesPerLine;
for(x = framex; x < xend; x++)
src[ c1 + 4 * x ] = UCHAR_MAX;
}
}
else // im->bitsPerPixel == 64
{
if( 0 != framey || 0 != framex )
{
for(y = 0; y < im->height; y++)
{
c1 = y * im->bytesPerLine;
for(x = 0; x < im->width; x++)
*((USHORT*)(src + c1 + 8 * x )) = 0;
}
}
for(y = framey; y < yend; y++)
{
c1 = y * im->bytesPerLine;
for(x = framex; x < xend; x++)
*((USHORT*)(src + c1 + 8 * x )) = USHRT_MAX;
}
}
}
else if( im->format == _fisheye_circ ) // Circle valid
{
int topCircle = ( im->height - im->width ) / 2; // top of circle
int botCircle = topCircle + im->width ; // bottom of circle
int r = ( im->width / 2 ); // radius of circle
int x1, x2, h;
if( im->bitsPerPixel == 32 )
{
for(y = 0; y < im->height ; y++)
{
if( (y < topCircle) || (y > botCircle) ) // Always invalid
{
for(x = 0; x < im->width; x++)
src[y * im->bytesPerLine + 4 * x] = 0;
}
else
{
h = y - im->height/2;
if( h*h > r*r ) h = r;
x1 = (int) (r - sqrt( r*r - h*h ));
if( x1 < 0 ) x1 = 0;
x2 = (int) (r + sqrt( r*r - h*h ));
if( x2 > im->width ) x2 = im->width;
for(x = 0; x < x1; x++)
src[y * im->bytesPerLine + 4 * x] = 0;
for(x = x1; x < x2; x++)
src[y * im->bytesPerLine + 4 * x] = UCHAR_MAX;
for(x = x2; x < im->width; x++)
src[y * im->bytesPerLine + 4 * x] = 0;
}
}
}
else // im->bitsPerPixel == 64
{
for(y = 0; y < im->height ; y++)
{
if( (y < topCircle) || (y > botCircle) ) // Always invalid
{
for(x = 0; x < im->width; x++)
*((USHORT*)(src + y * im->bytesPerLine + 8 * x)) = 0;
}
else
{
h = y - im->height/2;
if( h*h > r*r ) h = r;
x1 = (int) (r - sqrt( r*r - h*h ));
if( x1 < 0 ) x1 = 0;
x2 = (int) (r + sqrt( r*r - h*h ));
if( x2 > im->width ) x2 = im->width;
for(x = 0; x < x1; x++)
*((USHORT*)(src + y * im->bytesPerLine + 8 * x)) = 0;
for(x = x1; x < x2; x++)
*((USHORT*)(src + y * im->bytesPerLine + 8 * x)) = USHRT_MAX;
for(x = x2; x < im->width; x++)
*((USHORT*)(src + y * im->bytesPerLine + 8 * x)) = 0;
}
}
}
} // mode
} // pixelsize
}
// Angular Distance for control point "num".
// Function distSphere computes an exact angular distance and the
// corresponding components in longitude/latitude directions.
// These are returned in a slightly strange manner (distance as the
// function result, components in a global array) to avoid changing the
// calling sequence of distSphere, which might unnecessarily break
// other code that we don't know about.
double distanceComponents[2];
double distSphere( int num ){
double x, y ; // Coordinates of control point in panorama
double w2, h2;
int j;
Image sph;
int n[2];
struct MakeParams mp;
struct fDesc stack[15];
CoordInfo b[2];
CoordInfo cp;
double lat[2], lon[2]; // latitude & longitude
double dlon;
double dangle;
double dist;
double radiansToPixelsFactor;
// Factor to convert angular error in radians to equivalent in pixels
radiansToPixelsFactor = g->pano.width / (g->pano.hfov * (PI/180.0));
// Get image position in imaginary spherical image
SetImageDefaults( &sph );
sph.width = 360;
sph.height = 180;
sph.format = _equirectangular;
sph.hfov = 360.0;
n[0] = g->cpt[num].num[0];
n[1] = g->cpt[num].num[1];
// Calculate coordinates using equirectangular mapping to get longitude/latitude
for(j=0; j<2; j++){
SetInvMakeParams( stack, &mp, &g->im[ n[j] ], &sph, 0 );
h2 = (double)g->im[ n[j] ].height / 2.0 - 0.5;
w2 = (double)g->im[ n[j] ].width / 2.0 - 0.5;
execute_stack_new( (double)g->cpt[num].x[j] - w2, // cartesian x-coordinate src
(double)g->cpt[num].y[j] - h2, // cartesian y-coordinate src
&x, &y, stack);
x = DEG_TO_RAD( x );
y = DEG_TO_RAD( y ) + PI/2.0;
// x is now in the range -PI to +PI, and y is 0 to PI
lat[j] = y;
lon[j] = x;
b[j].x[0] = sin(x) * sin( y );
b[j].x[1] = cos( y );
b[j].x[2] = - cos(x) * sin(y);
}
dlon = lon[0]-lon[1];
if (dlon < -PI) dlon += 2.0*PI;
if (dlon > PI) dlon -= 2.0*PI;
distanceComponents[0] = (dlon*sin(0.5*(lat[0]+lat[1]))) * radiansToPixelsFactor;
distanceComponents[1] = (lat[0]-lat[1]) * radiansToPixelsFactor;
// The original acos formulation (acos(SCALAR_PRODUCT(&b[0],&b[1]))
// is inaccurate for angles near 0, because it essentially requires finding eps
// based on the value of 1-eps^2/2. The asin formulation is much more
// accurate under these conditions.
CROSS_PRODUCT(&b[0],&b[1],&cp);
dangle = asin(ABS_VECTOR(&cp));
if (SCALAR_PRODUCT(&b[0],&b[1]) < 0.0) dangle = PI - dangle;
dist = dangle * radiansToPixelsFactor;
// Diagnostics to help debug various calculation errors.
// Do not delete this code --- it has been needed surprisingly often.
#if 0
{ double olddist;
olddist = acos( SCALAR_PRODUCT( &b[0], &b[1] ) ) * radiansToPixelsFactor;
// if (adjustLogFile != 0 && abs(dist-olddist) > 1.0) {
if (adjustLogFile != 0 && num < 5) {
fprintf(adjustLogFile,"***** DIST ***** dCoord = %g %g, lonlat0 = %g %g, lonlat1 = %g %g, dist=%g, olddist=%g, sumDcoordSq=%g, distSq=%g\n",
distanceComponents[0],distanceComponents[1],lon[0],lat[0],lon[1],lat[1],dist,olddist,
distanceComponents[0]*distanceComponents[0]+distanceComponents[1]*distanceComponents[1],dist*dist);
}
}
#endif
return dist;
}
void pt_getXY(int n, double x, double y, double *X, double *Y){
struct MakeParams mp;
struct fDesc stack[15];
double h2,w2;
SetInvMakeParams( stack, &mp, &g->im[ n ], &g->pano, 0 );
h2 = (double)g->im[ n ].height / 2.0 - 0.5;
w2 = (double)g->im[ n ].width / 2.0 - 0.5;
execute_stack_new( x - w2, y - h2, X, Y, stack);
}
// Return distance of points from a line
// The line through the two farthest apart points is calculated
// Returned is the sum distance squared of the other two points from the line
double distsqLine(int N0, int N1){
double x[4],y[4], del, delmax, A, B, C, mu, d0, d1;
int n0, n1, n2=-1, n3=-1, i, k;
pt_getXY(g->cpt[N0].num[0], (double)g->cpt[N0].x[0], (double)g->cpt[N0].y[0], &x[0], &y[0]);
pt_getXY(g->cpt[N0].num[1], (double)g->cpt[N0].x[1], (double)g->cpt[N0].y[1], &x[1], &y[1]);
pt_getXY(g->cpt[N1].num[0], (double)g->cpt[N1].x[0], (double)g->cpt[N1].y[0], &x[2], &y[2]);
pt_getXY(g->cpt[N1].num[1], (double)g->cpt[N1].x[1], (double)g->cpt[N1].y[1], &x[3], &y[3]);
delmax = 0.0;
n0 = 0; n1 = 1;
for(i=0; i<4; i++){
for(k=i+1; k<4; k++){
del = (x[i]-x[k])*(x[i]-x[k])+(y[i]-y[k])*(y[i]-y[k]);
if(del>delmax){
n0=i; n1=k; delmax=del;
}
}
}
if(delmax==0.0) return 0.0;
for(i=0; i<4; i++){
if(i!= n0 && i!= n1){
n2 = i;
break;
}
}
for(i=0; i<4; i++){
if(i!= n0 && i!= n1 && i!=n2){
n3 = i;
}
}
A=y[n1]-y[n0]; B=x[n0]-x[n1]; C=y[n0]*(x[n1]-x[n0])-x[n0]*(y[n1]-y[n0]);
mu=1.0/sqrt(A*A+B*B);
d0 = (A*x[n2]+B*y[n2]+C)*mu;
d1 = (A*x[n3]+B*y[n3]+C)*mu;
distanceComponents[0] = d0;
distanceComponents[1] = d1;
return d0*d0 + d1*d1;
}
// Calculate the distance of Control Point "num" between two images
// in final pano. This is the old distSquared.
double rectDistSquared( int num )
{
double x[2], y[2]; // Coordinates of control point in panorama
double w2, h2;
int j, n[2];
double result;
struct MakeParams mp;
struct fDesc stack[15];
n[0] = g->cpt[num].num[0];
n[1] = g->cpt[num].num[1];
// Calculate coordinates x/y in panorama
for(j=0; j<2; j++)
{
SetInvMakeParams( stack, &mp, &g->im[ n[j] ], &g->pano, 0 );
h2 = (double)g->im[ n[j] ].height / 2.0 - 0.5;
w2 = (double)g->im[ n[j] ].width / 2.0 - 0.5;
execute_stack_new( (double)g->cpt[num].x[j] - w2, // cartesian x-coordinate src
(double)g->cpt[num].y[j] - h2, // cartesian y-coordinate src
&x[j], &y[j], stack);
// test to check if inverse works
#if 0
{
double xt, yt;
struct MakeParams mtest;
struct fDesc stacktest[15];
SetMakeParams( stacktest, &mtest, &g->im[ n[j] ], &g->pano, 0 );
execute_stack_new( x[j], // cartesian x-coordinate src
y[j], // cartesian y-coordinate src
&xt, &yt, stacktest);
printf("x= %lg, y= %lg, xb = %lg, yb = %lg \n", g->cpt[num].x[j], g->cpt[num].y[j], xt+w2, yt+h2);
}
#endif
}
// printf("Coordinates 0: %lg:%lg 1: %lg:%lg\n",x[0] + g->pano->width/2,y[0]+ g->pano->height/2, x[1] + g->pano->width/2,y[1]+ g->pano->height/2);
// take care of wrapping and points at edge of panorama
if( g->pano.hfov == 360.0 )
{
double delta = abs( x[0] - x[1] );
if( delta > g->pano.width / 2 )
{
if( x[0] < x[1] )
x[0] += g->pano.width;
else
x[1] += g->pano.width;
}
}
switch( g->cpt[num].type ) // What do we want to optimize?
{
case 1: // x difference
result = ( x[0] - x[1] ) * ( x[0] - x[1] );
break;
case 2: // y-difference
result = ( y[0] - y[1] ) * ( y[0] - y[1] );
break;
default:
result = ( y[0] - y[1] ) * ( y[0] - y[1] ) + ( x[0] - x[1] ) * ( x[0] - x[1] ); // square of distance
distanceComponents[0] = y[0] - y[1];
distanceComponents[1] = x[0] - x[1];
break;
}
return result;
}
/// (function distSquared2 has been removed -- it was unused and redundant)
/// EvaluateControlPointErrorAndComponents is the central point-of-contact
/// for determining the error for a specified control point pair.
///
/// Arguments are
/// num identifies the control point pair
/// *errptr returns a single error measure (distance)
/// errComponent[*] returns two components of that error, as nearly orthogonal
/// as possible
/// Return value is a success flag: 0 = successful, otherwise not.
int EvaluateControlPointErrorAndComponents ( int num, double *errptr, double errComponent[2]) {
int j;
int result;
switch(g->cpt[num].type){
case 0: // normal control points
// Jim May 2004.
// Optimizing cylindrical and rectilinear projection by calculating
// distance error in pixel coordinates of the rendered image.
// When using angular (spherical) distance for these projections,
// larger errors are generated the further control points are from
// the center.
// In theory by optimizing in pixel coordinates all errors will be
// distributed over the image. This is true.
// In practice I have found that optimize large field of view
// rectilinear projection images failed to resolve nicely if the
// parameters were not very close to start with. I leave the
// code here for others to play with and maybe get better results.
/* if(g->pano.format == _rectilinear || g->pano.format == _panorama)
{
*errptr = sqrt(rectDistSquared(num));
errComponent[0] = distanceComponents[0];
errComponent[1] = distanceComponents[1];
result = 0;
break;
}
else // _equirectangular, fisheye, spherical, mirror
{ */
*errptr = distSphere(num);
errComponent[0] = distanceComponents[0];
errComponent[1] = distanceComponents[1];
result = 0;
break;
//}
case 1: // vertical
case 2: // horizontal
*errptr = sqrt(rectDistSquared(num));
errComponent[0] = *errptr;
errComponent[1] = 0.0;
result = 0;
break;
default:// t+ controls = lines = sets of two control point pairs
*errptr = 0.0; // in case there is no second pair
errComponent[0] = 0.0;
errComponent[1] = 0.0;
result = 1;
for(j=0; j<g->numPts; j++){
if(j!=num && g->cpt[num].type == g->cpt[j].type){
*errptr = sqrt(distsqLine(num,j));
// errComponent[0] = *errptr;
// errComponent[1] = 0.0;
errComponent[0] = distanceComponents[0];
errComponent[1] = distanceComponents[1];
result = 0;
break;
}
}
break;
}
return result;
}
/// This distSquared is a convenience function, to be passed into
/// WriteResults in the usual fashion, to avoid having to change
/// other codes that call WriteResults. It replaces the old distSquared,
/// which has been renamed rectDistSquared and is now used only
/// internally by EvaluateControlPointErrorAndComponents.
double distSquared (int num ) {
double result;
double junk[2];
EvaluateControlPointErrorAndComponents (num, &result, junk);
return result*result;
}
/// Function fcnPano calculates a vector of control points errors,
/// for use during optimization. See lmdif.c and optimize.c for
/// a description of its arguments. The helper functions that appear here
/// allow to control the new capability, while preserving also the
/// old calling sequences.
int fcnPanoNperCP = 1; // number of functions per control point, 1 or 2
void setFcnPanoNperCP (int i) {
fcnPanoNperCP = i;
}
int getFcnPanoNperCP() {
return fcnPanoNperCP;
}
void setFcnPanoDoNotInitAvgFov() { // must be called after iflag = -100 call to fcnPano
needInitialAvgFov = 0;
}
void forceFcnPanoReinitAvgFov() { // applies to next call to fcnPano
needInitialAvgFov = 1;
}
int fcnPano(int m, int n, double x[], double fvec[], int *iflag)
{
int i;
static int numIt;
double result;
int iresult;
double junk;
double junk2[2];
if( *iflag == -100 ){ // reset
numIt = 0;
needInitialAvgFov = 1;
infoDlg ( _initProgress, "Optimizing Variables" );
#if ADJUST_LOGGING_ENABLED
if ((adjustLogFile = fopen(ADJUST_LOG_FILENAME,"a")) <= 0) {
PrintError("Cannot Open Log File");
adjustLogFile = 0;
}
#endif
return 0;
}
if( *iflag == -99 ){ //
infoDlg ( _disposeProgress, "" );
if (adjustLogFile != 0) {
result = 0.0;
for( i=0; i < m; i++)
{
result += fvec[i]*fvec[i] ;
}
result = sqrt( result/ (double)m ) * sqrt((double)fcnPanoNperCP); // to approximate total distance vs dx, dy
fprintf(adjustLogFile,"At iflag=-99 (dispose), NperCP=%d, m=%d, n=%d, err = %g, x= \n",
fcnPanoNperCP,m,n,result);
for (i=0; i<n; i++) {
fprintf(adjustLogFile,"\t%20.10g",x[i]);
}
fprintf(adjustLogFile,"\n fvec = \n");
for (i=0; i<m; i++) {
fprintf(adjustLogFile,"\t%20.10g",fvec[i]);
if (((i+1) % fcnPanoNperCP) == 0) fprintf(adjustLogFile,"\n");
}
fprintf(adjustLogFile,"\n");
fclose(adjustLogFile);
}
return 0;
}
if( *iflag == 0 )
{
char message[256];
result = 0.0;
for( i=0; i < m; i++)
{
result += fvec[i]*fvec[i] ;
}
result = sqrt( result/ (double)m ) * sqrt((double)fcnPanoNperCP); // to approximate total distance vs dx, dy
sprintf( message,"Strategy %d\nAverage (rms) distance between Controlpoints \nafter %d iteration(s): %25.15g units", getFcnPanoNperCP(), numIt,result);//average);
numIt += 1; // 10;
if( !infoDlg ( _setProgress,message ) )
*iflag = -1;
if (adjustLogFile != 0) {
fprintf(adjustLogFile,"At iteration %d, iflag=0 (print), NperCP=%d, m=%d, n=%d, err = %g, x= \n",
numIt,fcnPanoNperCP,m,n,result);
for (i=0; i<n; i++) {
fprintf(adjustLogFile,"\t%20.10g",x[i]);
}
fprintf(adjustLogFile,"\n fvec = \n");
for (i=0; i<m; i++) {
fprintf(adjustLogFile,"\t%20.10g",fvec[i]);
if (((i+1) % fcnPanoNperCP) == 0) fprintf(adjustLogFile,"\n");
}
fprintf(adjustLogFile,"\n");
fflush(adjustLogFile);
}
return 0;
}
// Set Parameters
SetAlignParams( x ) ;
if (needInitialAvgFov) {
initialAvgFov = avgfovFromSAP;
needInitialAvgFov = 0;
if (adjustLogFile != 0) {
fprintf(adjustLogFile,"setting initialAvgFov = %g\n",initialAvgFov);
fflush(adjustLogFile);
}
}
if (adjustLogFile != 0) {
fprintf(adjustLogFile,"entering fcnPano, m=%d, n=%d, initialAvgFov=%g, avgfovFromSAP=%g, x = \n",
m,n, initialAvgFov,avgfovFromSAP);
for (i=0; i<n; i++) {
fprintf(adjustLogFile,"\t%20.10g",x[i]);
}
fprintf(adjustLogFile,"\n");
fflush(adjustLogFile);
}
// Calculate distances
iresult = 0;
for( i=0; i < g->numPts; i++){
if (fcnPanoNperCP == 1) {
EvaluateControlPointErrorAndComponents ( i, &fvec[iresult], &junk2[0]);
} else {
EvaluateControlPointErrorAndComponents ( i, &junk, &fvec[iresult]);
}
// Field-of-view stabilization. Applying here means that the
// errors seen by the optimizer may be different from those finally
// reported, by the same factor for all errors. This introduces
// the possibility of confusion for people who are paying really
// close attention to the optimizer's periodic output versus the
// final result. However, it seems like the right thing to do
// because then the final reported errors will correspond to the
// user's settings for pano size, total fov etc.
if ((initialAvgFov / avgfovFromSAP) > 1.0) {
fvec[iresult] *= initialAvgFov / avgfovFromSAP;
}
iresult += 1;
if (fcnPanoNperCP == 2) {
if ((initialAvgFov / avgfovFromSAP) > 1.0) {
fvec[iresult] *= initialAvgFov / avgfovFromSAP;
}
iresult += 1;
}
}
// If not enough control points are provided, then fill out
// the function vector with copies of the average error
// for the actual control points.
result = 0.0;
for (i=0; i < iresult; i++) {
result += fvec[i]*fvec[i];
}
result = sqrt(result/(double)iresult);
for (i=iresult; i < m; i++) {
fvec[i] = result;
}
if (adjustLogFile != 0) {
result *= sqrt((double)fcnPanoNperCP);
fprintf(adjustLogFile,"leaving fcnPano, m=%d, n=%d, err=%g, fvec = \n",m,n,result);
for (i=0; i<m; i++) {
fprintf(adjustLogFile,"\t%20.10g",fvec[i]);
if (((i+1) % fcnPanoNperCP) == 0) fprintf(adjustLogFile,"\n");
}
fprintf(adjustLogFile,"\n");
fflush(adjustLogFile);
}
return 0;
}
// Find Colour correcting polynomial matching the overlap of src and buf
// using least square fit.
// Each RGB-Channel is fitted using the relation
// buf = coeff[0] * src + coeff[1]
#if 1
void GetColCoeff( Image *src, Image *buf, double ColCoeff[3][2] ){
register int x,y,c1,c2,i, numPts;
double xy[3], xi[3], xi2[3], yi[3], xav[3], yav[3];
register unsigned char *source, *buff;
int BitsPerChannel,bpp;
GetBitsPerChannel( src, BitsPerChannel );
bpp = src->bitsPerPixel/8;
source = *(src->data);
buff = *(buf->data);
for(i=0;i<3;i++){
xy[i] = xi[i] = xi2[i] = yi[i] = 0.0;
}
numPts = 0;
if( BitsPerChannel == 8 ){
for( y=2; y<src->height-2; y++){
c1 = y * src->bytesPerLine;
for( x=2; x<src->width-2; x++){
c2 = c1 + x*bpp;
if( source[c2] != 0 && buff[c2] != 0 ){ // && // In overlap region?
//(source[c2] != UCHAR_MAX || buff[c2] != UCHAR_MAX)){ // above seam?
if( pt_average( source+c2, src->bytesPerLine, xav, 1 ) &&
pt_average( buff+c2, src->bytesPerLine, yav, 1 ) ){
numPts++;
for( i=0; i<3; i++){
xi[i] += xav[i];
yi[i] += yav[i];
xi2[i] += xav[i]*xav[i];
xy[i] += xav[i]*yav[i];
}
}
}
}
}
}else{//16
for( y=1; y<src->height-1; y++){
c1 = y * src->bytesPerLine;
for( x=1; x<src->width-1; x++){
c2 = c1 + x*bpp;
if( *((USHORT*)(source + c2)) != 0 && *((USHORT*)(buff + c2)) != 0 ) { //&& // In overlap region?
//( *((USHORT*)(source + c2)) != USHRT_MAX || *((USHORT*)(buff + c2)) != USHRT_MAX ) ){ // above seam?
if( pt_average( source + c2, src->bytesPerLine, xav, 2 ) &&
pt_average( buff + c2, src->bytesPerLine, yav, 2 )){
numPts++;
for( i=0; i<3; i++){
xi[i] += xav[i];
yi[i] += yav[i];
xi2[i] += xav[i]*xav[i];
xy[i] += xav[i]*yav[i];
}
}
}
}
}
}
if( numPts > 0 ){
for( i=0; i<3; i++){
ColCoeff[i][0] = ( numPts * xy[i] - xi[i] * yi[i] ) / ( numPts * xi2[i] - xi[i]*xi[i] );
ColCoeff[i][1] = ( xi2[i] * yi[i] - xy[i] * xi[i] ) / ( numPts * xi2[i] - xi[i]*xi[i] );
}
}else{
for( i=0; i<3; i++){
ColCoeff[i][0] = 1.0;
ColCoeff[i][1] = 0.0;
}
}
}
#endif
// Average 9 pixels
int pt_average( UCHAR* pixel, int BytesPerLine, double rgb[3], int bytesPerChannel ){
int x, y, i;
UCHAR *px;
double sum = 1.0 + 4 * 0.5 + 8 * 0.2 + 8 * 0.1 ;//2.6;
#if 0
double bl[3][3] = {{ 0.1, 0.3, 0.1}, // Blurr overlap using this matrix
{ 0.3, 1.0, 0.3},
{ 0.1, 0.3, 0.1}};
#endif
double bl[5][5] = {{ 0.0, 0.1, 0.2, 0.1, 0.0},
{ 0.1, 0.2, 0.5, 0.2, 0.1},
{ 0.2, 0.5, 1.0, 0.5, 0.2},
{ 0.1, 0.2, 0.5, 0.2, 0.1},
{ 0.0, 0.1, 0.2, 0.1, 0.0}};
rgb[0] = rgb[1] = rgb[2] = 0.0;
if( bytesPerChannel != 1 ) return -1;
for(y=0; y<5; y++){
for(x=0; x<5; x++){
px = pixel + (y-2)*BytesPerLine + x-2;
if( *px == 0 ) return 0;
rgb[0] += *(++px) * bl[y][x];
rgb[1] += *(++px) * bl[y][x];
rgb[2] += *(++px) * bl[y][x];
}
}
for( i=0; i<3; i++) rgb[i]/=sum;
return 0;
}
#if 0
// Backup
// Find Colour correcting polynomial matching the overlap of src and buf
// using least square fit.
// Each RGB-Channel is fitted using the relation
// buf = coeff[0] * src + coeff[1]
void GetColCoeff( Image *src, Image *buf, double ColCoeff[3][2] )
{
register int x,y,c1,c2,i, numPts;
double xy[3], xi[3], xi2[3], yi[3];
register unsigned char *source, *buff;
int BitsPerChannel,bpp;
GetBitsPerChannel( src, BitsPerChannel );
bpp = src->bitsPerPixel/8;
source = *(src->data);
buff = *(buf->data);
for(i=0;i<3;i++)
{
xy[i] = xi[i] = xi2[i] = yi[i] = 0.0;
}
numPts = 0;
if( BitsPerChannel == 8 )
{
for( y=0; y<src->height; y++)
{
c1 = y * src->bytesPerLine;
for( x=0; x<src->width; x++)
{
c2 = c1 + x*bpp;
if( source[c2] != 0 && buff[c2] != 0 ) // In overlap region?
{
numPts++;
for( i=0; i<3; i++)
{
c2++;
xi[i] += (double)source[c2];
yi[i] += (double)buff[c2];
xi2[i] += ((double)source[c2])*((double)source[c2]);
xy[i] += ((double)source[c2])*((double)buff[c2]);
}
}
}
}
}
else // 16
{
for( y=0; y<src->height; y++)
{
c1 = y * src->bytesPerLine;
for( x=0; x<src->width; x++)
{
c2 = c1 + x*bpp;
if( *((USHORT*)(source + c2)) != 0 && *((USHORT*)(buff + c2)) != 0 ) // In overlap region?
{
numPts++;
for( i=0; i<3; i++)
{
c2++;
xi[i] += (double) *((USHORT*)(source + c2));
yi[i] += (double) *((USHORT*)(buff + c2));
xi2[i] += ((double) *((USHORT*)(source + c2)))*((double) *((USHORT*)(source + c2)));
xy[i] += ((double) *((USHORT*)(source + c2)))*((double) *((USHORT*)(buff + c2)));
}
}
}
}
}
if( numPts > 0 )
{
for( i=0; i<3; i++)
{
ColCoeff[i][0] = ( numPts * xy[i] - xi[i] * yi[i] ) / ( numPts * xi2[i] - xi[i]*xi[i] );
ColCoeff[i][1] = ( xi2[i] * yi[i] - xy[i] * xi[i] ) / ( numPts * xi2[i] - xi[i]*xi[i] );
}
}
else
{
for( i=0; i<3; i++)
{
ColCoeff[i][0] = 1.0;
ColCoeff[i][1] = 0.0;
}
}
}
#endif
// Colourcorrect the image im using polynomial coefficients ColCoeff
// Each RGB-Channel is corrected using the relation
// new = coeff[0] * old + coeff[1]
void ColCorrect( Image *im, double ColCoeff[3][2] )
{
register int x,y, c1, c2, i;
register unsigned char* data;
register double result;
int bpp, BitsPerChannel;
GetBitsPerChannel( im, BitsPerChannel );
bpp = im->bitsPerPixel/8;
data = *(im->data);
if( BitsPerChannel == 8 )
{
for( y=0; y<im->height; y++)
{
c1 = y * im->bytesPerLine;
for( x=0; x<im->width; x++ )
{
c2 = c1 + x * bpp;
if( data[ c2 ] != 0 ) // Alpha channel set
{
for( i=0; i<3; i++)
{
c2++;
result = ColCoeff[i][0] * data[ c2 ] + ColCoeff[i][1];
DBL_TO_UC( data[ c2 ], result );
}
}
}
}
}
else // 16
{
for( y=0; y<im->height; y++)
{
c1 = y * im->bytesPerLine;
for( x=0; x<im->width; x++ )
{
c2 = c1 + x * bpp;
if( *((USHORT*)(data + c2 )) != 0 ) // Alpha channel set
{
for( i=0; i<3; i++)
{
c2++;
result = ColCoeff[i][0] * *((USHORT*)(data + c2 )) + ColCoeff[i][1];
DBL_TO_US( *((USHORT*)(data + c2 )) , result );
}
}
}
}
}
}
void SetAdjustDefaults( aPrefs *prefs )
{
prefs->magic = 50; // File validity check, must be 50
prefs->mode = _insert; //
SetImageDefaults( &(prefs->im) );
SetImageDefaults( &(prefs->pano) );
SetStitchDefaults( &(prefs->sBuf) );
memset( &(prefs->scriptFile), 0, sizeof( fullPath ) );
prefs->nt = 0;
prefs->ts = NULL;
prefs->td = NULL;
prefs->interpolator = _poly3;
prefs->gamma = 1.0;
}
void DisposeAlignInfo( struct AlignInfo *g )
{
if(g->im != NULL) free(g->im);
if(g->opt!= NULL) free(g->opt);
if(g->cpt!= NULL) free(g->cpt);
if(g->t != NULL) free(g->t);
if(g->cim != NULL) free(g->cim);
}
// Set global preferences structures using LM-params
int SetAlignParams( double *x )
{
// Set Parameters
int i,j,k;
double sumfov = 0.0;
j = 0;
for( i=0; i<g->numIm; i++ ){
if( (k = g->opt[i].yaw) > 0 ){
if( k == 1 ){ g->im[i].yaw = x[j++]; NORM_ANGLE( g->im[i].yaw );
}else{ g->im[i].yaw = g->im[k-2].yaw; }
}
if( (k = g->opt[i].pitch) > 0 ){
if( k == 1 ){ g->im[i].pitch = x[j++]; NORM_ANGLE( g->im[i].pitch );
}else{ g->im[i].pitch = g->im[k-2].pitch; }
}
if( (k = g->opt[i].roll) > 0 ){
if( k == 1 ){ g->im[i].roll = x[j++]; NORM_ANGLE( g->im[i].roll );
}else{ g->im[i].roll = g->im[k-2].roll; }
}
if( (k = g->opt[i].hfov) > 0 ){
if( k == 1 ){
g->im[i].hfov = x[j++];
if( g->im[i].hfov < 0.0 )
g->im[i].hfov = - g->im[i].hfov;
}else{ g->im[i].hfov = g->im[k-2].hfov; }
}
sumfov += g->im[i].hfov;
if( (k = g->opt[i].a) > 0 ){
if( k == 1 ){ g->im[i].cP.radial_params[0][3] = x[j++] / C_FACTOR;
}else{ g->im[i].cP.radial_params[0][3] = g->im[k-2].cP.radial_params[0][3];}
}
if( (k = g->opt[i].b) > 0 ){
if( k == 1 ){ g->im[i].cP.radial_params[0][2] = x[j++] / C_FACTOR;
}else{ g->im[i].cP.radial_params[0][2] = g->im[k-2].cP.radial_params[0][2];}
}
if( (k = g->opt[i].c) > 0 ){
if( k == 1 ){ g->im[i].cP.radial_params[0][1] = x[j++] / C_FACTOR;
}else{ g->im[i].cP.radial_params[0][1] = g->im[k-2].cP.radial_params[0][1];}
}
if( (k = g->opt[i].d) > 0 ){
if( k == 1 ){ g->im[i].cP.horizontal_params[0] = x[j++];
}else{ g->im[i].cP.horizontal_params[0] = g->im[k-2].cP.horizontal_params[0];}
}
if( (k = g->opt[i].e) > 0 ){
if( k == 1 ){ g->im[i].cP.vertical_params[0] = x[j++];
}else{ g->im[i].cP.vertical_params[0] = g->im[k-2].cP.vertical_params[0];}
}
if( (k = g->opt[i].shear_x) > 0 ){
if( k == 1 ){ g->im[i].cP.shear_x = x[j++];
}else{ g->im[i].cP.shear_x = g->im[k-2].cP.shear_x;}
}
if( (k = g->opt[i].shear_y) > 0 ){
if( k == 1 ){ g->im[i].cP.shear_y = x[j++];
}else{ g->im[i].cP.shear_y = g->im[k-2].cP.shear_y;}
}
g->im[i].cP.radial_params[0][0] = 1.0 - ( g->im[i].cP.radial_params[0][3]
+ g->im[i].cP.radial_params[0][2]
+ g->im[i].cP.radial_params[0][1] ) ;
}
avgfovFromSAP = sumfov / g->numIm;
if( j != g->numParam )
return -1;
else
return 0;
}
// Set LM params using global preferences structure
// Change to cover range 0....1 (roughly)
int SetLMParams( double *x )
{
int i,j;
j=0; // Counter for optimization parameters
for( i=0; i<g->numIm; i++ ){
if(g->opt[i].yaw == 1) // optimize alpha? 0-no 1-yes
x[j++] = g->im[i].yaw;
if(g->opt[i].pitch == 1) // optimize pitch? 0-no 1-yes
x[j++] = g->im[i].pitch;
if(g->opt[i].roll == 1) // optimize gamma? 0-no 1-yes
x[j++] = g->im[i].roll ;
if(g->opt[i].hfov == 1) // optimize hfov? 0-no 1-yes
x[j++] = g->im[i].hfov ;
if(g->opt[i].a == 1) // optimize a? 0-no 1-yes
x[j++] = g->im[i].cP.radial_params[0][3] * C_FACTOR;
if(g->opt[i].b == 1) // optimize b? 0-no 1-yes
x[j++] = g->im[i].cP.radial_params[0][2] * C_FACTOR;
if(g->opt[i].c == 1) // optimize c? 0-no 1-yes
x[j++] = g->im[i].cP.radial_params[0][1] * C_FACTOR;
if(g->opt[i].d == 1) // optimize d? 0-no 1-yes
x[j++] = g->im[i].cP.horizontal_params[0] ;
if(g->opt[i].e == 1) // optimize e? 0-no 1-yes
x[j++] = g->im[i].cP.vertical_params[0] ;
if(g->opt[i].shear_x == 1) // optimize shear_x? 0-no 1-yes
x[j++] = g->im[i].cP.shear_x ;
if(g->opt[i].shear_y == 1) // optimize shear_y? 0-no 1-yes
x[j++] = g->im[i].cP.shear_y ;
}
if( j != g->numParam )
return -1;
else
return 0;
}
#define DX 3
#define DY 14
// Read Control Point Position from flag pasted into image
void getControlPoints( Image *im, controlPoint *cp )
{
int y, x, cy,cx, bpp, r,g,b,n, nim=0, k,i,np;
register unsigned char *p,*ch;
p = *(im->data);
bpp = im->bitsPerPixel/8;
if( bpp == 4 )
{
r = 1; g = 2; b = 3;
}
else if( bpp == 3 )
{
r = 0; g = 1; b = 2;
}
else
{
PrintError("Can't read ControlPoints from images with %d Bytes per Pixel", bpp);
return;
}
np = 0;
for(y=0; y<im->height; y++)
{
cy = y * im->bytesPerLine;
for(x=0; x<im->width; x++)
{
cx = cy + bpp * x;
if( p[ cx + r ] == 0 && p[ cx + g ] == 255 && p[ cx + b ] == 0 &&
p[ cx + bpp + r ] == 255 && p[ cx + bpp + g ] == 0 && p[ cx + bpp + b ] == 0 &&
p[ cx + 2*bpp + r ] == 0 && p[ cx + 2*bpp + g ] == 0 && p[ cx + 2*bpp + b ] == 255 &&
p[ cx - bpp + r ] == 0 && p[ cx - bpp + g ] == 0 && p[ cx - bpp + b ] == 0 )
{
if(p[cx + 3*bpp + r ] == 0 && p[ cx + 3*bpp + g ] == 255 && p[ cx + 3*bpp + b ] == 255)
{ // Control Point
ch = &(p[cx + 4*bpp + r ]);
n = 0;
while( ch[0] == 255 && ch[1] == 0 && ch[2] == 0 )
{
n++;
ch += bpp;
}
if( n >= 0 )
{
k = 0;
if( cp[n].num[0] != -1 )
k = 1;
cp[n].x[k] = x + DX;
cp[n].y[k] = y + DY;
np++;
}
}
else if(p[cx+3*bpp +r] == 255 && p[ cx + 3*bpp + g ] == 255 && p[ cx + 3*bpp + b ] == 0)
{ // Image number
ch = &(p[cx + 4*bpp + r ]);
n = 0;
while( ch[0] == 255 && ch[1] == 0 && ch[2] == 0 )
{
n++;
ch += bpp;
}
if( n >= 0 )
{
nim = n;
}
}
}
}
}
k = 0;
if( cp[0].num[0] != -1 )
k = 1;
for(i=0; i<np; i++)
cp[i].num[k] = nim;
}
// Write Control Point coordinates into script
void writeControlPoints( controlPoint *cp,char* cdesc )
{
int i;
char line[80];
*cdesc = 0;
for(i=0; i<NUMPTS && cp[i].num[0] != -1; i++)
{
//sprintf( line, "c n%d N%d x%d y%d X%d Y%d\n", cp[i].num[0], cp[i].num[1],
sprintf( line, "c n%d N%d x%lf y%lf X%lf Y%lf\n", cp[i].num[0], cp[i].num[1],
cp[i].x[0], cp[i].y[0],
cp[i].x[1], cp[i].y[1]);
strcat( cdesc, line );
}
}
void SetStitchDefaults( struct stitchBuffer *sBuf)
{
*sBuf->srcName = 0;
*sBuf->destName = 0;
sBuf->feather = 10;
sBuf->colcorrect = 0;
sBuf->seam = _middle;
}
void SetOptDefaults( optVars *opt )
{
opt->hfov = opt->yaw = opt->pitch = opt->roll = opt->a = opt->b = opt->c = opt->d = opt->e = opt->shear_x = opt->shear_y = 0;
}
void DoColorCorrection( Image *im1, Image *im2, int mode )
{
double ColCoeff [3][2];
int i;
switch( mode )
{
case 0:
break; // no correction
case 1: // Correct im1
GetColCoeff( im1, im2, ColCoeff );
ColCorrect( im1, ColCoeff );
break;
case 2: // Correct im2
GetColCoeff( im1, im2, ColCoeff );
// Invert coefficients
for( i = 0; i<3; i++)
{
ColCoeff[i][1] = - ColCoeff[i][1] / ColCoeff[i][0];
ColCoeff[i][0] = 1.0/ColCoeff[i][0];
}
ColCorrect( im2, ColCoeff );
break;
case 3: // Correct both halfs
GetColCoeff( im1, im2, ColCoeff );
for(i = 0; i<3; i++)
{
ColCoeff[i][1] = ColCoeff[i][1] / 2.0 ;
ColCoeff[i][0] = (ColCoeff[i][0] + 1.0 ) / 2.0;
}
ColCorrect( im1, ColCoeff );
for(i = 0; i<3; i++)
{
ColCoeff[i][1] = - ColCoeff[i][1] / ColCoeff[i][0];
ColCoeff[i][0] = 1.0 / ColCoeff[i][0];
}
ColCorrect( im2, ColCoeff );
break;
default: break;
} // switch
}
// Do some checks on Optinfo structure and reject if obviously nonsense
int CheckParams( AlignInfo *g )
{
int i;
int err = -1;
char *errmsg[] = {
"No Parameters to optimize",
"No input images",
"No Feature Points",
"Image width must be positive",
"Image height must be positive",
"Field of View must be positive",
"Field of View must be smaller than 180 degrees in rectilinear Images",
"Unsupported Image Format (must be 0,1,2,3 or 4)",
"Panorama Width must be positive",
"Panorama Height must be positive",
"Field of View must be smaller than 180 degrees in rectilinear Panos",
"Unsupported Panorama Format",
"Control Point Coordinates must be positive",
"Invalid Image Number in Control Point Descriptions"
};
if( g->numParam == 0 ) err = 0;
if( g->numIm == 0 ) err = 1;
if( g->numPts == 0 ) err = 2;
// Check images
for( i=0; i<g->numIm; i++)
{
if( g->im[i].width <= 0 ) err = 3;
if( g->im[i].height <= 0 ) err = 4;
if( g->im[i].hfov <= 0.0 ) err = 5;
if( g->im[i].format == _rectilinear && g->im[i].hfov >= 180.0 ) err = 6;
if( g->im[i].format != _rectilinear && g->im[i].format != _panorama &&
g->im[i].format != _fisheye_circ && g->im[i].format != _fisheye_ff && g->im[i].format != _equirectangular)
err = 7;
}
// Check Panorama specs
if( g->pano.hfov <= 0.0 ) err = 5;
if( g->pano.width <=0 ) err = 8;
if( g->pano.height <=0 ) err = 9;
if( g->pano.format == _rectilinear && g->pano.hfov >= 180.0 ) err = 10;
if( g->pano.format != _rectilinear && g->pano.format != _panorama &&
g->pano.format != _equirectangular ) err = 11;
// Check Control Points
for( i=0; i<g->numPts; i++)
{
// Joost: cp coordinates can be possible, no problem!
// if( g->cpt[i].x[0] < 0 || g->cpt[i].y[0] < 0 || g->cpt[i].x[1] < 0 || g->cpt[i].y[1] < 0 )
// err = 12;
if( g->cpt[i].num[0] < 0 || g->cpt[i].num[0] >= g->numIm ||
g->cpt[i].num[1] < 0 || g->cpt[i].num[1] >= g->numIm ) err = 13;
}
if( err != -1 )
{
PrintError( errmsg[ err ] );
return -1;
}
else
return 0;
}
static int CheckMakeParams( aPrefs *aP)
{
if( (aP->pano.format == _rectilinear) && (aP->pano.hfov >= 180.0) )
{
PrintError("Rectilinear Panorama can not have 180 or more degrees field of view.");
return -1;
}
if( (aP->im.format == _rectilinear) && (aP->im.hfov >= 180.0) )
{
PrintError("Rectilinear Image can not have 180 or more degrees field of view.");
return -1;
}
if( (aP->mode & 7) == _insert ){
if( (aP->im.format == _fisheye_circ || aP->im.format == _fisheye_ff) &&
(aP->im.hfov > MAX_FISHEYE_FOV) ){
PrintError("Fisheye lens processing limited to fov <= %lg", MAX_FISHEYE_FOV);
return -1;
}
}
return 0;
}
// return 0, if overlap exists, else -1
/*
static int GetOverlapRect( PTRect *OvRect, PTRect *r1, PTRect *r2 )
{
OvRect->left = max( r1->left, r2->left );
OvRect->right = min( r1->right, r2->right );
OvRect->top = max( r1->top, r2->top );
OvRect->bottom = min( r1->bottom, r2->bottom );
if( OvRect->right > OvRect->left && OvRect->bottom > OvRect->top )
return 0;
else
return -1;
}
*/
void SetGlobalPtr( AlignInfo *p )
{
g = p;
}
AlignInfo* GetGlobalPtr()
{
return g;
}
void GetControlPointCoordinates(int i, double *x, double *y, AlignInfo *gl )
{
double w2, h2;
int j, n[2];
struct MakeParams mp;
struct fDesc stack[15];
n[0] = gl->cpt[i].num[0];
n[1] = gl->cpt[i].num[1];
// Calculate coordinates x/y in panorama
for(j=0; j<2; j++)
{
SetInvMakeParams( stack, &mp, &gl->im[ n[j] ], &gl->pano, 0 );
h2 = (double)gl->im[ n[j] ].height / 2.0 - 0.5;
w2 = (double)gl->im[ n[j] ].width / 2.0 - 0.5;
execute_stack_new( (double)gl->cpt[i].x[j] - w2, // cartesian x-coordinate src
(double)gl->cpt[i].y[j] - h2, // cartesian y-coordinate src
&x[j], &y[j], stack);
h2 = (double)gl->pano.height / 2.0 - 0.5;
w2 = (double)gl->pano.width / 2.0 - 0.5;
x[j] += w2;
y[j] += h2;
}
}
int AddEdgePoints( AlignInfo *gl )
{
void *tmp;
tmp = realloc( gl->cpt, (gl->numPts+4) * sizeof( controlPoint ) );
if( tmp == NULL ) return -1;
gl->numPts+=4; gl->cpt = (controlPoint*)tmp;
gl->cpt[gl->numPts-4].num[0] = 0;
gl->cpt[gl->numPts-4].num[1] = 1;
gl->cpt[gl->numPts-4].x[0] = gl->cpt[gl->numPts-4].x[1] = -9.0 * (double)gl->pano.width;
gl->cpt[gl->numPts-4].y[0] = gl->cpt[gl->numPts-4].y[1] = -9.0 * (double)gl->pano.height;
gl->cpt[gl->numPts-3].num[0] = 0;
gl->cpt[gl->numPts-3].num[1] = 1;
gl->cpt[gl->numPts-3].x[0] = gl->cpt[gl->numPts-3].x[1] = 10.0 * (double)gl->pano.width;
gl->cpt[gl->numPts-3].y[0] = gl->cpt[gl->numPts-3].y[1] = -9.0 * (double)gl->pano.height;
gl->cpt[gl->numPts-2].num[0] = 0;
gl->cpt[gl->numPts-2].num[1] = 1;
gl->cpt[gl->numPts-2].x[0] = gl->cpt[gl->numPts-2].x[1] = -9.0 * (double)gl->pano.width;
gl->cpt[gl->numPts-2].y[0] = gl->cpt[gl->numPts-2].y[1] = 10.0 * (double)gl->pano.height;
gl->cpt[gl->numPts-1].num[0] = 0;
gl->cpt[gl->numPts-1].num[1] = 1;
gl->cpt[gl->numPts-1].x[0] = gl->cpt[gl->numPts-1].x[1] = 10.0 * (double)gl->pano.width;
gl->cpt[gl->numPts-1].y[0] = gl->cpt[gl->numPts-1].y[1] = 10.0 * (double)gl->pano.height;
return 0;
}
|