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 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkMath.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================
Copyright 2011 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
license for use of this work by or on behalf of the
U.S. Government. Redistribution and use in source and binary forms, with
or without modification, are permitted provided that this Notice and any
statement of authorship are reproduced on all copies.
Contact: pppebay@sandia.gov,dcthomp@sandia.gov,
=========================================================================*/
#include "vtkMath.h"
#include "vtkBoxMuellerRandomSequence.h"
#include "vtkDataArray.h"
#include "vtkDebugLeaks.h"
#include "vtkMinimalStandardRandomSequence.h"
#include "vtkObjectFactory.h"
#include "vtkTypeTraits.h"
#include <cassert>
#include <cmath>
#include <limits>
#include <vector>
vtkStandardNewMacro(vtkMath);
class vtkMathInternal : public vtkObjectBase
{
public:
vtkBaseTypeMacro(vtkMathInternal, vtkObjectBase);
static vtkMathInternal* New()
{
// Can't use object factory macros, since they cast to vtkObject*.
vtkMathInternal *ret = new vtkMathInternal;
ret->InitializeObjectBase();
return ret;
}
vtkMinimalStandardRandomSequence *Uniform;
vtkBoxMuellerRandomSequence *Gaussian;
std::vector<vtkTypeInt64> MemoizeFactorial;
private:
vtkMathInternal();
~vtkMathInternal() VTK_OVERRIDE;
};
vtkMathInternal::vtkMathInternal()
{
this->Gaussian=vtkBoxMuellerRandomSequence::New();
// This line assumes the current vtkBoxMuellerRandomSequence behavior:
// an initial vtkMinimalStandardRandomSequence is created.
this->Uniform=static_cast<vtkMinimalStandardRandomSequence *>(
this->Gaussian->GetUniformSequence());
this->Uniform->SetSeedOnly(1177); // One authors home address
this->MemoizeFactorial.resize(21, 0);
}
vtkMathInternal::~vtkMathInternal()
{
this->Gaussian->Delete();
}
vtkSmartPointer<vtkMathInternal> vtkMath::Internal = vtkSmartPointer<vtkMathInternal>::New();
#ifdef VTK_HAS_STD_NUMERIC_LIMITS
#include <limits>
#else // VTK_HAS_STD_NUMERIC_LIMITS
// Avoid aliasing optimization problems by using a union:
union vtkIEEE754Bits {
vtkTypeUInt64 i64v;
double d;
};
#if defined(__BORLANDC__)
// Borland C++ union initializers are broken.
// Use an otherwise-discouraged aliasing trick:
static vtkTypeUInt64 vtkMathNanBits = 0x7FF8000000000000i64;
static vtkTypeUInt64 vtkMathInfBits = 0x7FF0000000000000i64;
static vtkTypeUInt64 vtkMathNegInfBits = 0xFFF0000000000000i64;
#else
static union vtkIEEE754Bits vtkMathNanBits = { 0x7FF8000000000000LL };
static union vtkIEEE754Bits vtkMathInfBits = { 0x7FF0000000000000LL };
static union vtkIEEE754Bits vtkMathNegInfBits = { 0xFFF0000000000000LL };
#endif
#endif //VTK_HAS_STD_NUMERIC_LIMITS
#if defined(VTK_NON_FINITE_CAUSES_EXCEPTIONS)
#if defined(__BORLANDC__)
const vtkTypeInt64 vtkMathDoubleExponent = 0x7FF0000000000000i64;
const vtkTypeInt64 vtkMathDoubleMantissa = 0x000FFFFFFFFFFFFFi64;
#else
const vtkTypeInt64 vtkMathDoubleExponent = 0x7FF0000000000000LL;
const vtkTypeInt64 vtkMathDoubleMantissa = 0x000FFFFFFFFFFFFFLL;
#endif
#endif
//
// Some useful macros and functions
//
//----------------------------------------------------------------------------
// Return the lowest value "i" for which 2^i >= x
int vtkMath::CeilLog2(vtkTypeUInt64 x)
{
static const vtkTypeUInt64 t[6] = {
0xffffffff00000000ull,
0x00000000ffff0000ull,
0x000000000000ff00ull,
0x00000000000000f0ull,
0x000000000000000cull,
0x0000000000000002ull
};
int j = 32;
// if x is not a power of two, add 1 to final answer
// (this is the "ceil" part of the computation)
int y = (((x & (x - 1)) == 0) ? 0 : 1);
// loop through the table (this unrolls nicely)
for (int i = 0; i < 6; i++)
{
int k = (((x & t[i]) == 0) ? 0 : j);
y += k;
x >>= k;
j >>= 1;
}
return y;
}
//----------------------------------------------------------------------------
// Generate pseudo-random numbers distributed according to the uniform
// distribution between 0.0 and 1.0.
// This is used to provide portability across different systems.
double vtkMath::Random()
{
vtkMath::Internal->Uniform->Next();
return vtkMath::Internal->Uniform->GetValue();
}
//----------------------------------------------------------------------------
// Initialize seed value. NOTE: Random() has the bad property that
// the first random number returned after RandomSeed() is called
// is proportional to the seed value! To help solve this, call
// RandomSeed() a few times inside seed. This doesn't ruin the
// repeatability of Random().
//
void vtkMath::RandomSeed(int s)
{
vtkMath::Internal->Uniform->SetSeed(s);
}
//----------------------------------------------------------------------------
// Description:
// Return the current seed used by the random number generator.
int vtkMath::GetSeed()
{
return vtkMath::Internal->Uniform->GetSeed();
}
//----------------------------------------------------------------------------
double vtkMath::Random( double min, double max )
{
vtkMath::Internal->Uniform->Next();
return vtkMath::Internal->Uniform->GetRangeValue(min,max);
}
//----------------------------------------------------------------------------
double vtkMath::Gaussian()
{
vtkMath::Internal->Gaussian->Next();
return vtkMath::Internal->Gaussian->GetValue();
}
//----------------------------------------------------------------------------
double vtkMath::Gaussian( double mean, double std )
{
vtkMath::Internal->Gaussian->Next();
return vtkMath::Internal->Gaussian->GetScaledValue(mean,std);
}
//----------------------------------------------------------------------------
vtkTypeInt64 vtkMath::Factorial( int N )
{
if (N > 20)
{
vtkGenericWarningMacro("Factorial(" << N << ") would overflow.");
return vtkTypeTraits<vtkTypeInt64>::Max();
}
if (N == 0)
{
return 1;
}
if (vtkMath::Internal->MemoizeFactorial[N] != 0)
{
return vtkMath::Internal->MemoizeFactorial[N];
}
vtkTypeInt64 r = vtkMath::Factorial(N - 1) * N;
vtkMath::Internal->MemoizeFactorial[N] = r;
return r;
}
//----------------------------------------------------------------------------
// The number of combinations of n objects from a pool of m objects (m>n).
//
vtkTypeInt64 vtkMath::Binomial( int m, int n )
{
double r = 1;
for (int i = 1; i <= n; ++i)
{
r *= static_cast<double>(m - i + 1) / i;
}
return static_cast<vtkTypeInt64>(r);
}
//----------------------------------------------------------------------------
// Start iterating over "m choose n" objects.
// This function returns an array of n integers, each from 0 to m-1.
// These integers represent the n items chosen from the set [0,m[.
//
int* vtkMath::BeginCombination( int m, int n )
{
if ( m < n )
{
return 0;
}
int* r = new int[ n ];
for ( int i=0; i<n; ++i )
{
r[i] = i;
}
return r;
}
//----------------------------------------------------------------------------
// Given \a m, \a n, and a valid \a combination of \a n integers in
// the range [0,m[, this function alters the integers into the next
// combination in a sequence of all combinations of \a n items from
// a pool of \a m.
// If the \a combination is the last item in the sequence on input,
// then \a combination is unaltered and 0 is returned.
// Otherwise, 1 is returned and \a combination is updated.
//
int vtkMath::NextCombination( int m, int n, int* r )
{
int status = 0;
for (int i = n - 1; i >= 0; --i)
{
if (r[i] < m - n + i)
{
int j = r[i] + 1;
while (i < n)
{
r[i++] = j++;
}
status = 1;
break;
}
}
return status;
}
//----------------------------------------------------------------------------
// Free the "iterator" array created by vtkMath::BeginCombination.
//
void vtkMath::FreeCombination( int* r )
{
delete [] r;
}
//----------------------------------------------------------------------------
// Given a unit vector v1, find two other unit vectors v2 and v3 which
// which form an orthonormal set.
template<class T1, class T2, class T3>
inline void vtkMathPerpendiculars(const T1 v1[3], T2 v2[3], T3 v3[3],
double theta)
{
int dv1,dv2,dv3;
double v1sq = v1[0]*v1[0];
double v2sq = v1[1]*v1[1];
double v3sq = v1[2]*v1[2];
double r = sqrt(v1sq + v2sq + v3sq);
// transpose the vector to avoid divide-by-zero error
if (v1sq > v2sq && v1sq > v3sq)
{
dv1 = 0; dv2 = 1; dv3 = 2;
}
else if (v2sq > v3sq)
{
dv1 = 1; dv2 = 2; dv3 = 0;
}
else
{
dv1 = 2; dv2 = 0; dv3 = 1;
}
double a = v1[dv1]/r;
double b = v1[dv2]/r;
double c = v1[dv3]/r;
double tmp = sqrt(a*a+c*c);
if (theta != 0)
{
double sintheta = sin(theta);
double costheta = cos(theta);
if (v2)
{
v2[dv1] = (c*costheta - a*b*sintheta)/tmp;
v2[dv2] = sintheta*tmp;
v2[dv3] = (-a*costheta - b*c*sintheta)/tmp;
}
if (v3)
{
v3[dv1] = (-c*sintheta - a*b*costheta)/tmp;
v3[dv2] = costheta*tmp;
v3[dv3] = (a*sintheta - b*c*costheta)/tmp;
}
}
else
{
if (v2)
{
v2[dv1] = c/tmp;
v2[dv2] = 0;
v2[dv3] = -a/tmp;
}
if (v3)
{
v3[dv1] = -a*b/tmp;
v3[dv2] = tmp;
v3[dv3] = -b*c/tmp;
}
}
}
void vtkMath::Perpendiculars(const double v1[3], double v2[3], double v3[3],
double theta)
{
vtkMathPerpendiculars(v1, v2, v3, theta);
}
void vtkMath::Perpendiculars(const float v1[3], float v2[3], float v3[3],
double theta)
{
vtkMathPerpendiculars(v1, v2, v3, theta);
}
#define VTK_SMALL_NUMBER 1.0e-12
//----------------------------------------------------------------------------
// Solve linear equations Ax = b using Crout's method. Input is square matrix A
// and load vector x. Solution x is written over load vector. The dimension of
// the matrix is specified in size. If error is found, method returns a 0.
int vtkMath::SolveLinearSystem(double **A, double *x, int size)
{
// if we solving something simple, just solve it
//
if (size == 2)
{
double det, y[2];
det = vtkMath::Determinant2x2(A[0][0], A[0][1], A[1][0], A[1][1]);
static const double eps = 256*std::numeric_limits<double>::epsilon();
if (std::fabs(det) < eps)
{
// Unable to solve linear system
return 0;
}
y[0] = (A[1][1]*x[0] - A[0][1]*x[1]) / det;
y[1] = (-A[1][0]*x[0] + A[0][0]*x[1]) / det;
x[0] = y[0];
x[1] = y[1];
return 1;
}
else if (size == 1)
{
if (A[0][0] == 0.0)
{
// Unable to solve linear system
return 0;
}
x[0] /= A[0][0];
return 1;
}
//
// System of equations is not trivial, use Crout's method
//
// Check on allocation of working vectors
//
int *index, scratch[10];
index = ( size < 10 ? scratch : new int[size] );
//
// Factor and solve matrix
//
if ( vtkMath::LUFactorLinearSystem(A, index, size) == 0 )
{
return 0;
}
vtkMath::LUSolveLinearSystem(A,index,x,size);
if (size >= 10 ) delete [] index;
return 1;
}
//----------------------------------------------------------------------------
// Invert input square matrix A into matrix AI. Note that A is modified during
// the inversion. The size variable is the dimension of the matrix. Returns 0
// if inverse not computed.
int vtkMath::InvertMatrix(double **A, double **AI, int size)
{
int *index, iScratch[10];
double *column, dScratch[10];
// Check on allocation of working vectors
//
if ( size <= 10 )
{
index = iScratch;
column = dScratch;
}
else
{
index = new int[size];
column = new double[size];
}
int retVal = vtkMath::InvertMatrix(A, AI, size, index, column);
if ( size > 10 )
{
delete [] index;
delete [] column;
}
return retVal;
}
//----------------------------------------------------------------------------
// Factor linear equations Ax = b using LU decompostion A = LU where L is
// lower triangular matrix and U is upper triangular matrix. Input is
// square matrix A, integer array of pivot indices index[0->n-1], and size
// of square matrix n. Output factorization LU is in matrix A. If error is
// found, method returns 0.
int vtkMath::LUFactorLinearSystem(double **A, int *index, int size)
{
double scratch[10];
double *scale = (size<10 ? scratch : new double[size]);
int i, j, k;
int maxI = 0;
double largest, temp1, temp2, sum;
//
// Loop over rows to get implicit scaling information
//
for ( i = 0; i < size; i++ )
{
for ( largest = 0.0, j = 0; j < size; j++ )
{
if ( (temp2 = fabs(A[i][j])) > largest )
{
largest = temp2;
}
}
if ( largest == 0.0 )
{
vtkGenericWarningMacro(<<"Unable to factor linear system");
return 0;
}
scale[i] = 1.0 / largest;
}
//
// Loop over all columns using Crout's method
//
for ( j = 0; j < size; j++ )
{
for (i = 0; i < j; i++)
{
sum = A[i][j];
for ( k = 0; k < i; k++ )
{
sum -= A[i][k] * A[k][j];
}
A[i][j] = sum;
}
//
// Begin search for largest pivot element
//
for ( largest = 0.0, i = j; i < size; i++ )
{
sum = A[i][j];
for ( k = 0; k < j; k++ )
{
sum -= A[i][k] * A[k][j];
}
A[i][j] = sum;
if ( (temp1 = scale[i]*fabs(sum)) >= largest )
{
largest = temp1;
maxI = i;
}
}
//
// Check for row interchange
//
if ( j != maxI )
{
for ( k = 0; k < size; k++ )
{
temp1 = A[maxI][k];
A[maxI][k] = A[j][k];
A[j][k] = temp1;
}
scale[maxI] = scale[j];
}
//
// Divide by pivot element and perform elimination
//
index[j] = maxI;
if ( fabs(A[j][j]) <= VTK_SMALL_NUMBER )
{
vtkGenericWarningMacro(<<"Unable to factor linear system");
return 0;
}
if ( j != (size-1) )
{
temp1 = 1.0 / A[j][j];
for ( i = j + 1; i < size; i++ )
{
A[i][j] *= temp1;
}
}
}
if (size >= 10 ) delete [] scale;
return 1;
}
//----------------------------------------------------------------------------
// Solve linear equations Ax = b using LU decompostion A = LU where L is
// lower triangular matrix and U is upper triangular matrix. Input is
// factored matrix A=LU, integer array of pivot indices index[0->n-1],
// load vector x[0->n-1], and size of square matrix n. Note that A=LU and
// index[] are generated from method LUFactorLinearSystem). Also, solution
// vector is written directly over input load vector.
void vtkMath::LUSolveLinearSystem(double **A, int *index,
double *x, int size)
{
int i, j, ii, idx;
double sum;
//
// Proceed with forward and backsubstitution for L and U
// matrices. First, forward substitution.
//
for ( ii = -1, i = 0; i < size; i++ )
{
idx = index[i];
sum = x[idx];
x[idx] = x[i];
if ( ii >= 0 )
{
for ( j = ii; j <= (i-1); j++ )
{
sum -= A[i][j]*x[j];
}
}
else if (sum != 0.0)
{
ii = i;
}
x[i] = sum;
}
//
// Now, back substitution
//
for ( i = size-1; i >= 0; i-- )
{
sum = x[i];
for ( j = i + 1; j < size; j++ )
{
sum -= A[i][j]*x[j];
}
x[i] = sum / A[i][i];
}
}
#undef VTK_SMALL_NUMBER
#define VTK_ROTATE(a,i,j,k,l) g=a[i][j];h=a[k][l];a[i][j]=g-s*(h+g*tau);\
a[k][l]=h+s*(g-h*tau)
#define VTK_MAX_ROTATIONS 20
//#undef VTK_MAX_ROTATIONS
//#define VTK_MAX_ROTATIONS 50
// Jacobi iteration for the solution of eigenvectors/eigenvalues of a nxn
// real symmetric matrix. Square nxn matrix a; size of matrix in n;
// output eigenvalues in w; and output eigenvectors in v. Resulting
// eigenvalues/vectors are sorted in decreasing order; eigenvectors are
// normalized.
template<class T>
int vtkJacobiN(T **a, int n, T *w, T **v)
{
int i, j, k, iq, ip, numPos;
T tresh, theta, tau, t, sm, s, h, g, c, tmp;
T bspace[4], zspace[4];
T *b = bspace;
T *z = zspace;
// only allocate memory if the matrix is large
if (n > 4)
{
b = new T[n];
z = new T[n];
}
// initialize
for (ip=0; ip<n; ip++)
{
for (iq=0; iq<n; iq++)
{
v[ip][iq] = 0.0;
}
v[ip][ip] = 1.0;
}
for (ip=0; ip<n; ip++)
{
b[ip] = w[ip] = a[ip][ip];
z[ip] = 0.0;
}
// begin rotation sequence
for (i=0; i<VTK_MAX_ROTATIONS; i++)
{
sm = 0.0;
for (ip=0; ip<n-1; ip++)
{
for (iq=ip+1; iq<n; iq++)
{
sm += fabs(a[ip][iq]);
}
}
if (sm == 0.0)
{
break;
}
if (i < 3) // first 3 sweeps
{
tresh = 0.2*sm/(n*n);
}
else
{
tresh = 0.0;
}
for (ip=0; ip<n-1; ip++)
{
for (iq=ip+1; iq<n; iq++)
{
g = 100.0*fabs(a[ip][iq]);
// after 4 sweeps
if (i > 3 && (fabs(w[ip])+g) == fabs(w[ip])
&& (fabs(w[iq])+g) == fabs(w[iq]))
{
a[ip][iq] = 0.0;
}
else if (fabs(a[ip][iq]) > tresh)
{
h = w[iq] - w[ip];
if ( (fabs(h)+g) == fabs(h))
{
t = (a[ip][iq]) / h;
}
else
{
theta = 0.5*h / (a[ip][iq]);
t = 1.0 / (fabs(theta)+sqrt(1.0+theta*theta));
if (theta < 0.0)
{
t = -t;
}
}
c = 1.0 / sqrt(1+t*t);
s = t*c;
tau = s/(1.0+c);
h = t*a[ip][iq];
z[ip] -= h;
z[iq] += h;
w[ip] -= h;
w[iq] += h;
a[ip][iq]=0.0;
// ip already shifted left by 1 unit
for (j = 0;j <= ip-1;j++)
{
VTK_ROTATE(a,j,ip,j,iq);
}
// ip and iq already shifted left by 1 unit
for (j = ip+1;j <= iq-1;j++)
{
VTK_ROTATE(a,ip,j,j,iq);
}
// iq already shifted left by 1 unit
for (j=iq+1; j<n; j++)
{
VTK_ROTATE(a,ip,j,iq,j);
}
for (j=0; j<n; j++)
{
VTK_ROTATE(v,j,ip,j,iq);
}
}
}
}
for (ip=0; ip<n; ip++)
{
b[ip] += z[ip];
w[ip] = b[ip];
z[ip] = 0.0;
}
}
//// this is NEVER called
if ( i >= VTK_MAX_ROTATIONS )
{
vtkGenericWarningMacro(
"vtkMath::Jacobi: Error extracting eigenfunctions");
return 0;
}
// sort eigenfunctions these changes do not affect accuracy
for (j=0; j<n-1; j++) // boundary incorrect
{
k = j;
tmp = w[k];
for (i=j+1; i<n; i++) // boundary incorrect, shifted already
{
if (w[i] >= tmp) // why exchange if same?
{
k = i;
tmp = w[k];
}
}
if (k != j)
{
w[k] = w[j];
w[j] = tmp;
for (i=0; i<n; i++)
{
tmp = v[i][j];
v[i][j] = v[i][k];
v[i][k] = tmp;
}
}
}
// insure eigenvector consistency (i.e., Jacobi can compute vectors that
// are negative of one another (.707,.707,0) and (-.707,-.707,0). This can
// reek havoc in hyperstreamline/other stuff. We will select the most
// positive eigenvector.
int ceil_half_n = (n >> 1) + (n & 1);
for (j=0; j<n; j++)
{
for (numPos=0, i=0; i<n; i++)
{
if ( v[i][j] >= 0.0 )
{
numPos++;
}
}
// if ( numPos < ceil(double(n)/double(2.0)) )
if ( numPos < ceil_half_n)
{
for(i=0; i<n; i++)
{
v[i][j] *= -1.0;
}
}
}
if (n > 4)
{
delete [] b;
delete [] z;
}
return 1;
}
#undef VTK_ROTATE
#undef VTK_MAX_ROTATIONS
//----------------------------------------------------------------------------
int vtkMath::JacobiN(float **a, int n, float *w, float **v)
{
return vtkJacobiN(a,n,w,v);
}
//----------------------------------------------------------------------------
int vtkMath::JacobiN(double **a, int n, double *w, double **v)
{
return vtkJacobiN(a,n,w,v);
}
//----------------------------------------------------------------------------
// Jacobi iteration for the solution of eigenvectors/eigenvalues of a 3x3
// real symmetric matrix. Square 3x3 matrix a; output eigenvalues in w;
// and output eigenvectors in v. Resulting eigenvalues/vectors are sorted
// in decreasing order; eigenvectors are normalized.
int vtkMath::Jacobi(float **a, float *w, float **v)
{
return vtkMath::JacobiN(a, 3, w, v);
}
//----------------------------------------------------------------------------
int vtkMath::Jacobi(double **a, double *w, double **v)
{
return vtkMath::JacobiN(a, 3, w, v);
}
//----------------------------------------------------------------------------
// Estimate the condition number of a LU factored matrix. Used to judge the
// accuracy of the solution. The matrix A must have been previously factored
// using the method LUFactorLinearSystem. The condition number is the ratio
// of the infinity matrix norm (i.e., maximum value of matrix component)
// divided by the minimum diagonal value. (This works for triangular matrices
// only: see Conte and de Boor, Elementary Numerical Analysis.)
double vtkMath::EstimateMatrixCondition(double **A, int size)
{
int i;
int j;
double min=VTK_FLOAT_MAX, max=(-VTK_FLOAT_MAX);
// find the maximum value
for (i=0; i < size; i++)
{
for (j=i; j < size; j++)
{
if ( fabs(A[i][j]) > max )
{
max = fabs(A[i][j]);
}
}
}
// find the minimum diagonal value
for (i=0; i < size; i++)
{
if ( fabs(A[i][i]) < min )
{
min = fabs(A[i][i]);
}
}
if ( min == 0.0 )
{
return VTK_FLOAT_MAX;
}
else
{
return (max/min);
}
}
//----------------------------------------------------------------------------
// Solves for the least squares best fit matrix for the homogeneous equation X'M' = 0'.
// Uses the method described on pages 40-41 of Computer Vision by
// Forsyth and Ponce, which is that the solution is the eigenvector
// associated with the minimum eigenvalue of T(X)X, where T(X) is the
// transpose of X.
// The inputs and output are transposed matrices.
// Dimensions: X' is numberOfSamples by xOrder,
// M' dimension is xOrder by 1.
// M' should be pre-allocated. All matrices are row major. The resultant
// matrix M' should be pre-multiplied to X' to get 0', or transposed and
// then post multiplied to X to get 0
int vtkMath::SolveHomogeneousLeastSquares(int numberOfSamples, double **xt, int xOrder,
double **mt)
{
// check dimensional consistency
if (numberOfSamples < xOrder)
{
vtkGenericWarningMacro("Insufficient number of samples. Underdetermined.");
return 0;
}
int i, j, k;
// set up intermediate variables
// Allocate matrix to hold X times transpose of X
double **XXt = new double *[xOrder]; // size x by x
// Allocate the array of eigenvalues and eigenvectors
double *eigenvals = new double [xOrder];
double **eigenvecs = new double *[xOrder];
// Clear the upper triangular region (and btw, allocate the eigenvecs as well)
for (i = 0; i < xOrder; i++)
{
eigenvecs[i] = new double[xOrder];
XXt[i] = new double[xOrder];
for (j = 0; j < xOrder; j++)
{
XXt[i][j] = 0.0;
}
}
// Calculate XXt upper half only, due to symmetry
for (k = 0; k < numberOfSamples; k++)
{
for (i = 0; i < xOrder; i++)
{
for (j = i; j < xOrder; j++)
{
XXt[i][j] += xt[k][i] * xt[k][j];
}
}
}
// now fill in the lower half of the XXt matrix
for (i = 0; i < xOrder; i++)
{
for (j = 0; j < i; j++)
{
XXt[i][j] = XXt[j][i];
}
}
// Compute the eigenvectors and eigenvalues
vtkMath::JacobiN(XXt, xOrder, eigenvals, eigenvecs);
// Smallest eigenval is at the end of the list (xOrder-1), and solution is
// corresponding eigenvec.
for (i=0; i<xOrder; i++)
{
mt[i][0] = eigenvecs[i][xOrder-1];
}
// Clean up:
for (i=0; i<xOrder; i++)
{
delete [] XXt[i];
delete [] eigenvecs[i];
}
delete [] XXt;
delete [] eigenvecs;
delete [] eigenvals;
return 1;
}
#define VTK_SMALL_NUMBER 1.0e-12
//----------------------------------------------------------------------------
// Solves for the least squares best fit matrix for the equation X'M' = Y'.
// Uses pseudoinverse to get the ordinary least squares.
// The inputs and output are transposed matrices.
// Dimensions: X' is numberOfSamples by xOrder,
// Y' is numberOfSamples by yOrder,
// M' dimension is xOrder by yOrder.
// M' should be pre-allocated. All matrices are row major. The resultant
// matrix M' should be pre-multiplied to X' to get Y', or transposed and
// then post multiplied to X to get Y
// By default, this method checks for the homogeneous condition where Y==0, and
// if so, invokes SolveHomogeneousLeastSquares. For better performance when
// the system is known not to be homogeneous, invoke with checkHomogeneous=0.
int vtkMath::SolveLeastSquares(int numberOfSamples, double **xt, int xOrder,
double **yt, int yOrder, double **mt, int checkHomogeneous)
{
// check dimensional consistency
if ((numberOfSamples < xOrder) || (numberOfSamples < yOrder))
{
vtkGenericWarningMacro("Insufficient number of samples. Underdetermined.");
return 0;
}
int i, j, k;
int someHomogeneous = 0;
int allHomogeneous = 1;
double **hmt = NULL;
int homogRC = 0;
int *homogenFlags = new int[yOrder];
int successFlag;
// Ok, first init some flags check and see if all the systems are homogeneous
if (checkHomogeneous)
{
// If Y' is zero, it's a homogeneous system and can't be solved via
// the pseudoinverse method. Detect this case, warn the user, and
// invoke SolveHomogeneousLeastSquares instead. Note that it doesn't
// really make much sense for yOrder to be greater than one in this case,
// since that's just yOrder occurrences of a 0 vector on the RHS, but
// we allow it anyway. N
// Initialize homogeneous flags on a per-right-hand-side basis
for (j=0; j<yOrder; j++)
{
homogenFlags[j] = 1;
}
for (i=0; i<numberOfSamples; i++)
{
for (j=0; j<yOrder; j++)
{
if (fabs(yt[i][j]) > VTK_SMALL_NUMBER)
{
allHomogeneous = 0;
homogenFlags[j] = 0;
}
}
}
// If we've got one system, and it's homogeneous, do it and bail out quickly.
if (allHomogeneous && yOrder == 1)
{
vtkGenericWarningMacro("Detected homogeneous system (Y=0), calling SolveHomogeneousLeastSquares()");
delete [] homogenFlags;
return vtkMath::SolveHomogeneousLeastSquares(numberOfSamples, xt, xOrder, mt);
}
// Ok, we've got more than one system of equations.
// Figure out if we need to calculate the homogeneous equation solution for
// any of them.
if (allHomogeneous)
{
someHomogeneous = 1;
}
else
{
for (j=0; j<yOrder; j++)
{
if (homogenFlags[j])
{
someHomogeneous = 1;
}
}
}
}
// If necessary, solve the homogeneous problem
if (someHomogeneous)
{
// hmt is the homogeneous equation version of mt, the general solution.
hmt = new double *[xOrder];
for (j=0; j<xOrder; j++)
{
// Only allocate 1 here, not yOrder, because here we're going to solve
// just the one homogeneous equation subset of the entire problem
hmt[j] = new double [1];
}
// Ok, solve the homogeneous problem
homogRC = vtkMath::SolveHomogeneousLeastSquares(numberOfSamples, xt, xOrder, hmt);
}
// set up intermediate variables
double **XXt = new double *[xOrder]; // size x by x
double **XXtI = new double *[xOrder]; // size x by x
double **XYt = new double *[xOrder]; // size x by y
for (i = 0; i < xOrder; i++)
{
XXt[i] = new double[xOrder];
XXtI[i] = new double[xOrder];
for (j = 0; j < xOrder; j++)
{
XXt[i][j] = 0.0;
XXtI[i][j] = 0.0;
}
XYt[i] = new double[yOrder];
for (j = 0; j < yOrder; j++)
{
XYt[i][j] = 0.0;
}
}
// first find the pseudoinverse matrix
for (k = 0; k < numberOfSamples; k++)
{
for (i = 0; i < xOrder; i++)
{
// first calculate the XXt matrix, only do the upper half (symmetrical)
for (j = i; j < xOrder; j++)
{
XXt[i][j] += xt[k][i] * xt[k][j];
}
// now calculate the XYt matrix
for (j = 0; j < yOrder; j++)
{
XYt[i][j] += xt[k][i] * yt[k][j];
}
}
}
// now fill in the lower half of the XXt matrix
for (i = 0; i < xOrder; i++)
{
for (j = 0; j < i; j++)
{
XXt[i][j] = XXt[j][i];
}
}
successFlag = vtkMath::InvertMatrix(XXt, XXtI, xOrder);
// next get the inverse of XXt
if (successFlag)
{
for (i = 0; i < xOrder; i++)
{
for (j = 0; j < yOrder; j++)
{
mt[i][j] = 0.0;
for (k = 0; k < xOrder; k++)
{
mt[i][j] += XXtI[i][k] * XYt[k][j];
}
}
}
}
// Fix up any of the solutions that correspond to the homogeneous equation
// problem.
if (someHomogeneous)
{
for (j=0; j<yOrder; j++)
{
if (homogenFlags[j])
{
// Fix this one
for (i=0; i<xOrder; i++)
{
mt[i][j] = hmt[i][0];
}
}
}
// Clean up
for (i=0; i<xOrder; i++)
{
delete [] hmt[i];
}
delete [] hmt;
}
// clean up:
// set up intermediate variables
for (i = 0; i < xOrder; i++)
{
delete [] XXt[i];
delete [] XXtI[i];
delete [] XYt[i];
}
delete [] XXt;
delete [] XXtI;
delete [] XYt;
delete [] homogenFlags;
if (someHomogeneous)
{
return homogRC && successFlag;
}
else
{
return successFlag;
}
}
//=============================================================================
// Thread safe versions of math methods.
//=============================================================================
// Invert input square matrix A into matrix AI. Note that A is modified during
// the inversion. The size variable is the dimension of the matrix. Returns 0
// if inverse not computed.
// -----------------------
// For thread safe behavior, temporary arrays tmp1SIze and tmp2Size
// of length size must be passsed in.
int vtkMath::InvertMatrix(double **A, double **AI, int size,
int *tmp1Size, double *tmp2Size)
{
int i, j;
//
// Factor matrix; then begin solving for inverse one column at a time.
// Note: tmp1Size returned value is used later, tmp2Size is just working
// memory whose values are not used in LUSolveLinearSystem
//
if ( vtkMath::LUFactorLinearSystem(A, tmp1Size, size, tmp2Size) == 0 )
{
return 0;
}
for ( j=0; j < size; j++ )
{
for ( i=0; i < size; i++ )
{
tmp2Size[i] = 0.0;
}
tmp2Size[j] = 1.0;
vtkMath::LUSolveLinearSystem(A,tmp1Size,tmp2Size,size);
for ( i=0; i < size; i++ )
{
AI[i][j] = tmp2Size[i];
}
}
return 1;
}
// Factor linear equations Ax = b using LU decompostion A = LU where L is
// lower triangular matrix and U is upper triangular matrix. Input is
// square matrix A, integer array of pivot indices index[0->n-1], and size
// of square matrix n. Output factorization LU is in matrix A. If error is
// found, method returns 0.
//------------------------------------------------------------------
// For thread safe, temporary memory array tmpSize of length size
// must be passed in.
int vtkMath::LUFactorLinearSystem(double **A, int *index, int size,
double *tmpSize)
{
int i, j, k;
int maxI = 0;
double largest, temp1, temp2, sum;
//
// Loop over rows to get implicit scaling information
//
for ( i = 0; i < size; i++ )
{
for ( largest = 0.0, j = 0; j < size; j++ )
{
if ( (temp2 = fabs(A[i][j])) > largest )
{
largest = temp2;
}
}
if ( largest == 0.0 )
{
vtkGenericWarningMacro(<<"Unable to factor linear system");
return 0;
}
tmpSize[i] = 1.0 / largest;
}
//
// Loop over all columns using Crout's method
//
for ( j = 0; j < size; j++ )
{
for (i = 0; i < j; i++)
{
sum = A[i][j];
for ( k = 0; k < i; k++ )
{
sum -= A[i][k] * A[k][j];
}
A[i][j] = sum;
}
//
// Begin search for largest pivot element
//
for ( largest = 0.0, i = j; i < size; i++ )
{
sum = A[i][j];
for ( k = 0; k < j; k++ )
{
sum -= A[i][k] * A[k][j];
}
A[i][j] = sum;
if ( (temp1 = tmpSize[i]*fabs(sum)) >= largest )
{
largest = temp1;
maxI = i;
}
}
//
// Check for row interchange
//
if ( j != maxI )
{
for ( k = 0; k < size; k++ )
{
temp1 = A[maxI][k];
A[maxI][k] = A[j][k];
A[j][k] = temp1;
}
tmpSize[maxI] = tmpSize[j];
}
//
// Divide by pivot element and perform elimination
//
index[j] = maxI;
if ( fabs(A[j][j]) <= VTK_SMALL_NUMBER )
{
vtkGenericWarningMacro(<<"Unable to factor linear system");
return 0;
}
if ( j != (size-1) )
{
temp1 = 1.0 / A[j][j];
for ( i = j + 1; i < size; i++ )
{
A[i][j] *= temp1;
}
}
}
return 1;
}
#undef VTK_SMALL_NUMBER
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// All of the following methods are for dealing with 3x3 matrices
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// helper function, swap two 3-vectors
template<class T>
inline void vtkSwapVectors3(T v1[3], T v2[3])
{
for (int i = 0; i < 3; i++)
{
T tmp = v1[i];
v1[i] = v2[i];
v2[i] = tmp;
}
}
//----------------------------------------------------------------------------
// Unrolled LU factorization of a 3x3 matrix with pivoting.
template<class T>
inline void vtkLUFactor3x3(T A[3][3], int index[3])
{
int i,maxI;
T tmp,largest;
T scale[3];
// Loop over rows to get implicit scaling information
for ( i = 0; i < 3; i++ )
{
largest = fabs(A[i][0]);
if ((tmp = fabs(A[i][1])) > largest)
{
largest = tmp;
}
if ((tmp = fabs(A[i][2])) > largest)
{
largest = tmp;
}
scale[i] = T(1.0)/largest;
}
// Loop over all columns using Crout's method
// first column
largest = scale[0]*fabs(A[0][0]);
maxI = 0;
if ((tmp = scale[1]*fabs(A[1][0])) >= largest)
{
largest = tmp;
maxI = 1;
}
if ((tmp = scale[2]*fabs(A[2][0])) >= largest)
{
maxI = 2;
}
if (maxI != 0)
{
vtkSwapVectors3(A[maxI],A[0]);
scale[maxI] = scale[0];
}
index[0] = maxI;
A[1][0] /= A[0][0];
A[2][0] /= A[0][0];
// second column
A[1][1] -= A[1][0]*A[0][1];
A[2][1] -= A[2][0]*A[0][1];
largest = scale[1]*fabs(A[1][1]);
maxI = 1;
if ((tmp = scale[2]*fabs(A[2][1])) >= largest)
{
maxI = 2;
vtkSwapVectors3(A[2],A[1]);
scale[2] = scale[1];
}
index[1] = maxI;
A[2][1] /= A[1][1];
// third column
A[1][2] -= A[1][0]*A[0][2];
A[2][2] -= A[2][0]*A[0][2] + A[2][1]*A[1][2];
index[2] = 2;
}
//----------------------------------------------------------------------------
void vtkMath::LUFactor3x3(float A[3][3], int index[3])
{
vtkLUFactor3x3(A,index);
}
//----------------------------------------------------------------------------
void vtkMath::LUFactor3x3(double A[3][3], int index[3])
{
vtkLUFactor3x3(A,index);
}
//----------------------------------------------------------------------------
// Backsubstitution with an LU-decomposed matrix.
template<class T1, class T2>
inline void vtkLUSolve3x3(const T1 A[3][3], const int index[3], T2 x[3])
{
T2 sum;
// forward substitution
sum = x[index[0]];
x[index[0]] = x[0];
x[0] = sum;
sum = x[index[1]];
x[index[1]] = x[1];
x[1] = sum - A[1][0]*x[0];
sum = x[index[2]];
x[index[2]] = x[2];
x[2] = sum - A[2][0]*x[0] - A[2][1]*x[1];
// back substitution
x[2] = x[2]/A[2][2];
x[1] = (x[1] - A[1][2]*x[2])/A[1][1];
x[0] = (x[0] - A[0][1]*x[1] - A[0][2]*x[2])/A[0][0];
}
//----------------------------------------------------------------------------
void vtkMath::LUSolve3x3(const float A[3][3],
const int index[3], float x[3])
{
vtkLUSolve3x3(A,index,x);
}
//----------------------------------------------------------------------------
void vtkMath::LUSolve3x3(const double A[3][3],
const int index[3], double x[3])
{
vtkLUSolve3x3(A,index,x);
}
//----------------------------------------------------------------------------
// this method solves Ay = x for y
template<class T1, class T2, class T3>
inline void vtkLinearSolve3x3(const T1 A[3][3], const T2 x[3], T3 y[3])
{
double a1 = A[0][0]; double b1 = A[0][1]; double c1 = A[0][2];
double a2 = A[1][0]; double b2 = A[1][1]; double c2 = A[1][2];
double a3 = A[2][0]; double b3 = A[2][1]; double c3 = A[2][2];
// Compute the adjoint
double d1 = vtkMath::Determinant2x2( b2, b3, c2, c3);
double d2 = - vtkMath::Determinant2x2( a2, a3, c2, c3);
double d3 = vtkMath::Determinant2x2( a2, a3, b2, b3);
double e1 = - vtkMath::Determinant2x2( b1, b3, c1, c3);
double e2 = vtkMath::Determinant2x2( a1, a3, c1, c3);
double e3 = - vtkMath::Determinant2x2( a1, a3, b1, b3);
double f1 = vtkMath::Determinant2x2( b1, b2, c1, c2);
double f2 = - vtkMath::Determinant2x2( a1, a2, c1, c2);
double f3 = vtkMath::Determinant2x2( a1, a2, b1, b2);
// Compute the determinant
double det = a1*d1 + b1*d2 + c1*d3;
// Multiply by the adjoint
double v1 = d1*x[0] + e1*x[1] + f1*x[2];
double v2 = d2*x[0] + e2*x[1] + f2*x[2];
double v3 = d3*x[0] + e3*x[1] + f3*x[2];
// Divide by the determinant
y[0] = v1/det;
y[1] = v2/det;
y[2] = v3/det;
}
//----------------------------------------------------------------------------
void vtkMath::LinearSolve3x3(const float A[3][3],
const float x[3], float y[3])
{
vtkLinearSolve3x3(A,x,y);
}
//----------------------------------------------------------------------------
void vtkMath::LinearSolve3x3(const double A[3][3],
const double x[3], double y[3])
{
vtkLinearSolve3x3(A,x,y);
}
//----------------------------------------------------------------------------
template<class T1, class T2, class T3>
inline void vtkMultiply3x3(const T1 A[3][3], const T2 v[3], T3 u[3])
{
T3 x = A[0][0]*v[0] + A[0][1]*v[1] + A[0][2]*v[2];
T3 y = A[1][0]*v[0] + A[1][1]*v[1] + A[1][2]*v[2];
T3 z = A[2][0]*v[0] + A[2][1]*v[1] + A[2][2]*v[2];
u[0] = x;
u[1] = y;
u[2] = z;
}
//----------------------------------------------------------------------------
void vtkMath::Multiply3x3(const float A[3][3], const float v[3], float u[3])
{
vtkMultiply3x3(A,v,u);
}
//----------------------------------------------------------------------------
void vtkMath::Multiply3x3(const double A[3][3], const double v[3], double u[3])
{
vtkMultiply3x3(A,v,u);
}
//----------------------------------------------------------------------------
template<class T, class T2, class T3>
inline void vtkMultiplyMatrix3x3(const T A[3][3], const T2 B[3][3],
T3 C[3][3])
{
T3 D[3][3];
for (int i = 0; i < 3; i++)
{
D[0][i] = A[0][0]*B[0][i] + A[0][1]*B[1][i] + A[0][2]*B[2][i];
D[1][i] = A[1][0]*B[0][i] + A[1][1]*B[1][i] + A[1][2]*B[2][i];
D[2][i] = A[2][0]*B[0][i] + A[2][1]*B[1][i] + A[2][2]*B[2][i];
}
for (int j = 0; j < 3; j++)
{
C[j][0] = D[j][0];
C[j][1] = D[j][1];
C[j][2] = D[j][2];
}
}
//----------------------------------------------------------------------------
void vtkMath::Multiply3x3(const float A[3][3],
const float B[3][3], float C[3][3])
{
vtkMultiplyMatrix3x3(A,B,C);
}
//----------------------------------------------------------------------------
void vtkMath::Multiply3x3(const double A[3][3],
const double B[3][3], double C[3][3])
{
vtkMultiplyMatrix3x3(A,B,C);
}
//----------------------------------------------------------------------------
void vtkMath::MultiplyMatrix(double **A, double **B,
unsigned int rowA, unsigned int colA,
unsigned int rowB, unsigned int colB,
double **C)
{
// we need colA == rowB
if (colA != rowB)
{
vtkGenericWarningMacro(
"Number of columns of A must match number of rows of B.");
}
// output matrix is rowA*colB
// output row
for (unsigned int i=0; i < rowA; i++)
{
// output col
for (unsigned int j=0; j < colB; j++)
{
C[i][j] = 0;
// sum for this point
for (unsigned int k=0; k < colA; k++)
{
C[i][j] += A[i][k]*B[k][j];
}
}
}
}
//----------------------------------------------------------------------------
template<class T1, class T2>
inline void vtkTranspose3x3(const T1 A[3][3], T2 AT[3][3])
{
T2 tmp;
tmp = A[1][0];
AT[1][0] = A[0][1];
AT[0][1] = tmp;
tmp = A[2][0];
AT[2][0] = A[0][2];
AT[0][2] = tmp;
tmp = A[2][1];
AT[2][1] = A[1][2];
AT[1][2] = tmp;
AT[0][0] = A[0][0];
AT[1][1] = A[1][1];
AT[2][2] = A[2][2];
}
//----------------------------------------------------------------------------
void vtkMath::Transpose3x3(const float A[3][3], float AT[3][3])
{
vtkTranspose3x3(A,AT);
}
//----------------------------------------------------------------------------
void vtkMath::Transpose3x3(const double A[3][3], double AT[3][3])
{
vtkTranspose3x3(A,AT);
}
//----------------------------------------------------------------------------
template<class T1, class T2>
inline void vtkInvert3x3(const T1 A[3][3], T2 AI[3][3])
{
double a1 = A[0][0]; double b1 = A[0][1]; double c1 = A[0][2];
double a2 = A[1][0]; double b2 = A[1][1]; double c2 = A[1][2];
double a3 = A[2][0]; double b3 = A[2][1]; double c3 = A[2][2];
// Compute the adjoint
double d1 = vtkMath::Determinant2x2( b2, b3, c2, c3);
double d2 = - vtkMath::Determinant2x2( a2, a3, c2, c3);
double d3 = vtkMath::Determinant2x2( a2, a3, b2, b3);
double e1 = - vtkMath::Determinant2x2( b1, b3, c1, c3);
double e2 = vtkMath::Determinant2x2( a1, a3, c1, c3);
double e3 = - vtkMath::Determinant2x2( a1, a3, b1, b3);
double f1 = vtkMath::Determinant2x2( b1, b2, c1, c2);
double f2 = - vtkMath::Determinant2x2( a1, a2, c1, c2);
double f3 = vtkMath::Determinant2x2( a1, a2, b1, b2);
// Divide by the determinant
double det = a1*d1 + b1*d2 + c1*d3;
AI[0][0] = d1/det;
AI[1][0] = d2/det;
AI[2][0] = d3/det;
AI[0][1] = e1/det;
AI[1][1] = e2/det;
AI[2][1] = e3/det;
AI[0][2] = f1/det;
AI[1][2] = f2/det;
AI[2][2] = f3/det;
}
//----------------------------------------------------------------------------
void vtkMath::Invert3x3(const float A[3][3], float AI[3][3])
{
vtkInvert3x3(A,AI);
}
//----------------------------------------------------------------------------
void vtkMath::Invert3x3(const double A[3][3], double AI[3][3])
{
vtkInvert3x3(A,AI);
}
//----------------------------------------------------------------------------
template<class T>
inline void vtkIdentity3x3(T A[3][3])
{
for (int i = 0; i < 3; i++)
{
A[i][0] = A[i][1] = A[i][2] = T(0.0);
A[i][i] = 1.0;
}
}
//----------------------------------------------------------------------------
void vtkMath::Identity3x3(float A[3][3])
{
vtkIdentity3x3(A);
}
//----------------------------------------------------------------------------
void vtkMath::Identity3x3(double A[3][3])
{
vtkIdentity3x3(A);
}
//----------------------------------------------------------------------------
template<class T1, class T2>
inline void vtkQuaternionToMatrix3x3(T1 quat[4], T2 A[3][3])
{
T2 ww = quat[0]*quat[0];
T2 wx = quat[0]*quat[1];
T2 wy = quat[0]*quat[2];
T2 wz = quat[0]*quat[3];
T2 xx = quat[1]*quat[1];
T2 yy = quat[2]*quat[2];
T2 zz = quat[3]*quat[3];
T2 xy = quat[1]*quat[2];
T2 xz = quat[1]*quat[3];
T2 yz = quat[2]*quat[3];
T2 rr = xx + yy + zz;
// normalization factor, just in case quaternion was not normalized
T2 f = 1/(ww + rr);
T2 s = (ww - rr)*f;
f *= 2;
A[0][0] = xx*f + s;
A[1][0] = (xy + wz)*f;
A[2][0] = (xz - wy)*f;
A[0][1] = (xy - wz)*f;
A[1][1] = yy*f + s;
A[2][1] = (yz + wx)*f;
A[0][2] = (xz + wy)*f;
A[1][2] = (yz - wx)*f;
A[2][2] = zz*f + s;
}
//----------------------------------------------------------------------------
void vtkMath::QuaternionToMatrix3x3(const float quat[4], float A[3][3])
{
vtkQuaternionToMatrix3x3(quat,A);
}
//----------------------------------------------------------------------------
void vtkMath::QuaternionToMatrix3x3(const double quat[4], double A[3][3])
{
vtkQuaternionToMatrix3x3(quat,A);
}
//----------------------------------------------------------------------------
// The solution is based on
// Berthold K. P. Horn (1987),
// "Closed-form solution of absolute orientation using unit quaternions,"
// Journal of the Optical Society of America A, 4:629-642
template<class T1, class T2>
inline void vtkMatrix3x3ToQuaternion(const T1 A[3][3], T2 quat[4])
{
T2 N[4][4];
// on-diagonal elements
N[0][0] = A[0][0]+A[1][1]+A[2][2];
N[1][1] = A[0][0]-A[1][1]-A[2][2];
N[2][2] = -A[0][0]+A[1][1]-A[2][2];
N[3][3] = -A[0][0]-A[1][1]+A[2][2];
// off-diagonal elements
N[0][1] = N[1][0] = A[2][1]-A[1][2];
N[0][2] = N[2][0] = A[0][2]-A[2][0];
N[0][3] = N[3][0] = A[1][0]-A[0][1];
N[1][2] = N[2][1] = A[1][0]+A[0][1];
N[1][3] = N[3][1] = A[0][2]+A[2][0];
N[2][3] = N[3][2] = A[2][1]+A[1][2];
T2 eigenvectors[4][4],eigenvalues[4];
// convert into format that JacobiN can use,
// then use Jacobi to find eigenvalues and eigenvectors
T2 *NTemp[4],*eigenvectorsTemp[4];
for (int i = 0; i < 4; i++)
{
NTemp[i] = N[i];
eigenvectorsTemp[i] = eigenvectors[i];
}
vtkMath::JacobiN(NTemp,4,eigenvalues,eigenvectorsTemp);
// the first eigenvector is the one we want
quat[0] = eigenvectors[0][0];
quat[1] = eigenvectors[1][0];
quat[2] = eigenvectors[2][0];
quat[3] = eigenvectors[3][0];
}
//----------------------------------------------------------------------------
void vtkMath::Matrix3x3ToQuaternion(const float A[3][3], float quat[4])
{
vtkMatrix3x3ToQuaternion(A,quat);
}
//----------------------------------------------------------------------------
void vtkMath::Matrix3x3ToQuaternion(const double A[3][3], double quat[4])
{
vtkMatrix3x3ToQuaternion(A,quat);
}
//----------------------------------------------------------------------------
// Multiplying two quaternions
template <class T>
inline void vtkQuaternionMultiplication( const T q1[4],
const T q2[4],
T q[4] )
{
T ww = q1[0]*q2[0];
T wx = q1[0]*q2[1];
T wy = q1[0]*q2[2];
T wz = q1[0]*q2[3];
T xw = q1[1]*q2[0];
T xx = q1[1]*q2[1];
T xy = q1[1]*q2[2];
T xz = q1[1]*q2[3];
T yw = q1[2]*q2[0];
T yx = q1[2]*q2[1];
T yy = q1[2]*q2[2];
T yz = q1[2]*q2[3];
T zw = q1[3]*q2[0];
T zx = q1[3]*q2[1];
T zy = q1[3]*q2[2];
T zz = q1[3]*q2[3];
q[0] = ww-xx-yy-zz;
q[1] = wx+xw+yz-zy;
q[2] = wy-xz+yw+zx;
q[3] = wz+xy-yx+zw;
}
//----------------------------------------------------------------------------
void vtkMath::MultiplyQuaternion( const float q1[4], const float q2[4], float q[4] )
{
vtkQuaternionMultiplication( q1, q2, q );
}
//----------------------------------------------------------------------------
void vtkMath::MultiplyQuaternion( const double q1[4], const double q2[4], double q[4] )
{
vtkQuaternionMultiplication( q1, q2, q );
}
//----------------------------------------------------------------------------
// The orthogonalization is done via quaternions in order to avoid
// having to use a singular value decomposition algorithm.
template <class T1, class T2>
inline void vtkOrthogonalize3x3(const T1 A[3][3], T2 B[3][3])
{
int i;
// copy the matrix
for (i = 0; i < 3; i++)
{
B[0][i] = A[0][i];
B[1][i] = A[1][i];
B[2][i] = A[2][i];
}
// Pivot the matrix to improve accuracy
T2 scale[3];
int index[3];
T2 largest;
// Loop over rows to get implicit scaling information
for (i = 0; i < 3; i++)
{
T2 x1 = fabs(B[i][0]);
T2 x2 = fabs(B[i][1]);
T2 x3 = fabs(B[i][2]);
largest = (x2 > x1 ? x2 : x1);
largest = (x3 > largest ? x3 : largest);
scale[i] = 1;
if (largest != 0)
{
scale[i] /= largest;
}
}
// first column
T2 x1 = fabs(B[0][0])*scale[0];
T2 x2 = fabs(B[1][0])*scale[1];
T2 x3 = fabs(B[2][0])*scale[2];
index[0] = 0;
largest = x1;
if (x2 >= largest)
{
largest = x2;
index[0] = 1;
}
if (x3 >= largest)
{
index[0] = 2;
}
if (index[0] != 0)
{
vtkSwapVectors3(B[index[0]],B[0]);
scale[index[0]] = scale[0];
}
// second column
T2 y2 = fabs(B[1][1])*scale[1];
T2 y3 = fabs(B[2][1])*scale[2];
index[1] = 1;
largest = y2;
if (y3 >= largest)
{
index[1] = 2;
vtkSwapVectors3(B[2],B[1]);
}
// third column
index[2] = 2;
// A quaternion can only describe a pure rotation, not
// a rotation with a flip, therefore the flip must be
// removed before the matrix is converted to a quaternion.
int flip = 0;
if (vtkDeterminant3x3(B) < 0)
{
flip = 1;
for (i = 0; i < 3; i++)
{
B[0][i] = -B[0][i];
B[1][i] = -B[1][i];
B[2][i] = -B[2][i];
}
}
// Do orthogonalization using a quaternion intermediate
// (this, essentially, does the orthogonalization via
// diagonalization of an appropriately constructed symmetric
// 4x4 matrix rather than by doing SVD of the 3x3 matrix)
T2 quat[4];
vtkMath::Matrix3x3ToQuaternion(B,quat);
vtkMath::QuaternionToMatrix3x3(quat,B);
// Put the flip back into the orthogonalized matrix.
if (flip)
{
for (i = 0; i < 3; i++)
{
B[0][i] = -B[0][i];
B[1][i] = -B[1][i];
B[2][i] = -B[2][i];
}
}
// Undo the pivoting
if (index[1] != 1)
{
vtkSwapVectors3(B[index[1]],B[1]);
}
if (index[0] != 0)
{
vtkSwapVectors3(B[index[0]],B[0]);
}
}
//----------------------------------------------------------------------------
void vtkMath::Orthogonalize3x3(const float A[3][3], float B[3][3])
{
vtkOrthogonalize3x3(A,B);
}
//----------------------------------------------------------------------------
void vtkMath::Orthogonalize3x3(const double A[3][3], double B[3][3])
{
vtkOrthogonalize3x3(A,B);
}
//----------------------------------------------------------------------------
float vtkMath::Norm(const float* x, int n)
{
double sum=0;
for (int i=0; i<n; i++)
{
sum += x[i]*x[i];
}
return sqrt(sum);
}
//----------------------------------------------------------------------------
double vtkMath::Norm(const double* x, int n)
{
double sum=0;
for (int i=0; i<n; i++)
{
sum += x[i]*x[i];
}
return sqrt(sum);
}
//----------------------------------------------------------------------------
bool vtkMath::ProjectVector(const float a[3], const float b[3], float projection[3])
{
float bSquared = vtkMath::Dot(b,b);
if(bSquared == 0)
{
projection[0] = 0;
projection[1] = 0;
projection[2] = 0;
return false;
}
float scale = vtkMath::Dot(a,b)/bSquared;
for(unsigned int i = 0; i < 3; i++)
{
projection[i] = b[i];
}
vtkMath::MultiplyScalar(projection, scale);
return true;
}
//----------------------------------------------------------------------------
bool vtkMath::ProjectVector(const double a[3], const double b[3], double projection[3])
{
double bSquared = vtkMath::Dot(b,b);
if(bSquared == 0)
{
projection[0] = 0;
projection[1] = 0;
projection[2] = 0;
return false;
}
double scale = vtkMath::Dot(a,b)/bSquared;
for(unsigned int i = 0; i < 3; i++)
{
projection[i] = b[i];
}
vtkMath::MultiplyScalar(projection, scale);
return true;
}
//----------------------------------------------------------------------------
bool vtkMath::ProjectVector2D(const float a[2], const float b[2], float projection[2])
{
float bSquared = vtkMath::Dot2D(b,b);
if(bSquared == 0)
{
projection[0] = 0;
projection[1] = 0;
return false;
}
float scale = vtkMath::Dot2D(a,b)/bSquared;
for(unsigned int i = 0; i < 2; i++)
{
projection[i] = b[i];
}
vtkMath::MultiplyScalar2D(projection, scale);
return true;
}
//----------------------------------------------------------------------------
bool vtkMath::ProjectVector2D(const double a[2], const double b[2], double projection[2])
{
double bSquared = vtkMath::Dot2D(b,b);
if(bSquared == 0)
{
projection[0] = 0;
projection[1] = 0;
return false;
}
double scale = vtkMath::Dot2D(a,b)/bSquared;
for(unsigned int i = 0; i < 2; i++)
{
projection[i] = b[i];
}
vtkMath::MultiplyScalar2D(projection, scale);
return true;
}
//----------------------------------------------------------------------------
// Extract the eigenvalues and eigenvectors from a 3x3 matrix.
// The eigenvectors (the columns of V) will be normalized.
// The eigenvectors are aligned optimally with the x, y, and z
// axes respectively.
template <class T1, class T2>
inline void vtkDiagonalize3x3(const T1 A[3][3], T2 w[3], T2 V[3][3])
{
int i,j,k,maxI;
T2 tmp, maxVal;
// do the matrix[3][3] to **matrix conversion for Jacobi
T2 C[3][3];
T2 *ATemp[3],*VTemp[3];
for (i = 0; i < 3; i++)
{
C[i][0] = A[i][0];
C[i][1] = A[i][1];
C[i][2] = A[i][2];
ATemp[i] = C[i];
VTemp[i] = V[i];
}
// diagonalize using Jacobi
vtkMath::JacobiN(ATemp,3,w,VTemp);
// if all the eigenvalues are the same, return identity matrix
if (w[0] == w[1] && w[0] == w[2])
{
vtkMath::Identity3x3(V);
return;
}
// transpose temporarily, it makes it easier to sort the eigenvectors
vtkMath::Transpose3x3(V,V);
// if two eigenvalues are the same, re-orthogonalize to optimally line
// up the eigenvectors with the x, y, and z axes
for (i = 0; i < 3; i++)
{
if (w[(i+1)%3] == w[(i+2)%3]) // two eigenvalues are the same
{
// find maximum element of the independent eigenvector
maxVal = fabs(V[i][0]);
maxI = 0;
for (j = 1; j < 3; j++)
{
if (maxVal < (tmp = fabs(V[i][j])))
{
maxVal = tmp;
maxI = j;
}
}
// swap the eigenvector into its proper position
if (maxI != i)
{
tmp = w[maxI];
w[maxI] = w[i];
w[i] = tmp;
vtkSwapVectors3(V[i],V[maxI]);
}
// maximum element of eigenvector should be positive
if (V[maxI][maxI] < 0)
{
V[maxI][0] = -V[maxI][0];
V[maxI][1] = -V[maxI][1];
V[maxI][2] = -V[maxI][2];
}
// re-orthogonalize the other two eigenvectors
j = (maxI+1)%3;
k = (maxI+2)%3;
V[j][0] = 0.0;
V[j][1] = 0.0;
V[j][2] = 0.0;
V[j][j] = 1.0;
vtkMath::Cross(V[maxI],V[j],V[k]);
vtkMath::Normalize(V[k]);
vtkMath::Cross(V[k],V[maxI],V[j]);
// transpose vectors back to columns
vtkMath::Transpose3x3(V,V);
return;
}
}
// the three eigenvalues are different, just sort the eigenvectors
// to align them with the x, y, and z axes
// find the vector with the largest x element, make that vector
// the first vector
maxVal = fabs(V[0][0]);
maxI = 0;
for (i = 1; i < 3; i++)
{
if (maxVal < (tmp = fabs(V[i][0])))
{
maxVal = tmp;
maxI = i;
}
}
// swap eigenvalue and eigenvector
if (maxI != 0)
{
tmp = w[maxI];
w[maxI] = w[0];
w[0] = tmp;
vtkSwapVectors3(V[maxI],V[0]);
}
// do the same for the y element
if (fabs(V[1][1]) < fabs(V[2][1]))
{
tmp = w[2];
w[2] = w[1];
w[1] = tmp;
vtkSwapVectors3(V[2],V[1]);
}
// ensure that the sign of the eigenvectors is correct
for (i = 0; i < 2; i++)
{
if (V[i][i] < 0)
{
V[i][0] = -V[i][0];
V[i][1] = -V[i][1];
V[i][2] = -V[i][2];
}
}
// set sign of final eigenvector to ensure that determinant is positive
if (vtkMath::Determinant3x3(V) < 0)
{
V[2][0] = -V[2][0];
V[2][1] = -V[2][1];
V[2][2] = -V[2][2];
}
// transpose the eigenvectors back again
vtkMath::Transpose3x3(V,V);
}
//----------------------------------------------------------------------------
void vtkMath::Diagonalize3x3(const float A[3][3], float w[3], float V[3][3])
{
vtkDiagonalize3x3(A,w,V);
}
//----------------------------------------------------------------------------
void vtkMath::Diagonalize3x3(const double A[3][3],double w[3],double V[3][3])
{
vtkDiagonalize3x3(A,w,V);
}
//----------------------------------------------------------------------------
// Perform singular value decomposition on the matrix A:
// A = U * W * VT
// where U and VT are orthogonal W is diagonal (the diagonal elements
// are returned in vector w).
// The matrices U and VT will both have positive determinants.
// The scale factors w are ordered according to how well the
// corresponding eigenvectors (in VT) match the x, y and z axes
// respectively.
//
// The singular value decomposition is used to decompose a linear
// transformation into a rotation, followed by a scale, followed
// by a second rotation. The scale factors w will be negative if
// the determinant of matrix A is negative.
//
// Contributed by David Gobbi (dgobbi@irus.rri.on.ca)
template <class T1, class T2>
inline void vtkSingularValueDecomposition3x3(const T1 A[3][3],
T2 U[3][3], T2 w[3],
T2 VT[3][3])
{
int i;
T2 B[3][3];
// copy so that A can be used for U or VT without risk
for (i = 0; i < 3; i++)
{
B[0][i] = A[0][i];
B[1][i] = A[1][i];
B[2][i] = A[2][i];
}
// temporarily flip if determinant is negative
T2 d = vtkMath::Determinant3x3(B);
if (d < 0)
{
for (i = 0; i < 3; i++)
{
B[0][i] = -B[0][i];
B[1][i] = -B[1][i];
B[2][i] = -B[2][i];
}
}
// orthogonalize, diagonalize, etc.
vtkMath::Orthogonalize3x3(B, U);
vtkMath::Transpose3x3(B, B);
vtkMath::Multiply3x3(B, U, VT);
vtkMath::Diagonalize3x3(VT, w, VT);
vtkMath::Multiply3x3(U, VT, U);
vtkMath::Transpose3x3(VT, VT);
// re-create the flip
if (d < 0)
{
w[0] = -w[0];
w[1] = -w[1];
w[2] = -w[2];
}
/* paranoia check: recombine to ensure that the SVD is correct
vtkMath::Transpose3x3(B, B);
if (d < 0)
{
for (i = 0; i < 3; i++)
{
B[0][i] = -B[0][i];
B[1][i] = -B[1][i];
B[2][i] = -B[2][i];
}
}
int j;
T2 maxerr = 0;
T2 tmp;
T2 M[3][3];
T2 W[3][3];
vtkMath::Identity3x3(W);
W[0][0] = w[0]; W[1][1] = w[1]; W[2][2] = w[2];
vtkMath::Identity3x3(M);
vtkMath::Multiply3x3(M, U, M);
vtkMath::Multiply3x3(M, W, M);
vtkMath::Multiply3x3(M, VT, M);
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{
if ((tmp = fabs(B[i][j] - M[i][j])) > maxerr)
{
maxerr = tmp;
}
}
}
vtkGenericWarningMacro("SingularValueDecomposition max error = " << maxerr);
*/
}
//----------------------------------------------------------------------------
void vtkMath::SingularValueDecomposition3x3(const float A[3][3],
float U[3][3], float w[3],
float VT[3][3])
{
vtkSingularValueDecomposition3x3(A,U,w,VT);
}
//----------------------------------------------------------------------------
void vtkMath::SingularValueDecomposition3x3(const double A[3][3],
double U[3][3], double w[3],
double VT[3][3])
{
vtkSingularValueDecomposition3x3(A,U,w,VT);
}
//----------------------------------------------------------------------------
void vtkMath::RGBToHSV(float r, float g, float b,
float *h, float *s, float *v)
{
double dh,ds,dv;
vtkMath::RGBToHSV(r,g,b,&dh,&ds,&dv);
*h = static_cast<float>(dh);
*s = static_cast<float>(ds);
*v = static_cast<float>(dv);
}
//----------------------------------------------------------------------------
double* vtkMath::RGBToHSV(const double rgb[3])
{
return vtkMath::RGBToHSV(rgb[0], rgb[1], rgb[2]);
}
//----------------------------------------------------------------------------
double* vtkMath::RGBToHSV(double r, double g, double b)
{
static double hsv[3];
vtkMath::RGBToHSV(r, g, b, hsv, hsv + 1, hsv + 2);
return hsv;
}
//----------------------------------------------------------------------------
void vtkMath::RGBToHSV(double r, double g, double b,
double *h, double *s, double *v)
{
double onethird = 1.0 / 3.0;
double onesixth = 1.0 / 6.0;
double twothird = 2.0 / 3.0;
double cmax, cmin;
cmax = r;
cmin = r;
if (g > cmax)
{
cmax = g;
}
else if (g < cmin)
{
cmin = g;
}
if (b > cmax)
{
cmax = b;
}
else if (b < cmin)
{
cmin = b;
}
*v = cmax;
if (*v > 0.0)
{
*s = (cmax - cmin) / cmax;
}
else
{
*s = 0.0;
}
if (*s > 0)
{
if (r == cmax)
{
*h = onesixth * (g - b) / (cmax - cmin);
}
else if (g == cmax)
{
*h = onethird + onesixth * (b - r) / (cmax - cmin);
}
else
{
*h = twothird + onesixth * (r - g) / (cmax - cmin);
}
if (*h < 0.0)
{
*h += 1.0;
}
}
else
{
*h = 0.0;
}
}
//----------------------------------------------------------------------------
void vtkMath::HSVToRGB(float h, float s, float v,
float *r, float *g, float *b)
{
double dr,dg,db;
vtkMath::HSVToRGB(h,s,v,&dr,&dg,&db);
*r = static_cast<float>(dr);
*g = static_cast<float>(dg);
*b = static_cast<float>(db);
}
//----------------------------------------------------------------------------
double* vtkMath::HSVToRGB(const double hsv[3])
{
return vtkMath::HSVToRGB(hsv[0], hsv[1], hsv[2]);
}
//----------------------------------------------------------------------------
double* vtkMath::HSVToRGB(double h, double s, double v)
{
static double rgb[3];
vtkMath::HSVToRGB(h, s, v, rgb, rgb + 1, rgb + 2);
return rgb;
}
//----------------------------------------------------------------------------
void vtkMath::HSVToRGB(double h, double s, double v,
double *r, double *g, double *b)
{
const double onethird = 1.0 / 3.0;
const double onesixth = 1.0 / 6.0;
const double twothird = 2.0 / 3.0;
const double fivesixth = 5.0 / 6.0;
// compute RGB from HSV
if (h > onesixth && h <= onethird) // green/red
{
*g = 1.0;
*r = (onethird - h) / onesixth;
*b = 0.0;
}
else if (h > onethird && h <= 0.5) // green/blue
{
*g = 1.0;
*b = (h - onethird) / onesixth;
*r = 0.0;
}
else if (h > 0.5 && h <= twothird) // blue/green
{
*b = 1.0;
*g = (twothird - h) / onesixth;
*r = 0.0;
}
else if (h > twothird && h <= fivesixth) // blue/red
{
*b = 1.0;
*r = (h - twothird) / onesixth;
*g = 0.0;
}
else if (h > fivesixth && h <= 1.0) // red/blue
{
*r = 1.0;
*b = (1.0 - h) / onesixth;
*g = 0.0;
}
else // red/green
{
*r = 1.0;
*g = h / onesixth;
*b = 0.0;
}
// add Saturation to the equation.
*r = (s * *r + (1.0 - s));
*g = (s * *g + (1.0 - s));
*b = (s * *b + (1.0 - s));
*r *= v;
*g *= v;
*b *= v;
}
//----------------------------------------------------------------------------
void vtkMath::LabToXYZ(double L, double a, double b,
double *x, double *y, double *z)
{
//LAB to XYZ
double var_Y = ( L + 16 ) / 116;
double var_X = a / 500 + var_Y;
double var_Z = var_Y - b / 200;
if ( pow(var_Y,3) > 0.008856 ) var_Y = pow(var_Y,3);
else var_Y = ( var_Y - 16.0 / 116.0 ) / 7.787;
if ( pow(var_X,3) > 0.008856 ) var_X = pow(var_X,3);
else var_X = ( var_X - 16.0 / 116.0 ) / 7.787;
if ( pow(var_Z,3) > 0.008856 ) var_Z = pow(var_Z,3);
else var_Z = ( var_Z - 16.0 / 116.0 ) / 7.787;
const double ref_X = 0.9505;
const double ref_Y = 1.000;
const double ref_Z = 1.089;
*x = ref_X * var_X; //ref_X = 0.9505 Observer= 2 deg Illuminant= D65
*y = ref_Y * var_Y; //ref_Y = 1.000
*z = ref_Z * var_Z; //ref_Z = 1.089
}
//-----------------------------------------------------------------------------
double *vtkMath::LabToXYZ(const double lab[3])
{
static double xyz[3];
vtkMath::LabToXYZ(lab[0], lab[1], lab[2], xyz+0, xyz+1, xyz+2);
return xyz;
}
//-----------------------------------------------------------------------------
void vtkMath::XYZToLab(double x, double y, double z,
double *L, double *a, double *b)
{
const double ref_X = 0.9505;
const double ref_Y = 1.000;
const double ref_Z = 1.089;
double var_X = x / ref_X; //ref_X = 0.9505 Observer= 2 deg, Illuminant= D65
double var_Y = y / ref_Y; //ref_Y = 1.000
double var_Z = z / ref_Z; //ref_Z = 1.089
if ( var_X > 0.008856 ) var_X = pow(var_X, 1.0/3.0);
else var_X = ( 7.787 * var_X ) + ( 16.0 / 116.0 );
if ( var_Y > 0.008856 ) var_Y = pow(var_Y, 1.0/3.0);
else var_Y = ( 7.787 * var_Y ) + ( 16.0 / 116.0 );
if ( var_Z > 0.008856 ) var_Z = pow(var_Z, 1.0/3.0);
else var_Z = ( 7.787 * var_Z ) + ( 16.0 / 116.0 );
*L = ( 116 * var_Y ) - 16;
*a = 500 * ( var_X - var_Y );
*b = 200 * ( var_Y - var_Z );
}
//-----------------------------------------------------------------------------
double *vtkMath::XYZToLab(const double xyz[3])
{
static double lab[3];
vtkMath::XYZToLab(xyz[0], xyz[1], xyz[2], lab+0, lab+1, lab+2);
return lab;
}
//----------------------------------------------------------------------------
void vtkMath::XYZToRGB(double x, double y, double z,
double *r, double *g, double *b)
{
//double ref_X = 0.9505; //Observer = 2 deg Illuminant = D65
//double ref_Y = 1.000;
//double ref_Z = 1.089;
*r = x * 3.2406 + y * -1.5372 + z * -0.4986;
*g = x * -0.9689 + y * 1.8758 + z * 0.0415;
*b = x * 0.0557 + y * -0.2040 + z * 1.0570;
// The following performs a "gamma correction" specified by the sRGB color
// space. sRGB is defined by a canonical definition of a display monitor and
// has been standardized by the International Electrotechnical Commission (IEC
// 61966-2-1). The nonlinearity of the correction is designed to make the
// colors more perceptually uniform. This color space has been adopted by
// several applications including Adobe Photoshop and Microsoft Windows color
// management. OpenGL is agnostic on its RGB color space, but it is reasonable
// to assume it is close to this one.
if (*r > 0.0031308) *r = 1.055 * (pow(*r, ( 1 / 2.4 ))) - 0.055;
else *r = 12.92 * (*r);
if (*g > 0.0031308) *g = 1.055 * (pow(*g ,( 1 / 2.4 ))) - 0.055;
else *g = 12.92 * (*g);
if (*b > 0.0031308) *b = 1.055 * (pow(*b, ( 1 / 2.4 ))) - 0.055;
else *b = 12.92 * (*b);
// Clip colors. ideally we would do something that is perceptually closest
// (since we can see colors outside of the display gamut), but this seems to
// work well enough.
double maxVal = *r;
if (maxVal < *g) maxVal = *g;
if (maxVal < *b) maxVal = *b;
if (maxVal > 1.0)
{
*r /= maxVal;
*g /= maxVal;
*b /= maxVal;
}
if (*r<0) *r=0;
if (*g<0) *g=0;
if (*b<0) *b=0;
}
//-----------------------------------------------------------------------------
double *vtkMath::XYZToRGB(const double xyz[3])
{
static double rgb[3];
vtkMath::XYZToRGB(xyz[0], xyz[1], xyz[2], rgb+0, rgb+1, rgb+2);
return rgb;
}
//-----------------------------------------------------------------------------
void vtkMath::RGBToXYZ(double r, double g, double b,
double *x, double *y, double *z)
{
// The following performs a "gamma correction" specified by the sRGB color
// space. sRGB is defined by a canonical definition of a display monitor and
// has been standardized by the International Electrotechnical Commission (IEC
// 61966-2-1). The nonlinearity of the correction is designed to make the
// colors more perceptually uniform. This color space has been adopted by
// several applications including Adobe Photoshop and Microsoft Windows color
// management. OpenGL is agnostic on its RGB color space, but it is reasonable
// to assume it is close to this one.
if ( r > 0.04045 ) r = pow(( r + 0.055 ) / 1.055, 2.4);
else r = r / 12.92;
if ( g > 0.04045 ) g = pow(( g + 0.055 ) / 1.055, 2.4);
else g = g / 12.92;
if ( b > 0.04045 ) b = pow(( b + 0.055 ) / 1.055, 2.4);
else b = b / 12.92;
//Observer. = 2 deg, Illuminant = D65
*x = r * 0.4124 + g * 0.3576 + b * 0.1805;
*y = r * 0.2126 + g * 0.7152 + b * 0.0722;
*z = r * 0.0193 + g * 0.1192 + b * 0.9505;
}
//-----------------------------------------------------------------------------
double *vtkMath::RGBToXYZ(const double rgb[3])
{
static double xyz[3];
vtkMath::RGBToXYZ(rgb[0], rgb[1], rgb[2], xyz+0, xyz+1, xyz+2);
return xyz;
}
//-----------------------------------------------------------------------------
void vtkMath::RGBToLab(double red, double green, double blue,
double *L, double *a, double *b)
{
double x, y, z;
vtkMath::RGBToXYZ(red, green, blue, &x, &y, &z);
vtkMath::XYZToLab(x, y, z, L, a, b);
}
//-----------------------------------------------------------------------------
double *vtkMath::RGBToLab(const double rgb[3])
{
return vtkMath::XYZToLab(vtkMath::RGBToXYZ(rgb));
}
//-----------------------------------------------------------------------------
void vtkMath::LabToRGB(double L, double a, double b,
double *red, double *green, double *blue)
{
double x, y, z;
vtkMath::LabToXYZ(L, a, b, &x, &y, &z);
vtkMath::XYZToRGB(x, y, z, red, green, blue);
}
//-----------------------------------------------------------------------------
double *vtkMath::LabToRGB(const double lab[3])
{
return vtkMath::XYZToRGB(vtkMath::LabToXYZ(lab));
}
//----------------------------------------------------------------------------
void vtkMath::ClampValues(double *values,
int nb_values,
const double range[2])
{
if (!values || nb_values <= 0 || !range)
{
return;
}
const double *values_end = values + nb_values;
while (values < values_end)
{
if (*values < range[0])
{
*values = range[0];
}
else if (*values > range[1])
{
*values = range[1];
}
values++;
}
}
//----------------------------------------------------------------------------
void vtkMath::ClampValues(const double *values,
int nb_values,
const double range[2],
double *clamped_values)
{
if (!values || nb_values <= 0 || !range || !clamped_values)
{
return;
}
const double *values_end = values + nb_values;
while (values < values_end)
{
if (*values < range[0])
{
*clamped_values = range[0];
}
else if (*values > range[1])
{
*clamped_values = range[1];
}
else
{
*clamped_values = *values;
}
values++;
clamped_values++;
}
}
//----------------------------------------------------------------------------
int vtkMath::GetScalarTypeFittingRange(
double range_min, double range_max, double scale, double shift)
{
class TypeRange
{
public:
int Type;
double Min;
double Max;
};
TypeRange FloatTypes[] =
{
{ VTK_FLOAT, VTK_FLOAT_MIN, VTK_FLOAT_MAX },
{ VTK_DOUBLE, VTK_DOUBLE_MIN, VTK_DOUBLE_MAX }
};
TypeRange IntTypes[] =
{
{ VTK_BIT, VTK_BIT_MIN, VTK_BIT_MAX },
{ VTK_CHAR, VTK_CHAR_MIN, VTK_CHAR_MAX },
{ VTK_SIGNED_CHAR, VTK_SIGNED_CHAR_MIN, VTK_SIGNED_CHAR_MAX },
{ VTK_UNSIGNED_CHAR, VTK_UNSIGNED_CHAR_MIN, VTK_UNSIGNED_CHAR_MAX },
{ VTK_SHORT, VTK_SHORT_MIN, VTK_SHORT_MAX },
{ VTK_UNSIGNED_SHORT, VTK_UNSIGNED_SHORT_MIN, VTK_UNSIGNED_SHORT_MAX },
{ VTK_INT, VTK_INT_MIN, VTK_INT_MAX },
{ VTK_UNSIGNED_INT, VTK_UNSIGNED_INT_MIN, VTK_UNSIGNED_INT_MAX },
{ VTK_LONG,
static_cast<double>(VTK_LONG_MIN),
static_cast<double>(VTK_LONG_MAX) },
{ VTK_UNSIGNED_LONG,
static_cast<double>(VTK_UNSIGNED_LONG_MIN),
static_cast<double>(VTK_UNSIGNED_LONG_MAX) },
{ VTK_LONG_LONG,
static_cast<double>(VTK_LONG_LONG_MIN),
static_cast<double>(VTK_LONG_LONG_MAX) },
{ VTK_UNSIGNED_LONG_LONG,
static_cast<double>(VTK_UNSIGNED_LONG_LONG_MIN),
static_cast<double>(VTK_UNSIGNED_LONG_LONG_MAX) }
};
// If the range, scale or shift are decimal number, just browse
// the decimal types
double intpart;
int range_min_is_int = (modf(range_min, &intpart) == 0.0);
int range_max_is_int = (modf(range_max, &intpart) == 0.0);
int scale_is_int = (modf(scale, &intpart) == 0.0);
int shift_is_int = (modf(shift, &intpart) == 0.0);
range_min = range_min * scale + shift;
range_max = range_max * scale + shift;
if (range_min_is_int && range_max_is_int && scale_is_int && shift_is_int)
{
for (unsigned int i = 0; i < sizeof(IntTypes) / sizeof(TypeRange); i++)
{
if (IntTypes[i].Min <= range_min && range_max <= IntTypes[i].Max)
{
return IntTypes[i].Type;
}
}
}
for (unsigned int i = 0; i < sizeof(FloatTypes) / sizeof(TypeRange); i++)
{
if (FloatTypes[i].Min <= range_min && range_max <= FloatTypes[i].Max)
{
return FloatTypes[i].Type;
}
}
return -1;
}
//----------------------------------------------------------------------------
int vtkMath::GetAdjustedScalarRange(
vtkDataArray *array, int comp, double range[2])
{
if (!array || comp < 0 || comp >= array->GetNumberOfComponents())
{
return 0;
}
array->GetRange(range, comp);
switch (array->GetDataType())
{
case VTK_UNSIGNED_CHAR:
range[0] = static_cast<double>(array->GetDataTypeMin());
range[1] = static_cast<double>(array->GetDataTypeMax());
break;
case VTK_UNSIGNED_SHORT:
range[0] = static_cast<double>(array->GetDataTypeMin());
if (range[1] <= 4095.0)
{
if (range[1] > VTK_UNSIGNED_CHAR_MAX)
{
range[1] = 4095.0;
}
}
else
{
range[1] = static_cast<double>(array->GetDataTypeMax());
}
break;
default:
assert("check: impossible case." && 0); // reaching this line is a bug.
break;
}
return 1;
}
//----------------------------------------------------------------------------
vtkTypeBool vtkMath::ExtentIsWithinOtherExtent(int extent1[6], int extent2[6])
{
if (!extent1 || !extent2)
{
return 0;
}
int i;
for (i = 0; i < 6; i += 2)
{
if (extent1[i] < extent2[i] || extent1[i] > extent2[i + 1] ||
extent1[i + 1] < extent2[i] || extent1[i + 1] > extent2[i + 1])
{
return 0;
}
}
return 1;
}
//----------------------------------------------------------------------------
vtkTypeBool vtkMath::BoundsIsWithinOtherBounds(double bounds1[6], double bounds2[6], double delta[3])
{
if(!bounds1 || !bounds2)
{
return 0;
}
for(int i=0;i<6;i+=2)
{
if(bounds1[i]+delta[i/2] < bounds2[i] || bounds1[i]-delta[i/2] > bounds2[i+1] ||
bounds1[i+1]+delta[i/2] < bounds2[i] || bounds1[i+1]-delta[i/2] > bounds2[i+1])
return 0;
}
return 1;
}
//----------------------------------------------------------------------------
vtkTypeBool vtkMath::PointIsWithinBounds(double point[3], double bounds[6], double delta[3])
{
if(!point || !bounds || !delta)
{
return 0;
}
for(int i=0;i<3;i++)
{
if(point[i]+delta[i] < bounds[2*i] || point[i]-delta[i] > bounds[2*i+1])
{
return 0;
}
}
return 1;
}
//-----------------------------------------------------------------------------
double vtkMath::AngleBetweenVectors(const double v1[3], const double v2[3])
{
double cross[3];
vtkMath::Cross(v1, v2, cross);
return atan2(vtkMath::Norm(cross), vtkMath::Dot(v1, v2));
}
//----------------------------------------------------------------------------
double vtkMath::GaussianAmplitude(const double variance, const double distanceFromMean)
{
return 1./(sqrt(2.*vtkMath::Pi() * variance)) * exp(-(pow(distanceFromMean,2))/(2.*variance));
}
//----------------------------------------------------------------------------
double vtkMath::GaussianAmplitude(const double mean, const double variance, const double position)
{
double distanceToMean = std::abs(mean-position);
return GaussianAmplitude(variance, distanceToMean);
}
//----------------------------------------------------------------------------
double vtkMath::GaussianWeight(const double variance, const double distanceFromMean)
{
return exp(-(pow(distanceFromMean,2))/(2.*variance));
}
//----------------------------------------------------------------------------
double vtkMath::GaussianWeight(const double mean, const double variance, const double position)
{
double distanceToMean = std::abs(mean-position);
return GaussianWeight(variance, distanceToMean);
}
//----------------------------------------------------------------------------
double vtkMath::Solve3PointCircle(const double p1[3], const double p2[3],
const double p3[3], double center[3])
{
double v21[3], v32[3], v13[3];
double v12[3], v23[3], v31[3];
for (int i = 0; i < 3; ++i)
{
v21[i] = p1[i] - p2[i];
v32[i] = p2[i] - p3[i];
v13[i] = p3[i] - p1[i];
v12[i] = -v21[i];
v23[i] = -v32[i];
v31[i] = -v13[i];
}
double norm12 = vtkMath::Norm(v12);
double norm23 = vtkMath::Norm(v23);
double norm13 = vtkMath::Norm(v13);
double crossv21v32[3];
vtkMath::Cross(v21, v32, crossv21v32);
double normCross = vtkMath::Norm(crossv21v32);
double radius = (norm12 * norm23 * norm13) / (2. * normCross);
double alpha = ((norm23 * norm23) * vtkMath::Dot(v21, v31)) /
(2. * normCross * normCross);
double beta = ((norm13 * norm13) * vtkMath::Dot(v12, v32)) /
(2. * normCross * normCross);
double gamma = ((norm12 * norm12) * vtkMath::Dot(v13, v23)) /
(2. * normCross * normCross);
for (int i = 0; i < 3; ++i)
{
center[i] = alpha * p1[i] + beta * p2[i] + gamma * p3[i];
}
return radius;
}
//----------------------------------------------------------------------------
void vtkMath::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Seed: " << vtkMath::Internal->Uniform->GetSeed() << "\n";
}
//----------------------------------------------------------------------------
double vtkMath::Inf()
{
#if defined(VTK_HAS_STD_NUMERIC_LIMITS)
return std::numeric_limits<double>::infinity();
#elif defined(__BORLANDC__)
return *reinterpret_cast<double*>(&vtkMathInfBits);
#else
return vtkMathInfBits.d;
#endif
}
//----------------------------------------------------------------------------
double vtkMath::NegInf()
{
#if defined(VTK_HAS_STD_NUMERIC_LIMITS)
return -std::numeric_limits<double>::infinity();
#elif defined(__BORLANDC__)
return *reinterpret_cast<double*>(&vtkMathNegInfBits);
#else
return vtkMathNegInfBits.d;
#endif
}
//----------------------------------------------------------------------------
double vtkMath::Nan()
{
#if defined(VTK_HAS_STD_NUMERIC_LIMITS)
return std::numeric_limits<double>::quiet_NaN();
#elif defined(__BORLANDC__)
return *reinterpret_cast<double*>(&vtkMathNanBits);
#else
return vtkMathNanBits.d;
#endif
}
//-----------------------------------------------------------------------------
#ifndef VTK_MATH_ISINF_IS_INLINE
vtkTypeBool vtkMath::IsInf(double x)
{
#if defined(VTK_NON_FINITE_CAUSES_EXCEPTIONS)
// If we cannot do comparisons to non-finite numbers without causing floating
// point exceptions, we better fall back to IEEE-754 bit comparisons.
// IEEE-754 infinites have all of their exponent set and none of their
// mantissa set.
vtkTypeInt64 xbits = *reinterpret_cast<vtkTypeInt64*>(&x);
return ( ((xbits & vtkMathDoubleExponent) == vtkMathDoubleExponent)
&& ((xbits & vtkMathDoubleMantissa) == 0) );
#else
return ( !vtkMath::IsNan(x)
&& !((x < vtkMath::Inf()) && (x > vtkMath::NegInf())) );
#endif
}
#endif
//-----------------------------------------------------------------------------
#ifndef VTK_MATH_ISNAN_IS_INLINE
vtkTypeBool vtkMath::IsNan(double x)
{
#if defined(VTK_NON_FINITE_CAUSES_EXCEPTIONS)
// If we cannot do comparisons to non-finite numbers without causing floating
// point exceptions, we better fall back to IEEE-754 bit comparisons.
// IEEE-754 NaNs have all of their exponent set and at least one bit in
// their mantissa set.
vtkTypeInt64 xbits = *reinterpret_cast<vtkTypeInt64*>(&x);
return ( ((xbits & vtkMathDoubleExponent) == vtkMathDoubleExponent)
&& ((xbits & vtkMathDoubleMantissa) != 0) );
#else
return !((x <= 0.0) || (x >= 0.0));
#endif
}
#endif
//-----------------------------------------------------------------------------
#ifndef VTK_MATH_ISFINITE_IS_INLINE
bool vtkMath::IsFinite(double x)
{
return !vtkMath::IsNan(x) && !vtkMath::IsInf(x);
}
#endif
|