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
|
ITK Release 2.6
===============
This release covers the period December 1, 2005 through March 11, 2006.
Schedule
--------
Release Number Start Date End Date
-------------------------------- ------------------ ------------------
Last period for adding classes January 15 2006 February 11 2006
Feature freeze February 12 2006 February 26 2006
CVS Tagging March 11, 2006 March 11, 2006
Testing tarballs March 11, 2006 March 13, 2006
Posting tarballs March 14 2006 March 14 2006
New Classes in this Release
---------------------------
Code/Algorithms/itkBayesianClassifierInitializationImageFilter
Code/BasicFilters/itkInvertIntensityImageFilter
Code/BasicFilters/itkModulusImageFilter
Code/BasicFilters/itkMorphologicalGradientImageFilter
Code/Common/itkCovariantVector
Code/Common/itkSumOfSquaresImageFunction
Code/Review/CMakeLists.txt
Code/Review/itkThresholdMaximumConnectedComponentsImageFilter
Code/Review/README.txt
New Tests in this Release
-------------------------
Testing/Code/Common/itkMeshSourceGraftOutputTest
Testing/Code/Common/itkTransformsSetParametersTest
Testing/Code/BasicFilters/itkInvertIntensityImageFilterTest
Testing/Code/BasicFilters/itkMaskNeighborhoodOperatorImageFilterTest
Testing/Code/BasicFilters/itkMatrixIndexSelectionImageFilterTest
Testing/Code/BasicFilters/itkModulusImageFilterTest
Testing/Code/BasicFilters/itkMorphologicalGradientImageFilterTest
Testing/Code/BasicFilters/itkNotImageFilterTest
Testing/Code/BasicFilters/itkPushPopTileImageFilterTest
Testing/Code/BasicFilters/itkTernaryMagnitudeSquaredImageFilterTest
Testing/Code/BasicFilters/itkVectorConnectedComponentImageFilterTest
Testing/Code/IO/itkRawImageIOTest5
Testing/Code/Numerics/NeuralNetworks/itkNeuralNetworkTests3
Testing/Code/Review/CMakeLists.txt
Testing/Code/Review/itkReviewHeaderTest
Testing/Code/Review/itkReviewPrintTest
Testing/Code/Review/itkReviewTests
Testing/Code/Review/itkThresholdMaximumConnectedComponentsImageFilterTest
Testing/Code/Review/README.txt
New Examples in this Release
----------------------------
Examples/Filtering/FilteringExamples8
Examples/IO/ImageReadExtractFilterInsertWrite
Examples/Statistics/BayesianClassifier
Examples/Statistics/BayesianClassifierInitializer
Examples/Statistics/StatisticsExamplesTests4
New Utilities in this Release
-----------------------------
Utilities/Dart/NewSince.csh.in
Utilities/Dart/NewSince.gawk
Utilities/Doxygen/cvsVersionFilter.
Utilities/gdcm/CMake/CTestCustom.ctest.in
Utilities/gdcm/CMake/FindRsync.cmake
Utilities/gdcm/Dicts/ACUSON.d
Utilities/gdcm/Dicts/DictGroupName.d
Utilities/gdcm/Dicts/ELSCINT.d
Utilities/gdcm/Dicts/gdcm.dic.in
Utilities/gdcm/Dicts/GE-EchoPAC.d
Utilities/gdcm/Dicts/GEMS-Advance.d
Utilities/gdcm/Dicts/GEMS-Advantx.d
Utilities/gdcm/Dicts/GEMS-CR.d
Utilities/gdcm/Dicts/GEMS.d
Utilities/gdcm/Dicts/GEMS-DLX.d
Utilities/gdcm/Dicts/GEMS-Genie.d
Utilities/gdcm/Dicts/GEMS-HiSpeed.d
Utilities/gdcm/Dicts/GEMS-Infinia.d
Utilities/gdcm/Dicts/HITACHI-MR-pronto.d
Utilities/gdcm/Dicts/NIH.d
Utilities/gdcm/Dicts/Papyrus.d
Utilities/gdcm/Dicts/ParseDict.py
Utilities/gdcm/Dicts/PHILIPS-EasyVision.d
Utilities/gdcm/Dicts/PHILIPS-Intera.d
Utilities/gdcm/Dicts/SIEMENS.d
Utilities/gdcm/Dicts/SIEMENS-syngo.d
Utilities/gdcm/Dicts/SPI.d
Utilities/gdcm/src/gdcmArgMgr
Utilities/gdcm/src/gdcmDicomDirVisit
Utilities/gdcm/src/gdcmDictGroupName
Utilities/gdcm/src/gdcmMpeg
Utilities/gdcm/src/gdcmValidator
Utilities/kwsys/DynamicLoader
Utilities/kwsys/DynamicLoader.hxx.in
Utilities/kwsys/String.hxx.in
Utilities/kwsys/testDynamicLoader
Utilities/kwsys/testDynload
Utilities/openjpeg/bio
Utilities/openjpeg/cio
Utilities/openjpeg/CMakeLists.txt
Utilities/openjpeg/dwt
Utilities/openjpeg/event
Utilities/openjpeg/fix
Utilities/openjpeg/image
Utilities/openjpeg/int
Utilities/openjpeg/j2k
Utilities/openjpeg/j2k_lib
Utilities/openjpeg/jp2
Utilities/openjpeg/jpt
Utilities/openjpeg/mct
Utilities/openjpeg/mqc
Utilities/openjpeg/.NoDartCoverage
Utilities/openjpeg/openjpeg
Utilities/openjpeg/opj_includes
Utilities/openjpeg/pi
Utilities/openjpeg/raw
Utilities/openjpeg/README.ITK.txt
Utilities/openjpeg/t1
Utilities/openjpeg/t2
Utilities/openjpeg/tcd
Utilities/openjpeg/tgt
Changes in this Release
-----------------------
CMakeLists.txt
ENH: ExceptionObject now reports method name.
itkConfigure.h.in
ENH: ExceptionObject now reports method name.
itkIncludeDirectories.cmake
BUG: expat is installed, but ITK_INCLUDE_DIRS fail to report so, therefore any external projects trying to use an installed ITK will fail as soon as a file like itkXMLFile.h is included (it requires expat.h).
CMake/CheckCPPDirective.cmake
ENH: ExceptionObject now reports method name.
CMake/CheckCPPDirectiveExists.cxx.in
ENH: better Borland support.
CMake/InsightValgrind.supp
ENH: Valgrind suppressions with libstdc++.so.6
Code/CMakeLists.txt
Code/Algorithms/itkBayesianClassifierImageFilter
STYLE: Add NAMIC attribution
COMP: Stupid error. Calling things from typedef prior to declaring
COMP: Borland issues. Use the GetStaticConstMacro to fetch Dimension
Code/Algorithms/itkBayesianClassifierImageFilter
STYLE: indentation.
Code/Algorithms/itkBayesianClassifierInitializationImageFilter
STYLE: Add NAMIC attribution
COMP: Borland issues. Use the GetStaticConstMacro to fetch Dimension
Code/Algorithms/itkBayesianClassifierInitializationImageFilter
COMP: cannot assign a T to a Vector< T, 1 > on VS6 apparently
ENH: VS typename issues.
ENH: Filter to initialize the bayesian classifer filter with a membership image
Code/Algorithms/itkBinaryMedialNodeMetric
ENH: Move include from header to implementation
Code/Algorithms/itkBinaryMedialNodeMetr
ENH: Move include from header to implementation
Code/Algorithms/itkBioCell
STYLE: Some style cleanup
Code/Algorithms/itkBioCell
STYLE: Some style cleanup
Code/Algorithms/itkBioCellBase
STYLE: Some style cleanup
Code/Algorithms/itkBioCellularAggregate
STYLE: Some style cleanup
Code/Algorithms/itkBioCellularAggregate
STYLE: Some style cleanup
Code/Algorithms/itkBioCellularAggregateBase
STYLE: Some style cleanup
Code/Algorithms/itkBioGenome
STYLE: Some style cleanup
Code/Algorithms/itkClassifierBase
STYLE: Some style cleanup
Code/Algorithms/itkClassifierBase
STYLE: Some style cleanup
Code/Algorithms/itkCurvatureRegistrationFilter
STYLE: Some style cleanup
Code/Algorithms/itkDeformableSimplexMesh3DBalloonForceFilter
STYLE: Some style cleanup
Code/Algorithms/itkDeformableSimplexMesh3DBalloonForceFilter
STYLE: Some style cleanup
Code/Algorithms/itkDeformableSimplexMesh3DFilter
STYLE: Some style cleanup
Code/Algorithms/itkDeformableSimplexMesh3DFilter
STYLE: Some style cleanup
Code/Algorithms/itkDeformableSimplexMesh3DGradientConstraintForceFilter
COMP: warnings.
Code/Algorithms/itkFEMRegistrationFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkFastMarchingImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkGradientDifferenceImageToImageMetric
BUG: #2543. BoundaryCondotion objects are now ivars.
Code/Algorithms/itkGradientDifferenceImageToImageMetr
BUG: removed debugging statements.
Code/Algorithms/itkHistogramImageToImageMetr
BUG: throw exception before checking derivate sizes.
Code/Algorithms/itkHistogramMatchingImageFilter
COMP: Fixed typecasting to remove compiler warnings for all histogram image types.
Code/Algorithms/itkImageGaussianModelEstimator
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkImageKmeansModelEstimator
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkImageRegistrationMethod
COMP: some intel compilers have trouble with data allocated in the catch (apparently).
Code/Algorithms/itkIsoContourDistanceImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkKappaStatisticImageToImageMetric
Code/Algorithms/itkKappaStatisticImageToImageMetr
Code/Algorithms/itkMIRegistrationFunction
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkMRFImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkMeanSquareRegistrationFunction
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkMinMaxCurvatureFlowFunction
BUG: Fix compiler errors when non-double pixel types are used. See InsightJournal review for MATITK
Code/Algorithms/itkMultiResolutionImageRegistrationMethod
stl/Vector.html) VS8 has stricter checks and managed to catch the bug.
Code/Algorithms/itkNCCRegistrationFunction
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkRayCastInterpolateImageFunction
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkRegularSphereMeshSource
STYLE: Some style cleanup
Code/Algorithms/itkRegularSphereMeshSource
STYLE: Some style cleanup
Code/Algorithms/itkStructHashFunction
STYLE: Some style cleanup
Code/Algorithms/itkVnlFFTRealToComplexConjugateImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Algorithms/itkVoronoiSegmentationImageFilterBase
BUG: compilation errors repaired.
Code/Algorithms/itkVoronoiSegmentationImageFilterBase
BUG: compilation errors repaired.
Code/Algorithms/itkVoronoiSegmentationRGBImageFilter
Code/BasicFilters/itkAbsImageFilter
COMP: warnings about unused parameter.
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkAbsoluteValueDifferenceImageFilter
COMP: warnings about unused parameter.
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkAccumulateImageFilter
STYLE: indentation.
Code/BasicFilters/itkAcosImageFilter
COMP: warnings about unused parameter.
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkAdaptImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkAdaptiveHistogramEqualizationImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkAddImageFilter
COMP: warnings about unused parameter.
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkAndImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkAnisotropicDiffusionImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkAsinImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkAtan2ImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkAtanImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkBSplineCenteredL2ResampleImageFilterBase
ENH: better Exception description.
Code/BasicFilters/itkBSplineCenteredResampleImageFilterBase
ENH: better Exception description.
Code/BasicFilters/itkBSplineDecompositionImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkBSplineInterpolateImageFunction
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkBSplineL2ResampleImageFilterBase
ENH: better Exception description.
Code/BasicFilters/itkBSplineResampleImageFilterBase
ENH: better Exception description.
Code/BasicFilters/itkBilateralImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkBinaryErodeImageFilter
STYLE: removed dummy variable access.
Code/BasicFilters/itkBinaryFunctorImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkBinaryMagnitudeImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkBinaryMedianImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkBinaryMorphologyImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkBinaryThresholdImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
ENH: remove redundant dim parameter from itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
Code/BasicFilters/itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
ENH: remove redundant dim parameter from itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
Code/BasicFilters/itkBoundedReciprocalImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCastImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkChangeLabelImageFilter
COMP: Fix for bug 2753: itkChangeLabelImageFilter.h -- ChangeLabel::SetChangeMap not const-correct.
Code/BasicFilters/itkClosingByReconstructionImageFilter
ENH: added flag to preserve original intesities.
Code/BasicFilters/itkClosingByReconstructionImageFilter
BUG: PrintSelf defect.
Code/BasicFilters/itkComplexToImaginaryImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkComplexToModulusImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkComplexToPhaseImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkComplexToRealImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCompose2DCovariantVectorImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCompose2DVectorImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCompose3DCovariantVectorImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCompose3DVectorImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkComposeRGBImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkConfidenceConnectedImageFilter
STYLE: Spelling
Code/BasicFilters/itkConfidenceConnectedImageFilter
ENH: Corrected several calculations and improved performance
Code/BasicFilters/itkConnectedComponentFunctorImageFilter
BUG: must use NumericTraits to compare to non-zero.
Code/BasicFilters/itkConnectedComponentFunctorImageFilter
BUG: bad logic introduced in last checkin.
Code/BasicFilters/itkConnectedComponentImageFilter
BUG: must use NumericTraits to compare to non-zero.
Code/BasicFilters/itkConnectedComponentImageFilter
BUG: must use NumericTraits to compare to non-zero.
Code/BasicFilters/itkConstrainedValueAdditionImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkConstrainedValueDifferenceImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkCosImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkDeformationFieldJacobianDeterminantFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkDerivativeImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkDiffusionTensor3DReconstructionImageFilter
BUG: Sorry Bill. Didn't realize that you had commited a fix. Revert to Bills fix.
COMP: GetBValue is defined as a macro on windows. Need to undef it if present.
ENH: Allow for the DW gradient images to be specified as a single multi-component image (vectorimage) or as several itk::Images. The former is a convenient input from nrrd format for DWI images
Code/BasicFilters/itkDiffusionTensor3DReconstructionImageFilter
BUG: uninitialized ivar.
BUG: Check if container is null before printing it. (was causing print tests to segfault)
Code/BasicFilters/itkDiscreteGaussianImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkDivideImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkEdgePotentialImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkExpImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkExpNegativeImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkExtractImageFilter
Code/BasicFilters/itkFastIncrementalBinaryDilateImageFilter
BUG: missing include file for superclass.
Code/BasicFilters/itkGetAverageSliceImageFilter
ENH: this class is equivalent to AccumulateImageFilter with AveragingOn and a slightly different api. It is now a subclass of AccumulateImageFilter.
Code/BasicFilters/itkGetAverageSliceImageFilter
ENH: this class is equivalent to AccumulateImageFilter with AveragingOn and a slightly different api. It is now a subclass of AccumulateImageFilter.
Code/BasicFilters/itkGradientImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkGradientMagnitudeImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkGradientToMagnitudeImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkGrayscaleGeodesicDilateImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkGrayscaleGeodesicErodeImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkHoughTransform2DLinesImageFilter
Code/BasicFilters/itkIntensityWindowingImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkInteriorExteriorMeshFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkInvertIntensityImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkInvertIntensityImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkIterativeInverseDeformationFieldImageFilter
BUG: did not have progress. STYLE: did not have copyright. STYLE: indentation.
Code/BasicFilters/itkJoinImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkJoinSeriesImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkLaplacianImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkLaplacianSharpeningImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/Attic/itkLazyEdgeDetectionImageFilter3D
ENH: removed because it was a utility class for the removed class MidsagittalPlaneExtractionImageFilter.
Code/BasicFilters/Attic/itkLazyEdgeDetectionImageFilter3D
ENH: removed because it was a utility class for the removed class MidsagittalPlaneExtractionImageFilter.
Code/BasicFilters/itkLog10ImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkLogImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkMaskImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkMaskNegatedImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkMaskNeighborhoodOperatorImageFilter
Code/BasicFilters/itkMaskNeighborhoodOperatorImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkMatrixIndexSelectionImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkMaximumImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkMeanImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkMedianImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkMinimumImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkModulusImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkModulusImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkMorphologicalGradientImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkMorphologicalGradientImageFilter
ENH: new filters contributed by Gaetan Lehmann via the Insight Journal.
Code/BasicFilters/itkMorphologyImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkMultiplyImageFilter
COMP: warnings about unused parameter.
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkNarrowBandImageFilterBase
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkNaryAddImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkNaryMaximumImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkNeighborhoodOperatorImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkNoiseImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkNormalizedCorrelationImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkNotImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkObjectMorphologyImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkOpeningByReconstructionImageFilter
ENH: added flag to preserve original intesities.
Code/BasicFilters/itkOpeningByReconstructionImageFilter
ENH: added flag to preserve original intesities.
Code/BasicFilters/itkOrImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkParallelSparseFieldLevelSetImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkPasteImageFilter
Code/BasicFilters/itkPasteImageFilter
BUG: type in type names.
Code/BasicFilters/itkPermuteAxesImageFilter
ENH: better Exception description.
Code/BasicFilters/itkPolylineMask2DImageFilter
STYLE: Beef up the documentation (Andinet)
Code/BasicFilters/itkRGBToLuminanceImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkRecursiveSeparableImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkRegionOfInterestImageFilter
BUG: output region was not being set correctly.
Code/BasicFilters/itkRescaleIntensityImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkScalarConnectedComponentImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkShrinkImageFilter
BUG: Bug # 2811 A second call of Update() causes InvalidRequesedRegion Error.
Code/BasicFilters/itkShrinkImageFilter
BUG: Bug # 2811 A second call of Update() function causes InvalidRequesedRegion Error.
Code/BasicFilters/itkSigmoidImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkSimpleContourExtractorImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkSimplexMeshAdaptTopologyFilter
STYLE: Some style cleanup
Code/BasicFilters/itkSimplexMeshAdaptTopologyFilter
STYLE: Some style cleanup
Code/BasicFilters/itkSinImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkSobelEdgeDetectionImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkSparseFieldLevelSetImageFilter
BUG: Fix compiler errors when non-double pixel types are used. See InsightJournal review for MATITK
Code/BasicFilters/itkSqrtImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkSquareImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkSquaredDifferenceImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkSubtractImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkSymmetricEigenAnalysisImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTanImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTensorFractionalAnisotropyImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTensorRelativeAnisotropyImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTernaryAddImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTernaryFunctorImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkTernaryMagnitudeImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkTernaryMagnitudeSquaredImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkThresholdLabelerImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkTileImageFilter
BUG: Improper region calculation for output.
Code/BasicFilters/itkUnaryFunctorImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkVectorCastImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkVectorConfidenceConnectedImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkVectorConnectedComponentImageFilter
COMP: warnings about unused parameter.
COMP: typename issues with VS6.
Code/BasicFilters/itkVectorExpandImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkVectorGradientMagnitudeImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkVectorIndexSelectionCastImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkVectorNeighborhoodOperatorImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkVectorResampleImageFilter
ENH: Allow user to specify precision. STYLE: GetObject change to GetConstObject.
ENH: follows same logic as ResampleImageFilter. BUG: was not setting directions on output.
Code/BasicFilters/itkVectorResampleImageFilter
COMP: Set threads to 1 if Borland.
BUG: missing typedef. BUG: warnings.
Code/BasicFilters/itkVectorRescaleIntensityImageFilter
ENH: Added operator== and operator!=.
Code/BasicFilters/itkVotingBinaryImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkVotingBinaryIterativeHoleFillingImageFilter
STYLE: spelling.
Code/BasicFilters/itkWeightedAddImageFilter
ENH: added operator==and operator!= methods.
Code/BasicFilters/itkXorImageFilter
COMP: warnings about unused parameter.
Code/BasicFilters/itkZeroCrossingBasedEdgeDetectionImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/BasicFilters/itkZeroCrossingImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/CMakeLists.txt
ENH: Adding CrossProduct for 3D.
Code/Common/itkAnnulusOperator
BUG: Incorrect define prevents Sobel include
Code/Common/itkBSplineDerivativeKernelFunction
STYLE: Some style cleanup
Code/Common/itkBSplineInterpolationWeightFunction
STYLE: Some style cleanup
Code/Common/itkBSplineInterpolationWeightFunction
STYLE: Some style cleanup
Code/Common/itkBSplineKernelFunction
STYLE: Some style cleanup
Code/Common/itkBarrier
Code/Common/itkBarrier
Code/Common/itkBinaryBallStructuringElement
STYLE: no need for itk:: withing itk namespace.
Code/Common/itkBinaryThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkBinaryThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkBinaryThresholdSpatialFunction
STYLE: Some style cleanup
Code/Common/itkBloxBoundaryPointImage
COMP: Move traits around for the sun compilers
Code/Common/itkBloxBoundaryProfileItem
STYLE: Some style cleanup
Code/Common/itkBloxBoundaryProfileItem
STYLE: Some style cleanup
Code/Common/itkBloxImage
COMP: Move traits around for the sun compilers
Code/Common/itkBloxItem
Code/Common/itkBluePixelAccessor
ENH: Added operator== and operator!=.
Code/Common/itkCenteredAffineTransform
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkCenteredEuler3DTransform
Code/Common/itkCenteredRigid2DTransform
ENH: simplify modified time computation.
BUG: was not setting modified times.
Code/Common/itkCenteredSimilarity2DTransform
Code/Common/itkCentralDifferenceImageFunction
STYLE: Some style cleanup
Code/Common/itkCentralDifferenceImageFunction
STYLE: Some style cleanup
Code/Common/itkChainCodePath
STYLE: Some style cleanup
Code/Common/itkChainCodePath2D
STYLE: Some style cleanup
Code/Common/itkChainCodePath2D
STYLE: Some style cleanup
Code/Common/itkConceptChecking
STYLE: Some style cleanup
Code/Common/itkConditionVariable
STYLE: Some style cleanup
Code/Common/itkConditionVariable
STYLE: Some style cleanup
Code/Common/itkCovarianceImageFunction
STYLE: Some style cleanup
Code/Common/itkCovarianceImageFunction
STYLE: Some style cleanup
Code/Common/itkCovariantVector
ENH: Adding CrossProduct for 3D.
Code/Common/itkCovariantVector
COMP: warnings regarding placement of inline modifier.
COMP: Keep vs60 happy
COMP: Borland gets confused by a templated premultiply operator.. Force it to be a scalar of the same scalar type as the vector is templated over, so borland is now forced to recognize it as a scalar
ENH: Adding CrossProduct for 3D.
Code/Common/itkCovariantVector
Code/Common/itkDataObject
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkDataObject
COMP: warnings.
Code/Common/itkDirectory
COMP: Fix compilation
Code/Common/itkDirectory
COMP: Fix compilation
Code/Common/itkEuler3DTransform
COMP: Warnings
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkExceptionObject
COMP: __FUNCTION__ is only valid within a function.
Code/Common/itkExtrapolateImageFunction
STYLE: Some style cleanup
Code/Common/itkFastMutexLock
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code). Also fix some minor style
Code/Common/itkFiniteDifferenceImageFilter
STYLE: doxygen cleanups
Code/Common/itkFiniteDifferenceImageFilter
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkFourierSeriesPath
STYLE: Some style cleanup
Code/Common/itkFourierSeriesPa
STYLE: Some style cleanup
Code/Common/itkFunctionBase
STYLE: Some style cleanup
Code/Common/itkGaussianBlurImageFunction
STYLE: Some style cleanup
Code/Common/itkGaussianBlurImageFunction
STYLE: Some style cleanup
Code/Common/itkGaussianDerivativeImageFunction
STYLE: Some style cleanup
Code/Common/itkGaussianDerivativeImageFunction
STYLE: Some style cleanup
Code/Common/itkGaussianKernelFunction
STYLE: Some style cleanup
Code/Common/itkGaussianOperator
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkGreenPixelAccessor
ENH: Added operator== and operator!=.
Code/Common/itkHexahedronCell
ENH: Added EvaluatePosition()
Code/Common/itkHexahedronCell
ENH: Added EvaluatePosition()
Code/Common/itkImage
COMP: Move traits around for the sun compilers
Code/Common/itkImage
COMP: warnings.
Code/Common/itkImageAdaptor
COMP: Move traits around for the sun compilers
Code/Common/itkImageAdaptor
Code/Common/itkImageBase
COMP: Move traits around for the sun compilers
Code/Common/itkImageBase
COMP: warnings.
Code/Common/itkImageConstIteratorWithIndex
BUG: SetBegin should set the pointer to the begin of the buffer. was setting the one that pointed to the begin of the region instead
Code/Common/itkImageFunction
BUG: Wrong argument type was used for a continuous index output
STYLE: Some style cleanup
Code/Common/itkImageFunction
STYLE: Some style cleanup
Code/Common/itkImageRegionConstIterator
COMP: Fix for bug 2781, wherein some copy constructors for imageRegion[Const]Iterator do not compile.
Code/Common/itkImageRegionIterator
COMP: Fix for bug 2781, wherein some copy constructors for imageRegion[Const]Iterator do not compile.
Code/Common/itkImageRegionIterator
COMP: Fix for bug 2781, wherein some copy constructors for imageRegion[Const]Iterator do not compile.
Code/Common/itkImageSource
Code/Common/itkImageSource
Code/Common/itkImageToImageFilter
BUG: un-hide methods from superclass
Code/Common/itkImageToImageFilter
Code/Common/itkImportImageContainer
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkIterationReporter
STYLE: Some style cleanup
Code/Common/itkKLMSegmentationBorder
STYLE: Some style cleanup
Code/Common/itkKLMSegmentationBorder
STYLE: Some style cleanup
Code/Common/itkKLMSegmentationRegion
STYLE: Some style cleanup
Code/Common/itkKLMSegmentationRegion
STYLE: Some style cleanup
Code/Common/itkKernelFunction
STYLE: Some style cleanup
Code/Common/itkKernelTransform
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkLandmarkBasedTransformInitializer
BUG: bug 2632. Else check should have set angle to 90 degrees
Code/Common/itkLevelSet
STYLE: Some style cleanup
Code/Common/itkLightObject
STYLE: Some style cleanup
Code/Common/itkLightObject
STYLE: Some style cleanup
Code/Common/itkLinearInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkLinearInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkLogOutput
STYLE: Some style cleanup
Code/Common/itkLogger
STYLE: Some style cleanup
Code/Common/itkLoggerBase
STYLE: Some style cleanup
Code/Common/itkLoggerManager
STYLE: Some style cleanup
Code/Common/itkLoggerThreadWrapper
STYLE: Some style cleanup
Code/Common/itkLoggerThreadWrapper
BUG: Did not have blockers for includes.
Code/Common/itkMacro
BUG: cygwin does not have __FUNCSIG__.
ENH: More descriptive ExceptionMacro.
Code/Common/itkMahalanobisDistanceThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkMahalanobisDistanceThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkMapContainer
Code/Common/itkMapContainer
Code/Common/itkMatrixOffsetTransformBase
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkMeanImageFunction
STYLE: Some style cleanup
Code/Common/itkMeanImageFunction
STYLE: Some style cleanup
Code/Common/itkMedianImageFunction
STYLE: Some style cleanup
Code/Common/itkMedianImageFunction
STYLE: Some style cleanup
Code/Common/itkMeshSource
Code/Common/itkMeshSource
Code/Common/itkMetaDataObject
STYLE: Already within the itk namespace
Code/Common/itkMultipleLogOutput
STYLE: Some style cleanup
Code/Common/itkNearestNeighborExtrapolateImageFunction
STYLE: Some style cleanup
Code/Common/itkNearestNeighborInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkNeighborhoodBinaryThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkNeighborhoodBinaryThresholdImageFunction
STYLE: Some style cleanup
Code/Common/itkNeighborhoodIterator
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkNeighborhoodOperatorImageFunction
STYLE: Some style cleanup
Code/Common/itkNeighborhoodOperatorImageFunction
STYLE: Some style cleanup
Code/Common/itkNumericTraitsCovariantVectorPixel
STYLE: Some style cleanup
Code/Common/itkNumericTraitsTensorPixel
STYLE: Some style cleanup
Code/Common/itkNumericTraitsVectorPixel
STYLE: Some style cleanup
Code/Common/itkObject
STYLE: Some style cleanup
Code/Common/itkOctree
STYLE: Some style cleanup
Code/Common/itkOctree
STYLE: Some style cleanup
Code/Common/itkOctreeNode
STYLE: Some style cleanup
Code/Common/itkOctreeNode
STYLE: Some style cleanup
Code/Common/itkOrientedImage
COMP: Move traits around for the sun compilers
Code/Common/itkPCAShapeSignedDistanceFunction
STYLE: Some style cleanup
Code/Common/itkPCAShapeSignedDistanceFunction
STYLE: Some style cleanup
Code/Common/itkParametricPa
STYLE: Some style cleanup
Code/Common/itkParametricPath
STYLE: Some style cleanup
Code/Common/itkPath
ENH: Fix for bug 2918. Add PathDimension static constant to class.
Code/Common/itkPa
STYLE: Some style cleanup
Code/Common/itkPathFunctions
STYLE: Some style cleanup
Code/Common/itkPathSource
STYLE: Some style cleanup
Code/Common/itkPathSource
STYLE: Some style cleanup
Code/Common/itkPathToPathFilter
STYLE: Some style cleanup
Code/Common/itkPathToPathFilter
STYLE: Some style cleanup
Code/Common/itkPhasedArray3DSpecialCoordinatesImage
COMP: Move traits around for the sun compilers
Code/Common/itkPointSet
STYLE: Some style cleanup
Code/Common/itkPolyLineParametricPath
STYLE: Some style cleanup
Code/Common/itkPolyLineParametricPa
STYLE: Some style cleanup
Code/Common/itkProcessObject
Code/Common/itkProcessObject
Code/Common/itkProgressReporter
STYLE: Some style cleanup
Code/Common/itkQuaternionRigidTransform
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkRealTimeClock
STYLE: Already within the itk namespace
Code/Common/itkRedPixelAccessor
ENH: Added operator== and operator!=.
Code/Common/itkRigid2DTransform
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkRigid3DPerspectiveTransform
Code/Common/itkScalarToRGBPixelFunctor
STYLE: Some style cleanup
Code/Common/itkScalarToRGBPixelFunctor
STYLE: Some style cleanup
Code/Common/itkScaleLogarithmicTransform
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkScaleSkewVersor3DTransform
Code/Common/itkScaleTransform
BUG: 2769. SetParameters() method was missing to invoke Modified().
Code/Common/itkScatterMatrixImageFunction
STYLE: Some style cleanup
Code/Common/itkScatterMatrixImageFunction
STYLE: Some style cleanup
Code/Common/itkSegmentationBorder
STYLE: Some style cleanup
Code/Common/itkSegmentationBorder
STYLE: Some style cleanup
Code/Common/itkSegmentationRegion
STYLE: Some style cleanup
Code/Common/itkSegmentationRegion
STYLE: Some style cleanup
Code/Common/itkSemaphore
Code/Common/itkShapeSignedDistanceFunction
STYLE: Some style cleanup
Code/Common/itkSimilarity2DTransform
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkSimilarity3DTransform
Code/Common/itkSimpleFastMutexLock
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code). Also fix some minor style
Code/Common/itkSimpleFilterWatcher
ENH: Now uses TimeProbe.
Code/Common/itkSimpleFilterWatcher
STYLE: Some style cleanup
Code/Common/itkSmartPointer
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code). Also fix some minor style
Code/Common/itkSmartPointerForwardReference
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code). Also fix some minor style
Code/Common/itkSmartPointerForwardReference
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code). Also fix some minor style
Code/Common/itkSparseImage
COMP: Move traits around for the sun compilers
Code/Common/itkSpecialCoordinatesImage
COMP: Move traits around for the sun compilers
Code/Common/itkSphereSignedDistanceFunction
STYLE: Some style cleanup
Code/Common/itkSphereSignedDistanceFunction
STYLE: Some style cleanup
Code/Common/itkStdStreamLogOutput
STYLE: Some style cleanup
Code/Common/itkSumOfSquaresImageFunction
COMP: warnings,
ENH: Function to calculate the sum of squares in a neighborhood
Code/Common/itkSumOfSquaresImageFunction
STYLE: Some style cleanup
Code/Common/itkTestMain
ENH: moved code into .h file.
Code/Common/itkTetrahedronCell
STYLE: indentation
Code/Common/itkThreadLogger
STYLE: Some style cleanup
Code/Common/itkTimeProbe
STYLE: Some style cleanup
Code/Common/itkTranslationTransform
STYLE: no need for this dereference.
COMP: Type mismatch on method.
Code/Common/itkTreeIteratorBase
ENH: more consistent use of ExceptionMacro and ExceptionObject.
Code/Common/itkVariableLengthVector
ENH: Add GetSquaredNorm method to class
ENH: premultiplication with scalars
Code/Common/itkVariableLengthVector
ENH: Add GetSquaredNorm method to class
Code/Common/itkVarianceImageFunction
STYLE: Some style cleanup
Code/Common/itkVarianceImageFunction
STYLE: Some style cleanup
Code/Common/itkVector
COMP: warnings regarding placement of inline modifier.
COMP: Borland gets confused by a templated premultiply operator.. Force it to be a scalar of the same scalar type as the vector is templated over, so borland is now forced to recognize it as a scalar
ENH: Premultiply operator for product of scalar and a vector, from Casey Goodlett
Code/Common/itkVector
Code/Common/itkVectorContainer
Code/Common/itkVectorContainer
Code/Common/itkVectorImage
STYLE: More documentation
COMP: Move traits around for the sun compilers
Code/Common/itkVectorImage
Code/Common/itkVectorImageToImageAdaptor
BUG: The vector image returns a pixel created on the stack, not a reference to a pixel
COMP: Move traits around for the sun compilers
Code/Common/itkVectorInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkVectorLinearInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkVectorLinearInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkVectorMeanImageFunction
STYLE: Some style cleanup
Code/Common/itkVectorMeanImageFunction
STYLE: Some style cleanup
Code/Common/itkVectorNearestNeighborInterpolateImageFunction
ENH: moved code into .h file.
STYLE: Some style cleanup
Code/Common/itkVectorNearestNeighborInterpolateImageFunction
private/insight-developers/2006-February/007646.html
STYLE: Some style cleanup
Code/Common/itkVersor
Code/Common/itkVersorRigid3DTransform
Code/Common/itkVersorTransform
ENH: Now invoking Modified() from SetIdentity().
Code/Common/itkWindowedSincInterpolateImageFunction
STYLE: Some style cleanup
Code/Common/itkWindowedSincInterpolateImageFunction
STYLE: Some style cleanup
Code/IO/itkAnalyzeImageIO
ENH: better exception reporting.
Code/IO/itkBMPImageIO
ENH: Better exception reporting.
Code/IO/itkBrains2HeaderBase
STYLE: Some style cleanup
Code/IO/itkBrains2HeaderBase
STYLE: Some style cleanup
Code/IO/itkBrains2IPLHeaderInfo
STYLE: Some style cleanup
Code/IO/itkBrains2IPLHeaderInfo
STYLE: Some style cleanup
Code/IO/itkBrains2MaskHeaderInfo
STYLE: Some style cleanup
Code/IO/itkBrains2MaskHeaderInfo
STYLE: Some style cleanup
Code/IO/itkConvertPixelBuffer
Code/IO/itkConvertPixelBuffer
COMP: signed unsigned comparison warnings
Code/IO/itkDefaultConvertPixelTraits
COMP: Fix for bug 2725, which prevented compliation of IO using signed char traits on some compilers.
Code/IO/itkGDCMImageIO
BUG: When writting 3D images, it allowed to access the 3d component of the ITK Spacing.
ENH: Provide an helper function around the MetaDataDictionary. Make it more user oriented.
BUG: Do not propagate group length as computation is not done
ENH: better exception reporting.
STYLE: more consistent use of types.
Code/IO/itkGDCMImageIO
ENH: Provide an helper function around the MetaDataDictionary. Make it more user oriented.
ENH: Bring AddRestriction from the gdcm level to the itkGDCM level. Update example to show usage, add more doc.
Code/IO/itkGDCMSeriesFileNames
ENH: Update gdcm version to 1.2
Code/IO/itkGDCMSeriesFileNames
ENH: Rename AddRestriction into AddSeriesRestriction
Code/IO/itkGE4ImageIO
STYLE: Some style cleanup
Code/IO/itkGEImageHeader
STYLE: Some style cleanup
Code/IO/itkIPLCommonImageIO
BUG: Report orientation in direction cosines
Code/IO/itkIPLFileNameList
STYLE: Some style cleanup
Code/IO/itkImageFileReader
ENH: Better exception reporting.
ENH: Make DefaultConvertPixelTraits a trait of the image to make IO support of VectorImage consistent. Forward declare it so it doesn't increase parsing time.
Code/IO/itkImageFileReader
COMP: previous fix does not work for all pixel types... defer until its made correct
ENH: Better exception reporting.
Code/IO/itkImageFileWriter
ENH: Better exception reporting.
Code/IO/itkImageFileWriter
ENH: better exception message.
Code/IO/itkImageSeriesReader
STYLE: minor style
Code/IO/itkMetaImageIO
BUG: Peter Cech found typo that produced incorrect index to physical transform for origin update with direction cosines.
BUG: MetaIO now supports 64bit int on platforms having 64bit ints. Thanks to help from Robert Atwood at imperial.ac.uk
Code/IO/itkMetaImageIO
COMP: fixed member object reference
Code/IO/itkMvtSunf
STYLE: Some style cleanup
Code/IO/itkNiftiImageIO
BUG: suppress nifti library error messages
Code/IO/itkPNGImageIO
COMP: VS71 issues with exception macro.
ENH: better error messages
Code/IO/itkRawImageIO
Code/IO/itkTIFFImageIO
BUG: Remove previous commit, while avoiding compiler warning
Code/IO/itkVTKImageIO
ENH: Use the kwsys lib instead
Code/Numerics/Statistics/itkDenseFrequencyContainer
BUG: Minor.. remove \#defines that were left when copied over from older txx code
Code/Numerics/Statistics/itkDensityFunction
BUG: Base and superclass had the same method and ivar. Bug 2880
Code/Numerics/Statistics/itkMembershipFunctionBase
BUG: Base and superclass had the same method and ivar. Bug 2880
Code/Numerics/Statistics/itkSample
BUG: Use traits to give a default length to the samples, so the user does not need to call SetMeasurementVectorSize( .. ) if TMeasurementVector is a FixedArray, Vector etc
Code/Numerics/Statistics/itkSparseFrequencyContainer
BUG: Minor.. remove \#defines that were left when copied over from older txx code
Code/Review/CMakeLists.txt
ENH: CMakeLists.txt file for the classes that are in the review process.
Code/Review/README.txt
STYLE: Notice regarding the purpose of this directory.
Code/Review/itkThresholdMaximumConnectedComponentsImageFilter
BUG: must use itkGetStaticConstMacro to access ImageDimension.
COMP: "typename" keywords missing.
Code/Review/itkThresholdMaximumConnectedComponentsImageFilter
COMP: "typename" keywords missing.
Code/SpatialObject/itkBlobSpatialObject
COMP: Warnings
Code/SpatialObject/itkLandmarkSpatialObject
COMP: Warnings
Code/SpatialObject/itkMetaMeshConverter
BUG: Replaced SetElement() by InsertElement() so the array is allocated when using StaticMeshTrait
BUG: the ID was not set when writing the mesh
Code/SpatialObject/itkPolygonGroupOrientation
STYLE: doxygen cleanups
Code/SpatialObject/itkPolygonGroupSpatialObject
STYLE: Some style cleanup
Code/SpatialObject/itkPolygonSpatialObject
STYLE: Some style cleanup
Code/SpatialObject/itkSceneSpatialObject
STYLE: Improved comments
Code/SpatialObject/itkSceneSpatialObject
STYLE: Improved comments
Code/SpatialObject/itkSpatialObject
STYLE: Make TreeNode getters and setters use itk[Get|Set]ObjectMacro. Also affects compilation of wrappers, so it is a COMP issue too.
Code/SpatialObject/itkSpatialObject
COMP: Warnings
Code/SpatialObject/itkSpatialObjectTreeNode
ENH: Added private (unimplemented) copy constructor and = operator (reported by Zach Pincus)
Code/SpatialObject/itkSurfaceSpatialObject
COMP: Warnings
Code/SpatialObject/itkTubeSpatialObject
STYLE: Better documentation
Code/SpatialObject/itkTubeSpatialObject
COMP: Warnings
Documentation/Doxygen/DoxygenFooter.html
BUG: The link to Doxygen Home page was broken. Bad html extension.
Examples/Data/BayesianClassifierInitializerMemberships.mhd
ENH: new example input data.
Examples/Data/BayesianClassifierInitializerMemberships.raw
ENH: new example input data.
Examples/DataRepresentation/Image/CMakeLists.txt
COMP: removed tests from Borland.
Examples/Filtering/CMakeLists.txt
COMP: Borland LME linker.
COMP: Avoide borland LME1518 error.
ENH: Test and Example for the DiffusionTensor3DReconstructionImageFilter, TensorFractionalAnisotropyImageFilter, TensorRelativeAnisotropyImageFilter
COMP: removed tests to avoid Borland linker errors.
Examples/Filtering/DiffusionTensor3DReconstructionImageFilter
COMP: Unused var warnings
Examples/Filtering/DigitallyReconstructedRadiograph1
STYLE: Improving the coding style of the example.
ENH: Replacing old style #define for PI with a const double computed at run time.
Examples/Filtering/FilteringExamples
COMP: removed tests to avoid Borland linker errors.
Examples/Filtering/FilteringExamples5
ENH: Test and Example for the DiffusionTensor3DReconstructionImageFilter, TensorFractionalAnisotropyImageFilter, TensorRelativeAnisotropyImageFilter
Examples/Filtering/FilteringExamples8
COMP: removed tests to avoid Borland linker errors.
Examples/Filtering/ResampleImageFilter9
BUG: default pixel should be of type PixelType.
COMP: set threads to 1 to see if test passes on Borland.
Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter
STYLE: Shortening the error Usage line, so it fits the margins in the Software Guide.
Examples/IO/CMakeLists.txt
Examples/IO/DicomImageReadPrintTags
ENH: Provide an helper function around the MetaDataDictionary. Make it more user oriented.
Examples/IO/DicomSeriesReadImageWrite
ENH: signed short is more general for medical images.
Examples/IO/DicomSeriesReadImageWrite2
ENH: Rename AddRestriction into AddSeriesRestriction
Examples/IO/ImageReadExtractFilterInsertWrite
Examples/IO/ImageReadWrite
ENH: signed short is more general for medical images.
Examples/Iterators/CMakeLists.txt
COMP: Borland linker errors.
COMP: removed tests to avoid Borland linker errors.
Examples/Registration/CMakeLists.txt
COMP: Borland cannot link.
Examples/Registration/DeformableRegistration3
STYLE: Adding Hypenation for index entries. Software Guide.
Examples/Registration/ImageRegistration8
STYLE: Adding hypenations to index entries. Software Guide.
Examples/Registration/ModelToImageRegistration1
STYLE: latex typesetting issues
Examples/Registration/MultiResImageRegistration1
BUG: The Example require at least three arguments, so argc must be >= 4.
Examples/Registration/MultiResImageRegistration2
STYLE: Latex documentation fixes
Examples/SpatialObjects/SpatialObjectToImageStatisticsCalculator
STYLE: Adding hypenation for index entries. Software Guide.
Examples/Statistics/BayesianClassifier
COMP: Move traits around for the sun compilers
Examples/Statistics/BayesianClassifierInitializer
ENH: Examples and tests for the itk::BayesianClassifierInitializationImageFilter and itk::BayesianClassifierImageFilter
Examples/Statistics/CMakeLists.txt
COMP: Avoid Borland LME1518 linker errors.
COMP: avoid borland linker errors.
BUG: tests should never depend upon another test output.
Examples/Statistics/ImageEntropy1
COMP: LaTeX formatting was causing a compiler warning. Table new lines need to be represented with \cr instead of \
Examples/Statistics/ImageHistogram1
STYLE: Adding hypenation for index entries. Software Guide.
Examples/Statistics/ImageHistogram2
STYLE: Adding hypenation to index entries. Software Guide.
Examples/Statistics/ScalarImageKmeansClassifier
COMP: Missing semicolon.
Examples/Statistics/ScalarImageMarkovRandomField1
STYLE: Reformatting long lines of code that don't fit in the Software Guide margins.
Examples/Statistics/StatisticsExamplesTests4
ENH: Examples and tests for the itk::BayesianClassifierInitializationImageFilter and itk::BayesianClassifierImageFilter
Testing/Code/CMakeLists.txt
Testing/Code/Algorithms/CMakeLists.txt
Testing/Code/Algorithms/itkAlgorithmsPrintTest3
COMP: too much for the borland compiler to handle.
Testing/Code/Algorithms/itkAlgorithmsTests4
Testing/Code/Algorithms/Attic/itkBayesianClassifierImageFilterTest
Testing/Code/Algorithms/itkGradientDifferenceImageToImageMetricTest
ENH: Better range for metrix overlap testing.
Testing/Code/BasicFilters/CMakeLists.txt
ENH: new test
ENH: new tests contributed by Gaetan Lehmann via the Insight Journal.
ENH: added test for itkMatrixIndexSelectionImageFilter
BUG: Tests should not rely on other test output.
ENH: added optional difference image.
ENH: new regression test.
ENH: new regression test.
Testing/Code/BasicFilters/itkAbsImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAbsoluteValueDifferenceImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAccumulateImageFilterTest
ENH: better coverage.
Testing/Code/BasicFilters/itkAcosImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAdaptImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAddImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAndImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAsinImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkAtanImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkBasicFiltersHeaderTest
ENH: Added missing classes.
Testing/Code/BasicFilters/itkBasicFiltersPrintTest
ENH: remove redundant dim parameter from itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
Testing/Code/BasicFilters/itkBasicFiltersTests2
ENH: new test
Testing/Code/BasicFilters/itkBasicFiltersTests4
ENH: new tests contributed by Gaetan Lehmann via the Insight Journal.
ENH: new test.
ENH: new regression test.
ENH: new regression test.
Testing/Code/BasicFilters/itkBinaryDilateImageFilterTest2
ENH: better coverage.
Testing/Code/BasicFilters/itkBinaryMagnitudeImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkBinaryThresholdImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkBloxBoundaryProfileImageToBloxCoreAtomImageFilterTest
ENH: remove redundant dim parameter from itkBloxBoundaryProfileImageToBloxCoreAtomImageFilter
Testing/Code/BasicFilters/itkChangeLabelImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkClosingByReconstructionImageFilterTest
ENH: new regression tests.
BUG: StructuringElement was uninitialized.
Testing/Code/BasicFilters/itkCompose2DCovariantVectorImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkCompose3DCovariantVectorImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkComposeRGBImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkConstrainedValueDifferenceImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkCosImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkDiffusionTensor3DReconstructionImageFilterTest
STYLE: missing copyright.
BUG: The filter normalizes the gradient directions when they are supplied now, this caused a slight precisoin issue. Although the gradient directions supplied with the test are almost of unit norm, the slight difference from 1 caused the failiure.
Testing/Code/BasicFilters/itkDivideImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkEdgePotentialImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkExpImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkExpNegativeImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkGetAverageSliceImageFilterTest
ENH: new regression test.
Testing/Code/BasicFilters/itkGradientToMagnitudeImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkGrayscaleFillholeImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkIntensityWindowingImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkInvertIntensityImageFilterTest
ENH: new tests contributed by Gaetan Lehmann via the Insight Journal.
Testing/Code/BasicFilters/itkIterativeInverseDeformationFieldImageFilterTest
BUG: did not exit with failure if exception occurred.
Testing/Code/BasicFilters/itkJoinImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkJoinSeriesImageFilterTest
BUG: tests should not depend on the text of the exception message.
Testing/Code/BasicFilters/itkLog10ImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkLogImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkMaskConnectedComponentImageFilterTest
BUG: type.
Testing/Code/BasicFilters/itkMaskImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkMaskNegatedImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkMaskNeighborhoodOperatorImageFilterTest
COMP: warnings.
Testing/Code/BasicFilters/itkMatrixIndexSelectionImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkMaximumImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkMinimumImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkModulusImageFilterTest
ENH: new tests contributed by Gaetan Lehmann via the Insight Journal.
Testing/Code/BasicFilters/itkMorphologicalGradientImageFilterTest
STYLE: missing copyright.
Testing/Code/BasicFilters/itkMultiplyImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkNaryAddImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkNaryMaximumImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkNotImageFilterTest
ENH: new test.
Testing/Code/BasicFilters/itkOpeningByReconstructionImageFilterTest
ENH: Added SimpleFilterWatcher.
ENH: added optional difference image.
ENH: new regression test.
Testing/Code/BasicFilters/itkOrImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkPushPopTileImageFilterTest
ENH: new test
Testing/Code/BasicFilters/itkRGBToLuminanceImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkRecursiveGaussianImageFiltersOnTensorsTest
STYLE: missing copyright.
Testing/Code/BasicFilters/itkRegionOfInterestImageFilterTest
ENH: Added filter watcher. Now uses OrientedImage.
Testing/Code/BasicFilters/itkRescaleIntensityImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkScalarConnectedComponentImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSigmoidImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSinImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSqrtImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSquareImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSquaredDifferenceImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSubtractImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkSymmetricEigenAnalysisImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTanImageFilterAndAdaptorTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTensorFractionalAnisotropyImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTensorRelativeAnisotropyImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTernaryMagnitudeImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTernaryMagnitudeSquaredImageFilterTest
ENH: new test.
Testing/Code/BasicFilters/itkThresholdLabelerImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkTileImageFilterTest
ENH: now uses OrientedImage.
Testing/Code/BasicFilters/itkVectorConnectedComponentImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkVectorRescaleIntensityImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkVotingBinaryIterativeHoleFillingImageFilterTest
ENH: PrintSelf coverage.
Testing/Code/BasicFilters/itkWeightedAddImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/BasicFilters/itkXorImageFilterTest
ENH: Added operator== and operator!=.
Testing/Code/Common/CMakeLists.txt
BUG: 2769. SetParameters() are missing invocation of Modified().
Testing/Code/Common/itkCommonTests2
BUG: 2769. SetParameters() are missing invocation of Modified().
Testing/Code/Common/itkCovariantVectorGeometryTest
COMP: must use namespace on funciton call.
Testing/Code/Common/itkEuler2DTransformTest
Testing/Code/Common/itkMeshSourceGraftOutputTest
ENH: added a test for graft output method in mesh source
Testing/Code/Common/itkRealTimeClockTest
ENH: rename GetTimestamp into GetTimeStamp
Testing/Code/Common/itkTransformsSetParametersTest
COMP: Remove warning
BUG: 2769. SetParameters() are missing invocation of Modified().
Testing/Code/Common/itkVectorImageTest
ENH: Make DefaultConvertPixelTraits a trait of the image to make IO support of VectorImage consistent. Forward declare it so it doesn't increase parsing time.
Testing/Code/Common/itkVersorTest
Testing/Code/IO/CMakeLists.txt
Testing/Code/IO/itkBMPImageIOTest
ENH: better exception reporting.
Testing/Code/IO/itkGDCMSeriesReadImageWrite
ENH: Add more example on how to use restriction operation
Testing/Code/IO/itkIOTests
Testing/Code/IO/itkMeshSpatialObjectIOTest
ENH: Now testing the ID of the MeshSpatialObject
Testing/Code/IO/itkRawImageIOTest5
ENH: Adding setup code for the RawImageIO object.
Testing/Code/Numerics/NeuralNetworks/CMakeLists.txt
COMP: avoid Borland linker errors.
Testing/Code/Numerics/NeuralNetworks/itkNeuralNetworkTests
COMP: avoid Borland linker errors.
Testing/Code/Numerics/NeuralNetworks/itkNeuralNetworkTests3
COMP: avoid Borland linker errors.
Testing/Code/Review/CMakeLists.txt
ENH: Adding a second test for the itkThresholdMaximumConnectedComponentsImageFilter.
ENH: Adding returns FAILURE in the catch blocks of the tries.
Testing/Code/Review/README.txt
ENH: Notice describing the purpose of this directory.
Testing/Code/Review/itkReviewHeaderTest
ENH: Support files for testing the classes that are under the review process.
Testing/Code/Review/itkReviewPrintTest
ENH: Support files for testing the classes that are under the review process.
Testing/Code/Review/itkReviewTests
COMP: Fixing the connections for the test driver.
Testing/Code/Review/itkThresholdMaximumConnectedComponentsImageFilterTest
ENH: Fixing the configuration of the test for using the input and baseline images.
COMP: Fixing the connections for the test driver.
Testing/Data/Baseline/BasicFilters/ClosingByReconstructionImageFilterTest.png
BUG: StructuringElement was uninitialized.
Testing/Data/Baseline/BasicFilters/ClosingByReconstructionImageFilterTest2.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/InvertIntensityImageFilterTest.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/MaskNeighborhoodOperatorImageFilterTest.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/MatrixIndexSelectionImageFilterTest.png
ENH: added
Testing/Data/Baseline/BasicFilters/ModulusImageFilterTest.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/MorphologicalGradientImageFilterTest.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/OpeningByReconstructionImageFilterTest.png
BUG: StructuringElement was uninitialized.
Testing/Data/Baseline/BasicFilters/OpeningByReconstructionImageFilterTest2.png
ENH: new regression test.
Testing/Data/Baseline/BasicFilters/PushPopTileImageFilterTest.png
Testing/Data/Baseline/BasicFilters/VectorConnectedComponentImageFilterTest.png
ENH: new regression test.
Testing/Data/Baseline/Filtering/FACorpusCallosum.mhd
ENH: Fractional Anisotropy baseline for DiffusionTensor3DReconstructionImageFilterTest
Testing/Data/Baseline/Filtering/FACorpusCallosum.raw
ENH: Fractional Anisotropy baseline for DiffusionTensor3DReconstructionImageFilterTest
Testing/Data/Baseline/Filtering/RACorpusCallosum.mhd
ENH: Relative Anisotropy baseline for DiffusionTensor3DReconstructionImageFilterTest
Testing/Data/Baseline/Filtering/RACorpusCallosum.raw
ENH: Relative Anisotropy baseline for DiffusionTensor3DReconstructionImageFilterTest
Testing/Data/Baseline/Filtering/ResampleImageFilter9Test.1.png
ENH: baseline for Borland.
Testing/Data/Baseline/Filtering/ResampleImageFilter9Test.png
private/insight-developers/2006-February/007646.html
Testing/Data/Baseline/Registration/DeformableRegistration3Test.5.png
ENH: baseline for solaris, darwin and sgi.
Testing/Data/Baseline/Registration/DeformableRegistration5Test.6.png
ENH: baseline for ICC8.0
Testing/Data/Baseline/Review/itkThresholdMaximumConnectedComponentsImageFilterTest1.png
ENH: Baseline image for the itkThresholdMaximumConnectedComponentsImageFilterTest1.
Testing/Data/Baseline/Review/itkThresholdMaximumConnectedComponentsImageFilterTest2.png
ENH: Baseline for the itkThresholdMaximumConnectedComponentsImageFilterTest2.
Testing/Data/Baseline/Statistics/BayesianClassifierInitializerClass2Output.png
Testing/Data/Baseline/Statistics/BayesianClassifierLabelMap.png
Testing/Data/Input/012345.002.050.README
ENH: Fix comment
Testing/Data/Input/CellsFluorescence1.png
ENH: Input test image for the threshold maximum connected components filter test.
Testing/Data/Input/CellsFluorescence2.png
ENH: Input image for the ThresholdMaximumConnectedComponentsImageFilterTest2.
Testing/Data/Input/DwiCorpusCallosum.nhdr
namic/DTI/Data/dwi.nhdr ftp://public.kitware.com/pub/namic/DTI/Data/dwi.img.gz (gunzip this)
Testing/Data/Input/DwiCorpusCallosum.raw
namic/DTI/Data/dwi.nhdr ftp://public.kitware.com/pub/namic/DTI/Data/dwi.img.gz (gunzip this)
Testing/Data/Input/TensorsCorpusCallosum.mhd
Testing/Data/Input/TensorsCorpusCallosum.raw
Testing/Data/Input/chondt.png
ENH: new input data.
Testing/Data/Input/closerec1.jpg
ENH: new input data.
Utilities/CMakeLists.txt
ENH: enable kwsys command line processing.
ENH: Properly handle library prefix. Also backport from openjpeg CVS to support mingw
Utilities/Dart/CMakeLists.txt
ENH: Added a script to generate a Wiki-compatible file to show new files between two dates.
Utilities/Dart/NewSince.csh.in
ENH: Add the range of dates covered by the release.
ENH: Added a script to generate a Wiki-compatible file to show new files between two dates.
Utilities/Dart/NewSince.gawk
ENH: Added a script to generate a Wiki-compatible file to show new files between two dates.
Utilities/Doxygen/cvsVersionFilter.
Utilities/Doxygen/doxygen.config.in
BUG: Address bug 2733.. For some reason, setting UML_LOOK to ON fails to generate full class inheritence diagrams. It only shows the first level of inheritence
ENH: Updating the configuration from Doxygen 1.1.4 to Doxygen 1.4.3
Utilities/MetaIO/metaCommand
ENH: Added SetOptionComplete() function
Utilities/MetaIO/metaCommand
ENH: Added SetOptionComplete() function
Utilities/MetaIO/metaEllipse
ENH: Bring AddRestriction from the gdcm level to the itkGDCM level. Update example to show usage, add more doc.
Utilities/MetaIO/metaImage
ENH: Bring AddRestriction from the gdcm level to the itkGDCM level. Update example to show usage, add more doc.
Utilities/MetaIO/metaMe
COMP: warnings.
Utilities/MetaIO/metaMesh
BUG: Now reading PointData and CellData correctly
Utilities/MetaIO/metaObject
BUG: MetaIO now supports 64bit int on platforms having 64bit ints. Thanks to help from Robert Atwood at imperial.ac.uk
Utilities/MetaIO/metaTypes
BUG: MetaIO now supports 64bit int on platforms having 64bit ints. Thanks to help from Robert Atwood at imperial.ac.uk
Utilities/MetaIO/metaUtils
BUG: More instances of unsigned __int64 conversion problems on vs6
BUG: MS-VS6 does not support writing __int64 using ostream <<
Utilities/MetaIO/metaUtils
BUG: MetaIO now supports 64bit int on platforms having 64bit ints. Thanks to help from Robert Atwood at imperial.ac.uk
Utilities/expat/expatConfig.h.in
Utilities/expat/xmlparse
Utilities/expat/xmlrole
Utilities/expat/xmltok
Utilities/expat/xmltok_impl
Utilities/gdcm/AUTHORS
ENH: Update gdcm version to 1.2
Utilities/gdcm/CMakeLists.txt
COMP: Fix compilation on win32 with static on
STYLE: Typo
Utilities/gdcm/ChangeLog
ENH: Update gdcm version to 1.2
Utilities/gdcm/README
ENH: Update gdcm version to 1.2
Utilities/gdcm/gdcmConfigure.h.in
COMP: Fix compilation on win32 with static on
Utilities/gdcm/CMake/CTestCustom.ctest.in
ENH: Update gdcm version to 1.2
Utilities/gdcm/CMake/FindDicom3Tools.cmake
ENH: Update gdcm version to 1.2
Utilities/gdcm/CMake/FindRsync.cmake
ENH: Update gdcm version to 1.2
Utilities/gdcm/CMake/gdcmTestFUNCTION
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/ACUSON.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/CMakeLists.txt
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/DicomDir.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/DictGroupName.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/ELSCINT.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GE-EchoPAC.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-Advance.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-Advantx.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-CR.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-DLX.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-Genie.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-HiSpeed.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS-Infinia.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/GEMS.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/HITACHI-MR-pronto.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/NIH.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/PHILIPS-EasyVision.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/PHILIPS-Intera.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/Papyrus.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/ParseDict.py
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/README
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/SIEMENS-syngo.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/SIEMENS.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/SPI.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/dicomTS.d
ENH: Update gdcm version to 1.2
Utilities/gdcm/Dicts/dicomV3.d
ENH: changed VR of some tags from US to SS to permit signed shorts.
Utilities/gdcm/Dicts/gdcm.dic.in
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/CMakeLists.txt
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcm
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmArgMgr
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmArgMgr
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmBase
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmBase
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmBinEntry
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmBinEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmCommon
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmContentEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmContentEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDebug
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDebug
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDefaultDicts.cxx.in
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDir
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDicomDir
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirElement
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDicomDirElement
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirImage
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirImage
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirMeta
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirMeta
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirObject
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirObject
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirPatient
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirPatient
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirSerie
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirSerie
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirStudy
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirStudy
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirVisit
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDicomDirVisit
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDict
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDict
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDictEntry
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDictEntry
COMP: Fix warning
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDictGroupName
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDictGroupName
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDictSet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDictSet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDirList
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDirList
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDocEntry
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDocEntry
COMP: Fix warning
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDocEntryArchive
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDocEntryArchive
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDocEntrySet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDocEntrySet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmDocument
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmDocument
ENH: Backport gdcm1.2 to ITK-gdcm
COMP: Please a vendor specific compiler to work around deprecated method and virtual overload
Utilities/gdcm/src/gdcmElementSet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmElementSet
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmException
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmException
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmFile
COMP: Fix compilation on SunOS
ENH: This should fix the LEGACY code
Utilities/gdcm/src/gdcmFile
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmFileHelper
ENH: Properly set some default value: IOP (default to 100010), and Patient Orientation which is redundant...
BUG: removed old secondary capture logic.
ENH: Backport gdcm1.2 to ITK-gdcm
BUG: should not remove Frame Of Reference UID.
Utilities/gdcm/src/gdcmFileHelper
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmGlobal
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmGlobal
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJPEGFragment
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJPEGFragment
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJPEGFragmentsInfo
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJPEGFragmentsInfo
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJpeg
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJpeg12
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJpeg16
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJpeg2000
ENH: In ITK openjpeg is outside
COMP: Fix warning on bcc551
Utilities/gdcm/src/gdcmJpeg8
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmJpegLS
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmMpeg
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmOrientation
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmOrientation
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmPixelReadConvert
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmPixelReadConvert
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmPixelWriteConvert
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmPixelWriteConvert
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmRLEFrame
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmRLEFrame
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmRLEFramesInfo
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmRLEFramesInfo
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmSQItem
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmSQItem
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmSeqEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmSeqEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmSerieHelper
ENH: Redo implementation to use Functor instead of Function, because of brain damage VS6. See Q240871
ENH: Backport gdcm1.2 to ITK-gdcm
ENH: Factor code into one single function
BUG: Clear was incomplete and was not deleting the coherent file list. Thanks to Patrick Cheng for bug report and patch
BUG: Could not reuse gdcmSerieHelper, now can call Clear before hand
Utilities/gdcm/src/gdcmSerieHelper
ENH: Redo implementation to use Functor instead of Function, because of brain damage VS6. See Q240871
COMP: Fix compilation on bcc
ENH: Provide backward compatibility
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmTS
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmTS
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmUtil
COMP: Fix compilation on SunOS
BUG: wrong value for FMIV.
COMP: Get Mac Address on SGI Irix
Utilities/gdcm/src/gdcmUtil
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmVR
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmVR
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmValEntry
COMP: Fix compilation on SunOS
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmValEntry
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/gdcmValidator
COMP: Fix compilation on SunOS
ENH: In order to sync with official CVS, remove as much ITKism as possible
ENH: Update gdcm version to 1.2
Utilities/gdcm/src/gdcmValidator
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/jdatadst
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/gdcm/src/jdatas
ENH: Backport gdcm1.2 to ITK-gdcm
Utilities/kwsys/CMakeLists.txt
BUG: Fix problem with in the path
BUG: Fix DynamicLoader implementation on MacOSX (using old API)
COMP: Fix cygwin build
ENH: Carefully turn testing of DynamicLib on
ENH: Added kwsys::String class to shorten debugging symbols and error messages involving std::string.
Utilities/kwsys/CommandLineArguments
ENH: Add a method to remove remaining arguments
Utilities/kwsys/CommandLineArguments.hxx.in
ENH: Add a method to remove remaining arguments
Utilities/kwsys/Directory
STYLE: Minor style
COMP: Some STL implementation do not provide clear on std::string
ENH: Redo implementation of itkDirectory to use kwsys (avoid duplicating code).
Utilities/kwsys/Directory.hxx.in
BUG: Need to reset internal structure in case of multiple calls to Load
Utilities/kwsys/DynamicLoader
BUG: Fix DynamicLoader implementation on MacOSX (using old API)
ENH: Hopefully have the DynamicLoader to the proper thing.
BUG: Including file within a namespace{} is dangerous(unless symbols are within an extern C). Also update documentation about special case for MacOSX
ENH: Adding kwsys implementation for a DynamicLoader class. Copy from itkDynamicLoader, with patch from cmDynamicLoader
Utilities/kwsys/DynamicLoader.hxx.in
ENH: Add documentation on the problem with system wide path for looking up dynamic libraries. STYLE: Fix trailing white spaces
ENH: Adding kwsys implementation for a DynamicLoader class. Copy from itkDynamicLoader, with patch from cmDynamicLoader
Utilities/kwsys/EncodeExecutable
ENH: add support for watcom wmake and wcl386
Utilities/kwsys/Glob
STYLE: Make sure to use the proper cast.
ENH: add support for watcom wmake and wcl386
Utilities/kwsys/Glob.hxx.in
COMP: Fix the exporting so that it can actually be used
Utilities/kwsys/ProcessUNIX
ENH: Enabled process tree killing on AIX.
ENH: Enabled process tree killing for FreeBSD and Sun.
BUG: Do not leak ps FILE when the process starts but reading the header fails.
BUG: When more than one command is given and one of them fails to start and the rest are killed, do not forget to reap the killed children.
Utilities/kwsys/ProcessWin32
COMP: Fixed warnings for Borland 5.8.
ENH: Improved robustness of sharing parent pipes with children. This ensures that the parent pipe handles are inherited by the children. If a parent pipe handle is invalid a handle to an empty pipe is given to the child to make sure all pipes are defined for the children.
Utilities/kwsys/Registry
STYLE: Make sure to use the proper cast.
ENH: add missing cmake depend hacks
ENH: check in new find stuff
Utilities/kwsys/Registry.hxx.in
STYLE: Minor style
Utilities/kwsys/RegularExpression
STYLE: Make sure to use the proper cast.
Utilities/kwsys/String.hxx.in
ENH: Added kwsys::String class to shorten debugging symbols and error messages involving std::string.
Utilities/kwsys/SystemTools
ENH: undo last change because it broke the dashboard
STYLE: Remove trailing whitespaces
ENH: fix std in kwsys, has to be kwsys_stl
ENH: fix for bug 28618, cmake.exe can not find itself
COMP: Fix compile problem on windows and mac
ENH: Move relative path to kwsys
ENH: add support for watcom wmake and wcl386
BUG: Return if the file is in any directory not just in first one
ENH: Add another signature to FindProgram that matches more to the one from CMake
Utilities/kwsys/SystemTools.hxx.in
ENH: Add documentation on the problem with system wide path for looking up dynamic libraries. STYLE: Fix trailing white spaces
ENH: Move relative path to kwsys
ENH: fix for icc
ENH: Add another signature to FindProgram that matches more to the one from CMake
Utilities/kwsys/kwsysPlatformCxxTests
ENH: add support for watcom wmake and wcl386
Utilities/kwsys/testCommandLineArguments
STYLE: Make sure to use the proper cast.
Utilities/kwsys/testDynamicLoader
BUG: Need a trailing slash
BUG: Trying to get testDynamicLoader to work on Solaris and SunOS, where current directory is not lookup when doing dlopen
ENH: Hopefully have the DynamicLoader to the proper thing.
COMP: Add missing include
ENH: Still more coverage of the DynamicLoader
ENH: Adding initial test for DynamicLoader
Utilities/kwsys/testDynload
COMP: Fix compilation on MacOSX (common symbols not allowed with MH_DYLIB output format)
ENH: remove test temporarily
Utilities/kwsys/testProcess
ENH: Added a way to quickly enable manual testing of grandchild killing.
Utilities/kwsys/testRegistry
ENH: add support for watcom wmake and wcl386
Utilities/kwsys/testSystemTools
STYLE: Minor style
Utilities/kwsys/testSystemTools.h.in
BUG: Do the proper path
BUG: Trying to get testDynamicLoader to work on Solaris and SunOS, where current directory is not lookup when doing dlopen
Utilities/nifti/Testing/niftilib/nifti_test
Utilities/nifti/examples/CMakeLists.txt
Utilities/nifti/examples/fsl_api_driver
Utilities/nifti/fsliolib/fslio
Utilities/nifti/fsliolib/fslio
Utilities/nifti/niftilib/nifti1_io
COMP: warnings.
Utilities/nifti/niftilib/nifti1_io
Utilities/nifti/utils/CMakeLists.txt
Utilities/nifti/utils/nifti_stats
Utilities/nifti/utils/nifti_tool
Utilities/nifti/utils/nifti_tool
Utilities/openjpeg/.NoDartCoverage
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/CMakeLists.txt
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
ENH: Update openjpeg lib from CVS (Fixes lots of warnings)
ENH: This is a C only project
Utilities/openjpeg/README.ITK.txt
ENH: Add a note for ITK-OpenJPEG
Utilities/openjpeg/bio
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/bio
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/cio
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
Utilities/openjpeg/cio
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/dwt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/dwt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/event
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/event
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/Attic/fix
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/fix
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
Utilities/openjpeg/image
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
Utilities/openjpeg/image
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/Attic/int
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
Utilities/openjpeg/int
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
Utilities/openjpeg/j2k
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/j2k
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/j2k_lib
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/j2k_lib
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/jp2
ENH: Update openjpeg lib from CVS (Fixes lots of warnings)
Utilities/openjpeg/jp2
ENH: Update openjpeg lib from CVS (Fixes lots of warnings)
Utilities/openjpeg/jpt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/jpt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/mct
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/mct
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/mqc
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/mqc
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/openjpeg
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/Attic/openjpeg.def.in
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
Utilities/openjpeg/openjpeg
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/opj_includes
ENH: Update openjpeg to match the one in gdcm 1.2. COMP: This should fix problem introduced yesterday
Utilities/openjpeg/pi
ENH: Update openjpeg lib from CVS (Fixes lots of warnings)
Utilities/openjpeg/pi
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/raw
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/raw
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/t1
ENH: Update openjpeg lib from CVS (Fixes lots of warnings)
Utilities/openjpeg/t1
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/t2
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
Utilities/openjpeg/t2
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/tcd
ENH: Backport from openjpeg CVS, even more warnings fixes. Change the build system from def file to declspec
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/tcd
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/tgt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/openjpeg/tgt
ENH: Adding a JPEG2000 implementation (OpenJPEG) from Communications and remote sensing Laboratory, Universite catholique de Louvain
Utilities/tiff/itk_tiff_mangle
BUG: More external symbols need to be mangled.
COMP: Enabling mangling
Utilities/tiff/tif_dir
COMP: Enabling mangling
Utilities/tiff/tif_dirread
COMP: Enabling mangling
Utilities/tiff/tif_dirwrite
COMP: Enabling mangling
Utilities/tiff/tif_swab
COMP: Enabling mangling
Utilities/tiff/tiff
COMP: force to make tiff rebuild.
COMP: Enabling mangling
COMP: Missing include to itk_tiff_mangle.h
Utilities/vxl/vcl/CMakeLists.txt
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/vcl_string
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/vcl_string
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/emulation/vcl_algobase
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/emulation/Attic/vcl_straits
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/emulation/Attic/vcl_straits
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/emulation/Attic/vcl_string
STYLE: Removed code with incompatible license.
Utilities/vxl/vcl/emulation/Attic/vcl_string
STYLE: Removed code with incompatible license.
Utilities/zlib/zlib.def
ENH: Fix name
|