1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>dispcal</title>
<meta http-equiv="content-type" content="text/html;
charset=windows-1252">
<meta name="author" content="Graeme Gill">
</head>
<body>
<h2><b>spectro/dispcal</b></h2>
<h3>Summary</h3>
Given calibration target information [white point, maximum
brightness, and response curve ("gamma")], display a series of test
patches on the display, and using the colorimetric values read,
create a calibration lookup tables that make the display meet the
desired target. The type of instrument is determined by the
communication port selected. Emission and display measurement
instruments are supported.<br>
<h3>Usage</h3>
<font size="-1"><span style="font-family: monospace;">dispcal
[-options]</span><i style="font-family: monospace;"> inoutfile</i><br
style="font-family: monospace;">
<span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#v">-v [n]</a><span
style="font-family: monospace;">
Verbose mode<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#display">-display displayname</a><span
style="font-family: monospace;"> [X11 only] Choose X11 display
name<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> <a href="#dnm">-d n[,m]</a>
[X11 only]Choose the display from the following list (default
1),<br>
and
optionally
choose
a
different
display
m
for
VideoLUT access.</span></font><br>
<font size="-1"><span style="font-family: monospace;"> <a
href="#d">-d n</a>
Choose
the
display
from
the
following
list
(default
1)</span></font><br>
<span style="font-family: monospace;"> <a href="#dweb">-dweb[:port]</a>
Display via a web server at port (default 8080)</span><br>
<span style="font-family: monospace;"> <a href="#dmadvr">-dmadvr</a>
[MSWin] Display via MadVR Video Renderer</span><br>
<tt> </tt><tt><a href="#dcc">-dcc[:n]</a>
</tt><tt>Display via n'th ChromeCast (default 1, ? for list)</tt><br
style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"></span><span style="font-family:
monospace;"></span> <span style="font-family: monospace;"></span></font><small
style="font-family: monospace;"><span style="font-family:
monospace;"></span><a style="font-family: monospace;" href="#c">-c
listno</a><span style="font-family: monospace;">
Choose instrument from the
following list (default 1)<br>
</span></small><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#r">-r</a><span style="font-family: monospace;">
Report on the calibrated display then
exit</span></font><font size="-1"><span style="font-family:
monospace;"></span><span style="font-family: monospace;"></span><span
style="font-family: monospace;"></span><span style="font-family:
monospace;"><br>
</span></font><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#R">-R</a><span style="font-family: monospace;">
Report on the uncalibrated display then
exit</span></font><font size="-1"><span style="font-family:
monospace;"></span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#m">-m</a><span
style="font-family: monospace;">
</span></font><font size="-1"><span
style="font-family: monospace;">Skip</span><span
style="font-family: monospace;"> adjustment of the monitor
controls</span></font><br>
<font size="-1"><span style="font-family: monospace;"><a
href="#o">-o [profile.icm]</a> Create
fast matrix/shaper profile [different filename to outfile.icm]<br>
<a href="#O">-O description</a>
Fast ICC Profile Description string (Default "outfile")<br>
<a href="#u">-u</a>
Update
previous
calibration
and
(if
-o
used)
ICC
profile VideoLUTs</span><span style="font-family: monospace;"></span><span
style="font-family: monospace;"></span><br style="font-family:
monospace;">
<span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#q">-q [lmh]</a><span
style="font-family: monospace;">
Quality - Low, Medium (def), High<br>
<a href="#p">-p</a>
Use telephoto mode (ie. for a projector) (if available)<br>
</span></font><font size="-1"><span style="font-family:
monospace;"><a href="#y">-y X</a>
Display type - instrument specific list to choose from.</span></font><font
size="-1"><span style="font-family: monospace;"><br
style="font-family: monospace;">
</span><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#t">-t [temp]</a><span
style="font-family: monospace;">
White
Daylight
locus
target,
optional
target
temperaturee
in
deg. K (deflt.)<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#T">-T [temp]</a><span style="font-family: monospace;">
White
Black
Body
locus
target,
optional
target
temperaturee
in deg. K</span></font><br style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#w">-w x,y</a><span
style="font-family: monospace;">
Set the target white point as chromaticity coordinates</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#b">-b bright</a><span
style="font-family: monospace;">
Set the target white brightness in cd/m^2</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#g">-g gamma</a><span
style="font-family: monospace;">
Set the target response curve gamma (Def. 2.4)</span><br
style="font-family: monospace;">
<span style="font-family: monospace;">
Use "-gl" for L*a*b* curve</span><br style="font-family:
monospace;">
<span style="font-family: monospace;">
Use "-gs" for sRGB curve<br>
Use
"-g709"
for
REC
709
curve
(should
use
-a as well!)<br>
Use "-g240" for SMPTE 240M curve </span></font><font size="-1"><span
style="font-family: monospace;">(should use -a as well!)</span></font><br>
<font size="-1"><span style="font-family: monospace;">
Use "-G2.4 -f0" for BT.1886</span></font>
<br>
<font size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#G">-G gamma</a><span
style="font-family: monospace;">
Set the target response curve actual technical gamma<br>
<a href="#f">-f [degree]</a>
Amount
of
black
level
accounted
for
with
output
offset (default all output offset)<br>
<a href="#a">-a ambient</a>
Use viewing condition adjustment for ambient in Lux<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> <a href="#k">-k factor</a>
Amount to try and correct black point hue. Default 1.0, LCD
default 0.0<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> <a href="#A">-A rate</a>
Rate of blending from neutral to black point. Default 4.0<br>
<a href="#bhack">-b</a>
Use forced black point hack<br>
</span></font> <font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#B">-B bkbright</a><span style="font-family: monospace;">
Set the target black brightness in cd/m^2</span></font><br
style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#e">-e [n]</a><span
style="font-family: monospace;">
Run n verify passes on final curves<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#z">-<font size="-1">z</font></a><span style="font-family:
monospace;">
Run only verify pass on installed calibration curves</span></font><br
style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"> <a href="#P">-P
ho,vo,ss[,vs]</a> Position test window
and scale it</span><br style="font-family: monospace;">
<span style="font-family: monospace;">
ho,vi:
0.0
=
left/top,
0.5
=
center,
1.0
= right/bottom etc.</span><br style="font-family: monospace;">
<span style="font-family: monospace;">
ss:
0.5
=
half,
1.0
=
normal,
2.0
= double etc.<br>
</span></font><font size="-1"><span style="font-family:
monospace;">
ss,vs: = optional horizontal, vertical scale.</span></font><br>
<font size="-1"><span style="font-family: monospace;"> <a
href="#F">-F</a>
Fill whole screen with black background</span></font><font
size="-1"><span style="font-family: monospace;"></span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span></font><font
size="-1"><span style="font-family: monospace;"><a href="#E">-E</a>
</span></font><small><span style="font-family: monospace;">Video
encode output as (16-235)/255 "TV" levels</span></small><br
style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#n">-n</a><span
style="font-family: monospace;">
[X11
only]
Don't
set
override
redirect
on
test window<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> </span><a style="font-family: monospace;"
href="#J">-J</a><span style="font-family: monospace;">
Run instrument calibration first<br>
</span></font><font size="-1"><span style="font-family:
monospace;"> <a href="#N">-N</a>
Disable initial calibration of instrument if possible</span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#H">-H</a><span
style="font-family: monospace;">
Use high resolution spectrum mode (if
available)<br>
</span></font><font size="-1"><span style="font-family:
monospace;"></span><span style="font-family: monospace;"><br>
</span></font><font size="-1"><span style="font-family:
monospace;"><span style="text-decoration: underline;"></span><a
href="#X1">-X file.ccmx</a>
Apply Colorimeter Correction Matrix</span></font><br>
<span style="font-family: monospace;"> <a href="#X2">-X
file.ccss</a>
Use
Colorimeter
Calibration
Spectral Samples for calibration</span><font size="-1"><span
style="font-family: monospace;"><br>
</span></font><small><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#Q">-Q <i>observ</i></a><span
style="font-family: monospace;">
Choose CIE Observer for spectrometer or CCSS
colorimeter data:</span><br style="font-family: monospace;">
<span style="font-family: monospace;">
1931_2 </span></small><small><span
style="font-family: monospace;">(def.)</span></small><small><span
style="font-family: monospace;">, 1964_10, </span></small><small><span
style="font-family: monospace;"><tt><small>2012_2, 2012_10, </small></tt>S&B
1955_2, shaw, J&V 1978_2, 1964_10c or file.cmf<br>
<a href="#I">-I b|w</a>
Drift compensation, Black: -Ib, White: -Iw, Both: -Ibw</span></small><br>
<small><span style="font-family: monospace;"><tt> <a href="#YR">-Y
R:<i>rate</i></a>
Override measured refresh rate with rate Hz<br>
</tt> </span></small><font size="-1"><span
style="font-family: monospace;"></span><a style=" font-family:
monospace;" href="#YA">-<font size="-1">Y</font> A</a><span
style="font-family: monospace;">
Use non-adaptive integration time mode (if
available).</span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span><a
style=" font-family: monospace;" href="#Yp">-<font size="-1">Y</font>
<font size="-1">p</font></a><span style="font-family:
monospace;">
Don't wait for the instrument to be placed on
the display</span></font><br>
<small><span style="font-family: monospace;"> </span></small><font
size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#C">-C "command"</a><span
style="font-family: monospace;">
Invoke shell
"command" each time a color is set</span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#M">-M "command"</a><span
style="font-family: monospace;">
Invoke shell
"command" each time a color is measured</span></font><font
size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"></span></font><br>
<font size="-1"><span style="font-family: monospace;"> <a
href="#W">-W n|h|x</a>
Override
serial
port
flow
control:
n
=
none,
h = HW, x = Xon/Xoff</span></font><font size="-1"><span
style="font-family: monospace;"></span></font><br>
<font size="-1"><span style="font-family: monospace;"> </span></font><font
size="-1"><span style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#D">-D [level]</a><span
style="font-family: monospace;">
Print debug diagnostics to stderr</span></font><br
style="font-family: monospace;">
<font size="-1"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"> </span><a
style="font-family: monospace;" href="#p1"><i>inoutfile</i></a><span
style="font-family: monospace;">
</span><span style="font-family: monospace;">Base name for created
or updated </span></font><font size="-1"><a style="font-family:
monospace;" href="cal_format.html">.cal</a><span
style="font-family: monospace;"></span></font><font size="-1"><span
style="font-family: monospace;"> and <a
href="File_Formats.html#ICC">.icm</a> output files</span></font><br>
<br>
<h3>Comments<br>
</h3>
This is the tool is used for adjusting and calibrating a display to
reach specified target behaviour, and optionally profiling it.
For best results on a CRT, you should run this against a neutral
grey desktop background, and avoid having any bright images or
windows on the screen at the time you run dispcal. You could also
use the <span style="font-weight: bold;">-B</span> option to black
the whole screen out, although this will make it impossible to
control dispcal unless you have more than one display.<br>
<br>
<a name="v"></a> The <b>-v</b> flag reports progress information,
as well as other statistics about the progress of calibration. A
numerical argument greater than 1 gives greater verbosity. 2 will
give per step adjustment and repeat information, while 3 will give
even greater technical detail.<br>
<br>
<a name="display"></a>When running on a UNIX based system that used
the X11 Windowing System, <b>dispcal</b> will by default use the
$DISPLAY environment variable to determine which local or remote
display and screen to read from. This can be overridden by supplying
an X11 display name to the <span style="font-weight: bold;">-display</span>
option. Note that if Xinerama is active, you can't select the screen
using $DISPLAY or -display, you have to select it using the <span
style="font-weight: bold;">-d</span> parameter.<br>
<br>
<a name="d"></a> By default the main display will be the location of
the test window. If the system has more than one display or screen,
an alternate display/screen can be selected with the <span
style="font-weight: bold;">-d</span> parameter. If you invoke <span
style="font-weight: bold;">dispcal</span> so as to display the
usage information (i.e. "dispcal -?" or "dispcal --"), then the
discovered displays/screens will be listed. Multiple displays may
not be listed, if they appear as a single display to the operating
system (ie. the multi-display support is hidden in the video card
driver). On UNIX based system that used the X11 Windowing System,
the <span style="font-weight: bold;">-d</span> parameter will
override the screen specified by the $DISPLAY or parameter.<br>
<br>
<span style="font-weight: bold;">Note</span> that if VideoLUTs for a
display are not accessible (i.e. no hardware calibration
capability), <span style="font-weight: bold;">dispcal</span> will
will issue a warning, but continue creating a calibration based on
the display "as-is" rather than its native response. See the <a
href="dispcal.html#o">-o</a> flag for an explanation of the
implications of having no access to the VideoLUTs.<br>
<br>
On X11 the inability to access VideoLUTs could be because you are
trying to access a remote display, and the remote display doesn't
support the XF86VidMode extension, or perhaps you are running
multiple monitors using NVidia TwinView, or MergedFB, and trying to
access anything other than the primary monitor. TwinView and
MergedFB don't properly support the XF86VidMode extension for
multiple displays. You can use <a href="dispwin.html#r">dispwin -r</a>
to test whether the VideoLUTs are accessible for a particular
display. See also below, on how to select a different display for
VideoLUT access. Also note that dispcal will fail if the Visual
depth doesn't match the VideoLUT depth. Typically the VideoLUTs have
256 entries per color component, so the Visual generally needs to be
24 bits, 8 bits per color component.<br>
<br>
<a name="dnm"></a>Because of the difficulty cause by TwinView and
MergedFB in X11 based systems, you can optionally specify a separate
display number after the display that is going to be used to present
test patches, for accessing the VideoLUT hardware. This must be
specified as a single string, e.g. <span style="font-weight: bold;">-d
1,2</span> . Some experimentation may be needed using <a
href="dispwin.html">dispwin</a> on such systems, to discover what
screen has access to the VideoLUT hardware, and which screens the
test patches appear on. You may be able to calibrate one screen, and
then share the calibration with another screen. Profiling can be
done independently to calibration on each screen.<br>
<br>
<a name="dweb"></a><span style="font-weight: bold;">-dweb</span> or
<span style="font-weight: bold;">-dweb:port</span> starts a
standalone web server on your machine, which then allows a local or
remote web browser to display the the color test patches. By default
port <span style="font-weight: bold;">8080</span> is used, but this
can be overridden by appending a <span style="font-weight: bold;">:</span>
and the port number i.e. <span style="font-weight: bold;">-dweb:8001</span>.
The URL will be <span style="font-weight: bold;">http://</span>
then name of the machine or its I.P. address followed by a colon and
the port number - e.g something like <span style="font-weight:
bold;">http://192.168.0.1:8080</span>. If you use the verbose
option (<span style="font-weight: bold;">-v</span>) then a likely
URL will be printed once the server is started, or you could run <span
style="font-weight: bold;">ipconfig</span> (MSWin) or <span
style="font-weight: bold;">/sbin/ifconfig</span> (Linux or OS X)
and identify an internet address for your machine that way. <b>JavaScript</b>
needs to be enabled in your web browser for this to work. You may
have to modify any firewall to permit port 8080 to be accessed on
your machine.<br>
<br>
Note that if you use this method of displaying test patches, that
there is no access to the display VideoLUTs and that the colors will
be displayed with 8 bit per component precision, and any
screen-saver or power-saver will not be disabled. You will also be
at the mercy of any color management applied by the web browser, and
may have to carefully review and configure such color management.
See the <a href="#o">-o</a> flag for an explanation of the
implications of having no access to the VideoLUTs.<br>
<br>
<a name="dmadvr"></a><span style="font-weight: bold;">-dmadvr</span>
[MSWin only] causes test patches to be displayed using the MadVR
video renderer. Note that will have to start <b>MadTPG</b> before
running dispcal, and that while you can adjust the "Test Pattern
Configuration" controls, you should <u>not</u> normally alter the
"Existing Calibration" controls, as dispcal will set these
appropriately. <br>
<br>
<a name="dcc"></a><span style="font-weight: bold;">-dcc</span> or <b>-dcc:<i>no</i></b>
causes test patches to be displayed using and available <a
href="http://en.wikipedia.org/wiki/Chromecast">ChromeCast</a> to
your TV. Use <b>-dcc:?</b> to display a list of ChromeCasts on your
local network. Note that the ChromeCast as a test patch source is
probably the<b> least accurate</b> of your choices, since it
up-samples the test patch and transforms from RGB to YCC and back,
but should be accurate within 1 bit. You may have to modify any
firewall to permit port 8081 to be accessed on your machine if it
falls back to the Default receiver (see <a href="Installing.html">installation
instructions</a> for your platform).<br>
<br>
<a name="c"></a> <span style="font-weight: bold;">-c</span> The
instrument is assumed to communicate through a USB or serial
communication port, and the port can be selected with the <b>-c</b>
option, if the instrument is not connected to the first port. If you
invoke <span style="font-weight: bold;">dispcal</span> so as to
display the usage information (i.e. "dispcal -?" or "dispcal --"),
then the discovered USB and serial ports will be listed. On
UNIX/Linux, a list of all possible serial ports are shown, but not
all of them may actually be present on your system.<br>
<br>
<a name="r"></a> The -<span style="font-weight: bold;">r</span> and
<span style="font-weight: bold;"><a name="R"></a>-R </span>flags
perform a quick measurement of current display behaviour, reports
and then exits. If the <span style="font-weight: bold;">-r</span>
flag is used the measurement are taken using the currently loaded
calibration (Video LUT) curves, and in the case of MadVR renderer
test patch display the Color Management 3dLut. If <span
style="font-weight: bold;">-R</span> is use, then the uncalibrated
("raw" or "native") behaviour is measured (ie. no VideoLut or CM).
Reported are: <br>
<br>
Black Brightness in cd/m^2<br>
White Brightness in cd/m^2<br>
The approximate Gamma<br>
The white point x,y chromaticity co-ordinates<br>
The correlated color temperature in Kelvin, and
the CIEDE200 to the Black Body locus.<br>
The correlated Daylight temperature in Kelvin,
and the CIEDE200 to the Daylight locus.<br>
The visual color temperature in Kelvin, and the
CIEDE200 to the Black Body locus.<br>
The visual Daylight temperature in Kelvin, and
the CIEDE200 to the Daylight locus.<br>
The visual color temperature in Kelvin<br>
(for <span style="font-weight: bold;">-R </span>"raw":)<br>
The apparent VideoLUT entry number of significant
bits.<br>
<br>
Note that the correlated color temperature is the temperature of a
black body radiator that has the closest color to the white point
measured using the traditional CIE 1960 UCS space color difference
formula. The correlated daylight temperature is a similar thing,
except the CIE daylight locus is used. The visual color temperature
values are calculated similarly to the correlated color
temperatures, but using the modern CIEDE2000 color difference
formula to calculate a better visual approximation to the closest
temperature to the displays white point. There will be no difference
between the UCS and CIEDE2000 temperatures if the display white
point actually lies on the particular locus.<br>
<br>
<a name="m"></a> The -<span style="font-weight: bold;">m</span>
option skips the usual process of adjusting the display monitor
contrast, brightness and white point controls, and skips straight to
calibration.<br>
<br>
<a name="o"></a><span style="font-weight: bold;">-o [</span><span
style="font-style: italic;">profile.icm</span><span
style="font-weight: bold;">]</span> Normally <span
style="font-weight: bold;">dispcal</span> creates just a
calibration file, which can then be used for subsequent
characterization using <a href="dispread.html">dispread</a> and
profiling using <a href="colprof.html">colprof</a>. If the <span
style="font-weight: bold;">-o</span> flag is used, <span
style="font-weight: bold;">dispcal</span> will also create a
shaper/matrix profile. By default it will create a profile named <span
style="font-weight: bold;">inoutfile.icm</span>, but a differently
named file can be created or updated by specifying the name after
the <span style="font-weight: bold;">-o</span> flag. If the <span
style="font-weight: bold;">-u</span> flag is used with <span
style="font-weight: bold;">-o</span>, then the ICC profile <span
style="font-weight: bold;">vcgt</span> calibration curves will be
updated.<br>
<br>
Note that if VideoLUT access is not possible for the display, that
hardware calibration is not possible. dispcal will create
calibration curves anyway with a warning, and if a profile is
created, it will not contain a 'vcgt' tag, but instead will have the
calibration curves incorporated into the profile itself. If
calibration parameters are chosen that change the displays white
point or brightness, then this will result in a slightly unusual
profile that has a white point that does not correspond with
R=G=B=1.0. Some systems may not cope properly with this type of
profile. See the <a href="Scenarios.html#PM7">tutorial</a> for a
further explanation.<br>
<br>
<a name="O"></a>The <b>-O</b> parameter allows setting of the
shaper/matrix profile description tag. The parameter should be a
string that describes the device and profile. With most command line
shells, it will be necessary to enclose the parameter with double
quotes, so that spaces and other special characters are included in
the parameter, and not mistaken for the start of another flag, or as
a final command line parameter. Many programs that deal with ICC
profiles use the description tag to identify a profile, rather than
the profile filename, so using a descriptive string is important in
being able to find a profile. By default, the profile file name will
be used as the description.<br>
<br>
<a name="u"></a><span style="font-weight: bold;">-u</span> Normally
<span style="font-weight: bold;">dispcal</span> creates a new
calibration file and optional profile, based on the requested
targets and the response of the display. This can take a fair amount
of time, particularly if a high quality level has been selected, so
to speed up the process of keeping a display in calibration the <span
style="font-weight: bold;">-u</span> flag can be used. This uses
the same calibration targets as the previous calibration but does a
smaller number of refinement passes, enough to improve the accuracy
of the calibration to account for drift in the device. If the <span
style="font-weight: bold;">-o</span> flag is used as well, then
the ICC profile <span style="font-weight: bold;"></span>will have
its vcgt tag updated with the new calibration. This keeps the
profile up to date with the display. Normally <span
style="font-weight: bold;">dispcal -u</span> will use the same
quality level that was specified in the previous calibration, but
this can be overridden using the <span style="font-weight: bold;">-q</span>
flag. Any options that attempt to change the calibration target (ie.
white point, brightness, gamma etc.) will be ignored. Adjustment of
the display monitor controls is skipped. A profile cannot be updated
if the display does not support hardware calibration (no VideoLUT
access).<br>
<br>
<a name="q"></a> Quality - Low, Medium (def), High. The <span
style="font-weight: bold;">-q</span> flag determines how much time
and effort to go to in calibrating the display. The higher the
quality, the more test readings will be done, the more refinement
passes will be done, the tighter will be the accuracy tolerance, and
the more detailed will be the calibration of the display. The result
will ultimately be limited by the accuracy of the instrument, the
repeatability of the display and instrument, and the resolution of
the Video Lookup table entries and Digital or Analogue output
(RAMDAC).<br>
<br>
<a name="p"></a>The <span style="font-weight: bold;">-p</span> flag
allows measuring in telephoto mode, using instruments that support
this mode, e.g. the ColorMunki. Telephoto mode is one for taking
emissive measurements from a distance (ie. telespectometer,
tele-colorimeter) mode, and typically would be used for measuring
projector type displays. If a device does not support a specific
telephoto mode, then the normal emissive mode may be suitable for
measuring projectors.<br>
<br>
<a name="y"></a> The <span style="font-weight: bold;">-y</span>
flag allows setting the Display Type. The selection typically
determines two aspects of of the instrument operation: <span
style="font-weight: bold;">1)</span> It may set the measuring mode
to suite <a
href="http://en.wikipedia.org/wiki/Comparison_of_display_technology"><span
style="font-weight: bold;">refresh</span> or <span
style="font-weight: bold;">non-refresh</span> displays</a>.
Typically only LCD (Liquid Crystal) displays have a non-refresh
nature. <span style="font-weight: bold;">2)</span> It may select an
instrument calibration matrix suitable for a particular display
type. The selections available depends on the type and model of
instrument, and a list of the options for the discovered instruments
will be shown in the <a href="ArgyllDoc.html#CmdLine">usage</a>
information. For more details on what particular instruments support
and how this works, see <a href="instruments.html">Operation of
particular instruments</a>. <b>3)</b> Any installed CCSS files
(if applicable), or CCMX files. These files are typically created
using <a href="ccxxmake.html">ccxxmake</a>, and installed using <a
href="oeminst.html">oeminst</a>. The default and Base Calibration
types will be indicated in the usage.<br>
<br>
<a name="t"></a><span style="text-decoration: underline;"></span> <span
style="font-weight: bold;">-t</span> Set the target white point
locus to the equivalent of a Daylight spectrum of the given
temperature in degrees Kelvin. By default the white point target
will be the native white of the display, and it's color temperature
and delta E to the daylight spectrum locus will be shown during
monitor adjustment, and adjustments will be recommended to put the
display white point directly on the Daylight locus. If a Daylight
color temperature is given as an argument to <span
style="font-weight: bold;">-t</span>, then this will become the
target of the adjustment, and the recommended adjustments will be
those needed to make the monitor white point meet the target.
Typical values might be 5000 for matching printed output, or
6500, which gives a brighter, bluer look. A white point temperature
different to that native to the display may limit the maximum
brightness possible.<br>
<br>
<a name="T"></a><span style="text-decoration: underline;"></span> <span
style="font-weight: bold;">-T</span> Same functionality as
the <span style="font-weight: bold;">-t</span> option, except the
white point locus will be the Black Body, or Planckian locus, rather
than the Daylight locus. While these two white point loci are quite
close, they are subtly different. If a temperature is given as an
argument, this will become the Black Body target temperature during
adjustment.<br>
<br>
<a name="w"></a><span style="font-weight: bold;">-w</span> An
alternative to specifying a white point target in Daylight or
Black Body degrees Kevin, is to specify it in chromaticity
co-ordinates. This allows the white point to be a color other than
one on the Daylight or Black Body. Note that the x,y numbers must be
specified as a single string (no space between the numbers and the
comma).<br>
<br>
<a name="b"></a><span style="font-weight: bold;">-b</span> Set
the target brightness of white in cd/m^2. If this number cannot be
reached, the brightest output possible is chosen, consistent with
matching the white point target. Note that many of the instruments
are not particularly accurate when assessing the absolute display
brightness in cd/m^2. <span style="font-weight: bold;">NOTE</span>
that some LCD screens behave a little strangely near their absolute
white point, and may therefore exhibit odd behavior at values just
below white. It may be advisable in such cases to set a brightness
slightly less than the maximum such a display is capable of.<br>
<br>
<a name="g"></a><span style="font-weight: bold;">-g gamma</span>
Set
the target response curve gamma. This is normally an exponential
curve (output = input ^gamma), and defaults to 2.4 on MSWindows and
Macintosh OS X 10.6 or latter and Linux/Unix (which is typical of a
CRT type displays real response), and 1.8 on a Macintosh (prior to
OS X 10.6). Four pre-defined curves can be used as well: the sRGB
colorspace response curve, which is an exponent curve with a
straight segment at the dark end and an overall response of
approximately gamma 2.2 (<span style="font-weight: bold;">-gs</span>),
the
L* curve, which is the response of the CIE L*a*b* perceptual
colorspace (<span style="font-weight: bold;">-gl</span>). the REC
709 video standard response curve (<span style="font-weight: bold;">-g709</span>)
and the SMPTE 240M video standard response curve (<span
style="font-weight: bold;">-g240</span>) <br>
<br>
<span style="font-weight: bold;">Note</span> that a real display
can't reproduce any of these ideal curves, since it will have a
non-zero black point, whereas all the ideal curves assume zero light
at zero input. In the case of a gamma curve target, dispcal uses an
actual technical power curve shape that aims for the same relative
output at 50% input as the ideal gamma power curve. To allow for the
non-zero black level of a real display, by default <span
style="font-weight: bold;">dispcal</span> will offset the target
curve values so that zero input gives the actual black level of the
display (output offset). This ensures that the target curve better
corresponds to the typical natural behavior of displays, but it may
not be the most visually even progression from display minimum, but
this behavior can be changed using the <span style="font-weight:
bold;">-f</span> option (see below).<br>
<br>
<span style="font-weight: bold;">Also note</span> that many color
spaces are encoded with, and labelled as having a gamma of
approximately<span style="font-weight: bold;"> 2.2</span> (ie. sRGB,
REC 709, SMPTE 240M, Macintosh OS X 10.6), but are actually intended
to be displayed on a display with a typical CRT gamma of <span
style="font-weight: bold;">2.4</span> viewed in a darkened
environment. This is because this <span style="font-weight: bold;">2.2</span>
gamma is a source gamma encoding in bright viewing conditions such
as a television studio, while typical display viewing conditions are
quite dark by comparison, and a contrast expansion of (approx.)
gamma 1.1 is desirable to make the images look as intended. So if
you are displaying images encoded to the sRGB standard, or
displaying video through the calibration, just setting the gamma
curve to sRGB or REC 709 (respectively) is probably <span
style="font-weight: bold;">not what you want!</span> What you
probably want to do, is to set the gamma curve to about gamma 2.4,
so that the contrast range is expanded appropriately, or <span
style="text-decoration: underline; font-weight: bold;">alternatively</span>
use sRGB or REC 709 or a gamm of 2.2 but <span style="font-weight:
bold;">also</span> use the <span style="font-weight: bold;">-a</span>
parameter to specify the actual ambient viewing conditions, so that
<span style="font-weight: bold;">dispcal</span> can make an
appropriate contrast enhancement. If your instrument is capable of
measuring ambient light levels, then you can do so during the
interactive display control adjustment. See
<http://www.color.org/sRGB.xalter> for details of how sRGB is
intended to be used.<br>
<br>
It is hard to know whether Apple Macintosh computers prior to OS X
10.6 should also have such an adjustment, since it is not really
possible to know whether colors labelled as being in such a
colorspace are actually encoded in that gamma with the expectation
that they will be displayed on a display with that actual response,
or whether they are intended to be displayed on a display that
contrast expands by a power 1.1. Both situations might be the
case, depending on how source material is created!<br>
<br>
<a name="G"></a><span style="font-weight: bold;">-G gamma</span>
As
explained above, the gamma value provided to the <span
style="font-weight: bold;">-g</span> option is used to set and
actual response curve that makes an allowance for the non-zero black
of the actual display, and will have the same relative output at 50%
input as the ideal gamma power curve, and so best matches typical
expectations. The <span style="font-weight: bold;">-G</span> option
is an alternative that allows the <span style="font-weight: bold;">actual</span>
power to be specified instead, meaning that when combined with the
displays non-zero black value, the response at 50% input will
probably not match that of the ideal power curve with that gamma
value.<br>
<br>
<a name="f"></a><span style="font-weight: bold;">-f [degree]</span>:
As explained in for the <span style="font-weight: bold;">-g</span>
and <span style="font-weight: bold;">-G</span> options, real
displays do not have a zero black response, while all the target
response curves do, so this has to be allowed for in some way. The
default way of handling this (equivalent to -f 1.0) is to
allow for this at the output of the ideal response curve, by
offsetting and scaling the output values.<span style="font-weight:
bold;"></span> This defined a curve that will match the responses
that many other systems provide and may be a better match to the
natural response of the display, but will give a less visually even
response from black<span style="font-weight: bold;"></span>. The
other alternative is to offset and scale the input values into the
ideal response curve so that zero input gives the actual non-zero
display response. This ensures the most visually even progression
from display minimum, but might be hard to achieve since it is
different to the naturally response of a display. A subtlety is to
provide a split between how much of the offset is accounted for as
input to the ideal response curve, and how much is accounted for at
the output, and this can be done by providing a parameter <span
style="font-weight: bold;">-f degree</span>, where the degree is
0.0 accounts for it all as input offset, and 1.0 accounts for all of
it as output offset. If <span style="font-weight: bold;">-f</span>
is used without a specified degree, a degree of 0.0 is assumed, the
opposite of the default. <span style="font-weight: bold;">Note</span>
that using all input offset (degree == 0.0) is equivalent to the use
of the <span style="font-weight: bold;">BT.1886</span> transfer
function.<br>
<br>
<a name="a"></a><span style="font-weight: bold;">-a ambient</span>:
As explained for the <span style="font-weight: bold;">-g</span>
parameter, often colors are encoded in a situation with viewing
conditions that are quite different to the viewing conditions of a
typical display, with the expectation that this difference in
viewing conditions will be allowed for in the way the display is
calibrated. The <span style="font-weight: bold;">-a</span> option
is a way of doing this. By default <span style="font-weight: bold;">dispcal</span>
will not make any allowances for viewing conditions, but will
calibrate to the specified response curve, but if the <span
style="font-weight: bold;">-a</span> option is used, or the
ambient level is measured during the interactive display controls
portion of the calibration, an appropriate viewing conditions
adjustment will be performed. For a gamma value or sRGB, the
original viewing conditions will be assumed to be that of the sRGB
standard viewing conditions, while for REC 709 and SMPTE 240M they
will be assumed to be television studio viewing conditions. By
specifying or measuring the ambient lighting for your display, a
viewing conditions adjustment based on the CIECAM02 color appearance
model will be made for the brightness of your display and the
contrast it makes with your ambient light levels. <br>
<br>
<a name="k"></a><span style="font-weight: bold;">-k factor</span>:
Normally this will be set automatically, based on the measured black
level of the display. A <span style="font-weight: bold;">-k</span>
factor of 1.0 will make all colors down the neutral axis (R=G=B)
have the same hue as the chosen white point. Near the black point,
red, green or blue can only be added, not subtracted from zero, so
the process of making the near black colors have the desired hue,
will <span style="font-weight: bold;">lighten</span> them to some
extent. For a device with a good contrast ratio or a black point
that has nearly the same hue as the white, this should not affect
the contrast ratio too severely. If the device contrast ratio is not
so good, and the native black hue is noticeably different to that of
the chosen white point (which is often the case for <span
style="font-weight: bold;">LCD</span> type displays, or <span
style="font-weight: bold;">CRT</span> type displays with one
channel which has a poor level of black), this could have a
noticeably detrimental effect on an already limited contrast ratio,
and result in a black that is not as good as it can be, and a lower
<span style="font-weight: bold;">-k</span> factor should be used. <span
style="font-weight: bold;">-k</span> values can range between 0.0
(no correction of black) to 1.0 (full correction of black). If less
than full correction is chosen, then the resulting calibration
curves will have the target white point down most of the curve, but
will then blend over to the native or compromise black point that is
blacker, but not of the right hue. The rate of this blend can be
controlled with the <span style="font-weight: bold;">-A</span>
parameter (see below). For applications where maximum contrast ratio
is important (such as <b>Video</b>), use <b>-k0</b>. <br>
<br>
<a name="A"></a><span style="font-weight: bold;">-A rate</span>:
If
the black point is not being set completely to the same hue as the
white point (ie. because the <span style="font-weight: bold;">-k</span>
factor is less than 1.0), then the resulting calibration curves will
have the target white point down most of the curve, but will then
blend over to the native or compromise black point that is blacker,
but not of the right hue. The rate of this blend can be controlled
with the <span style="font-weight: bold;">-A</span> parameter. The
default value 4.0, which results in a target that switches from the
white point target to the black, moderately close to the black
point. While this typically gives a good visual result with the
target neutral hue being maintained to the point where the crossover
to the black hue is not visible, it may be asking too much of some
displays (typically LCD type displays), and there may be some visual
effects due to inconsistent color with viewing angle. For this
situation a smaller value may give a better visual result (e.g. try
values of 3.0 or 2.0. A value of 1.0 will set a pure linear blend
from white point to black point). If there is too much coloration
near black, try a larger value, e.g. 6.0 or 8.0.<br>
<br>
<a name="bhack"></a>The <b>-b</b> flag forces source 0,0,0 to map
to destination 0,0,0. This may be useful with displays that have a
very dark black point, and with an instrument is unable to measure
it precisely, and where it is known in some other way that the
display is <u>very well behaved</u> from black (i.e. that it has no
"dead zone" above zero device input). Using this option with a
display that is <u>not</u> well behaved, may result in a loss of
shadow detail. This will override any <b>-k</b> factor.<br>
<br>
<a name="B"></a><span style="font-weight: bold;">-B</span> Set
the target brightness of black in cd/m^2 (i.e. the absolute Y
value). Setting too high a value may give strange results as it
interacts with trying to achieve the target "advertised" gamma curve
shape. You could try using -f 1 if this causes a problem.<br>
<br>
<a name="e"></a><span style="font-weight: bold;">-e [n]</span> Run <span
style="font-weight: bold;">n</span> verify passes on the final
curves. This is an extra set of instrument readings, that can be
used to estimate how well the device will match the targets with the
computed calibration curves. Note that the usefulness of the
verification is sometimes limited by the repeatability of the device
& instrument readings. This is often evident for CRT displays,
which (due to their refresh rate) flicker. More than one
verification pass can be done by providing the parameter <span
style="font-weight: bold;">n</span>, and by then comparing the
successive verifications, some idea of the repeatability can be
ascertained. The verification uses a fixed number of semi-random
test values to test the calibration.<br>
<br>
<a name="z"></a><span style="font-weight: bold;">-z</span> Run
verify pass on the display as it is currently setup (currently
installed LUT curves). This will use the usual input parameters to
establish the expected (target) characteristic. <span
style="font-weight: bold;">Note</span> that if the initial
calibration was modified due to it being out of gamut of the
display, verify will show the resulting discrepancy. You can use <a
href="dispwin.html">dispwin</a> to load a <span
style="font-weight: bold;">.cal</span> file into the display
before running dispcal <span style="font-weight: bold;">-z</span>.
Note that if you set an Ambient light level interactively during the
calibration, you need to enter the same number that was measured and
set using the <span style="font-weight: bold;">-a</span> parameter
for verify.<br>
<br>
<a name="P"></a> The <span style="font-weight: bold;">-P</span>
parameter allows you to position and size the test patch window. By
default it is places in the center of the screen, and sized
appropriately for the type of instrument, or 10% of the width of the
display if the display size is unknown.. The <span
style="font-weight: bold;">ho</span> and <span
style="font-weight: bold;">vo</span> values govern the horizontal
and vertical offset respectively. A value of 0.0 positions the
window to the far left or top of the screen, a value of 0.5
positions it in the center of the screen (the default), and 1.0
positions it to the far right or bottom of the screen. If three
parameters are provided, then the <span style="font-weight: bold;">ss</span>
parameter is a scale factor for the test window size. A value of 0.5
for instance, would produce a half sized window. A value of 2.0 will
produce a double size window. If four parameters are provided, then
the last two set independent horizontal and vertical scaling
factors. Note that the ho,vo,ss or ho,vo,hs,vs numbers must be
specified as a single string (no space between the numbers and the
comma). For example, to create a double sized test window at the top
right of the screen, use <span style="font-weight: bold;">-P 1,0,2</span>
. To create a window twice as wide as high: <span
style="font-weight: bold;">-P 1,0,2,1</span>.<br>
<br>
<a name="F"></a> The <span style="font-weight: bold;">-F</span>
flag causes the while screen behind the test window to be masked
with black. This can aid black accuracy when measuring CRT displays
or projectors.<br>
<br>
<a name="E"></a> The <span style="font-weight: bold;">-E</span>
flag causes the display test values to be scaled to the Video RGB
encoding range of (16-235)/255. This also modifies the resulting
calibration curve behavior downstream of dispcal. If a calibration
curve created using -E gets installed or converted to an ICC profile
'vcgt' tag in the process of creating a profile in dispcal or
colprof, the incoming full range values will first have the
calibration curve applied and then be scaled to the Video encoding
range (16-235)/255.<br>
<br>
<a name="n"></a><span style="font-weight: bold;">-n</span> When
running on a UNIX based system that used the X11 Windowing System, <b>dispcal</b>
normally selects the override redirect so that the test window will
appear above any other windows on the display. On some systems this
can interfere with window manager operation, and the <b>-n</b>
option turns this behaviour off.<br>
<br>
<a name="J"></a> The -<span style="font-weight: bold;">J</span>
option runs through the black and sensor relative calibration
routines for the Xrite DTP92 and DTP94 instruments, the black level
calibration for the Eye-One Display 1, and a CRT frequency
calibration for the Eye-One Display 2. For the black calibration the
instrument should be placed on an opaque, black surface, and any
stray light should be avoided by placing something opaque over the
instrument. If a Spectrolino is being used, then a white and black
calibration will always be performed before the instrument can be
placed on the display, unless the <a href="dispcal.html#N">-N</a>
flag is used. Generally it is not necessary to do a calibration
every time an instrument is used, just now and again. There is also
no point in doing a CRT frequency calibration, as this will be
done automatically at the commencement of patch reading, and will be
lost between runs.<br>
<br>
<a name="N"></a> <span style="font-weight: bold;">-N</span> Any
instrument that requires regular calibration will ask for
calibration on initial start-up. Sometimes this can be awkward if
the instrument is being mounted in some sort of measuring jig, or
annoying if several sets of readings are being taken in quick
succession. The -<span style="font-weight: bold;">N</span>
suppresses this initial calibration if a valid and not timed out
previous calibration is recorded in the instrument or on the host
computer. It is advisable to only use this option on the second and
subsequent measurements in a single session.<br>
<br>
<a name="H"></a> The -<span style="font-weight: bold;">H</span>
option turns on high resolution spectral mode, if the instrument
supports it, such as the Eye-One Pro. See <a
href="instruments.html">Operation of particular instruments</a>
for more details. This may give better accuracy for display
measurements.<br>
<br>
<a name="X1"></a> The -<span style="font-weight: bold;">X <span
style="font-style: italic;">file.ccmx</span></span> option reads
a <a href="File_Formats.html#.ccmx">Colorimeter Correction Matrix</a>
from the given file, and applies it to the colorimeter instruments
readings. This can improve a colorimeters accuracy for a particular
type of display. A list of contributed <span style="font-weight:
bold;">ccmx</span> files is <a href="ccmxs.html">here</a>.<br>
<br>
<a name="X2"></a> The -<span style="font-weight: bold;">X <span
style="font-style: italic;">file.ccss</span></span> option reads
a <a href="File_Formats.html#.ccss">Colorimeter Calibration
Spectral Sample</a> from the given file, and uses it to set the
colorimeter instruments calibration. This will only work with
colorimeters that rely on sensor spectral sensitivity calibration
information (ie. the X-Rite <span style="font-weight: bold;">i1d3</span>,
or the DataColor <span style="font-weight: bold;">Spyder4 &
Spyder 5</span>).This can improve a colorimeters accuracy for a
particular type of display. A list of contributed <span
style="font-weight: bold;">ccss</span> files is <a
href="ccsss.html">here</a>.<br>
<br>
<a name="Q"></a> The <b>-Q</b> flag allows specifying a tristimulus
observer, and is used to compute PCS (Profile Connection Space)
tristimulus values from spectral readings or using a colorimeter
that has CCSS capability. The following choices are available:<br>
<b> 1931_2</b> selects the standard CIE 1931 2 degree
observer. The default.<br>
<b>1964_10</b> selects the standard CIE 1964 10 degree
observer<br>
<b> 2012_2</b> selects the proposed CIE 2012 2 degree observer<br>
<b>2012_10</b> selects the proposed CIE 2012 10 degree
observer<br>
<b>1955_2</b> selects the Stiles and Birch 1955 2 degree
observer<br>
<b>1978_2 </b>selects the Judd and Voss 1978 2 degree
observer<br>
<b>shaw</b> selects the Shaw and Fairchild 1997 2 degree
observer<br>
<b>1964_10c</b> selects a version of the CIE 1964 10 degree
observer that has been adjusted using a 3x3 matrix to better agree
with the 1931 2 degree observer.<br>
<i><b>file.cmf</b></i> selects an observer specified by the
given <a href="File_Formats.html#.cmf">.cmf</a> file.<br>
<br>
<span style="font-weight: bold;">NOTE</span> that if you select
anything other than the default 1931 2 degree observer, that the Y
values will not be cd/m^2, due to the Y curve not being the CIE 1924
photopic V(λ) luminosity function.<br>
<br>
<a name="I"></a> The -<span style="font-weight: bold;">I <span
style="font-style: italic;">b|w</span></span> options invoke
instrument black level, and display white level compensation
(respectively). Instrument black level drift compensation attempts
to combat instrument black calibration drift by using a display
black test patch as a reference. If an instrument is not
acclimatised sufficiently to the measurement conditions, changes in
temperature can affect the black readings. Display white level drift
compensation attempts to combat changes in display brightness as it
warms up by measuring a white patch every so often, and using it to
normalise all the other readings. If just instrument black drift
compensation is needed, use <span style="font-weight: bold;">-Ib</span>.
If just display white level compensation is needed, use <span
style="font-weight: bold;">-Iw</span>. If both are needed, use <span
style="font-weight: bold;">-Ibw</span> or <span
style="font-weight: bold;">-Iwb</span>.<span style="font-weight:
bold;"> </span><br>
<br>
<a name="YR"></a> The -<span style="font-weight: bold;">Y R:<i>rate</i></span>
options overrides calibration of the instrument refresh rate. This
may be useful if the instrument supports this function and the
refresh rate cannot be accurately calibrated from the display
itself.<br>
<br>
<a name="YA"></a> The -<span style="font-weight: bold;">Y A</span>
option uses a non-adaptive integration time emission measurement
mode, if the instrument supports it, such as the Eye-One Pro,
ColorMunki, i1d3 and K10. By default an adaptive integration time
measurement mode will be used for emission measurements, but some
instruments support a fixed integration time mode that can be used
with display devices. This may give faster measurement times, but
may also give less accurate low level readings.<br>
<br>
<a name="Yp"></a> The -<span style="font-weight: bold;">Y p</span>
option skips asking the user to place the instrument on the display.
Normally a grey patch is displayed, and then the user is asked to
confirm that the instrument is in place, so that readings can
commence. This flag disables that check. This may be useful in
automating certain operations.<br>
<br>
<a name="C"></a> The -<span style="font-weight: bold;">C</span> <span
style="font-weight: bold;">"command" </span>option allows a
method of relaying each test value to some other display than that
on the system running dispcal (for instance, a photo frame, PDA
screen etc.), by causing the given command to be invoked to the
shell, with six arguments. The first three arguments are the RGB
test color as integers in the range 0 to 255, the second three
parameters are the RGB test color as floating point numbers in the
range 0.0 to 1.0. The script or tool should relay the given color to
the screen in some manner (e.g. by generating a raster file of the
given color and sending it to the display being profiled), before
returning. Note that a test window will also be created on the
system running dispread.<br>
<br>
<a name="M"></a> The -<span style="font-weight: bold;">M</span> <span
style="font-weight: bold;">"command" </span>option allows a
method of gathering each test value from some external source, such
as an instrument that is not directly supported by Argyll. The given
command is involked to the shell, with six arguments. The first
three arguments are the RGB test color as integers in the range 0 to
255, the second three parameters are the RGB test color as floating
point numbers in the range 0.0 to 1.0. The script or tool should
create a file called <span style="font-weight: bold;">"command.meas</span>"
that contains the XYZ values for the given RGB (or measured from the
test window) in cd/m^2 as three numbers separated by spaces, before
returning. If the command returns a non-zero return value, dispcal
will abort. Note that a test window will also be created on the
system running dispcal.<br>
<br>
<a name="W"></a>The <b>-W</b> <span style="font-weight: bold;">n|h|x</span>
parameter overrides the default serial communications flow control
setting. The value <span style="font-weight: bold;">n</span> turns
all flow control off, <span style="font-weight: bold;">h</span>
sets hardware handshaking, and <span style="font-weight: bold;">x</span>
sets Xon/Xoff handshaking. This commend may be useful in workaround
serial communications issues with some systems and cables. <br>
<br>
<a name="D"></a>The <b>-D</b> flag causes communications and other
instrument diagnostics to be printed to stdout. A level can be set
between 1 .. 9, that may give progressively more verbose
information, depending on the instrument. This can be useful in
tracking down why an instrument can't connect.<br>
<br>
<a name="p1"></a><span style="font-weight: bold;">inoutfile</span>
The final parameter on the command line is the base filename for the
<a href="cal_format.html">.cal</a> file and the optional ICC
profile. Normally this will be created (or an existing file will be
overwritten). If the <span style="font-weight: bold;">-u</span>
flag is used, then these files will be updated. If a different ICC
profile name needs to be specified, do so as an argument to the <span
style="font-weight: bold;">-o</span> flag.<br>
<br>
<span style="font-weight: bold;">NOTE</span> that on an X11 system,
if the environment variable <span style="font-weight: bold;">ARGYLL_IGNORE_XRANDR1_2</span>
is set (ie. set it to "yes"), then the presence of the XRandR 1.2
extension will be ignored, and other extensions such as Xinerama and
XF86VidMode extension will be used. This may be a way to work around
buggy XRandR 1.2 implementations.<br>
<br>
<hr style="width: 100%; height: 2px;">
<h2><a name="Adjustment"></a>Discussion and guide to display control
adjustment:</h2>
<br>
The adjustment of the display controls (brightness, contrast, R, G
& B channel controls etc.) is very dependent on the particular
monitor. Different types and brands of monitors will have different
controls, or controls that operate in different ways. Some displays
have almost no user controls, and so you may well be best skipping
display adjustment, and going straight to calibration.<br>
<br>
Almost all LCD displays lack a real <span style="font-weight:
bold;">contrast</span> control. Those that do present such a
control generally fake it by adjusting the video signal. For this
reason it is usually best to set an LCD's <span style="font-weight:
bold;">contrast</span> control at its neutral setting (ie. the
setting at which it doesn't change the video signal). Unfortunately,
it can be hard to know what this neutral setting is. On some
displays it is 50%, others 75%. If the LCD display has a "reset to
factory defaults" mode, then try using this first, as a way of
setting the <span style="font-weight: bold;">contrast</span>
control to neutral. The LCD <span style="font-weight: bold;">brightness</span>
control generally adjusts the level of backlighting the display
gets, which affects the maximum brightness, and also tends to raise
or lower the black level in proportion, without changing the
displays response curve shape or overall contrast ratio. If your LCD
display has a <span style="font-weight: bold;">backlight</span>
control as well as a <span style="font-weight: bold;">brightness</span>
control, then the brightness control is also probably being faked,
and you are probably better off setting it to it's neutral setting,
and using the <span style="font-weight: bold;">backlight</span>
control in place of <span style="font-weight: bold;">brightness</span>
in the following adjustments.<br>
<br>
Some high end displays have the ability to mimic various standard
colorspaces such as sRGB or AdobeRGB. You could choose to calibrate
and profile the display in such an emulation mode, although you
probably don't want to fight the emulations white point and gamma.
To get the best out of such a display you really want to choose it's
"Native Gamut" setting, whatever that is called. Note that some
people have reported bad experiences in trying to use "6-axis custom
controls" on displays such as the Dell U2410, so attempting to use
such a mode should be approached with caution. Ideally such a mode
should be used to give just the underlying native display response,
but the settings to achieve this may be very difficult to determine,
and/or it may not be possible, depending on how such a mode distorts
the RGB signals.<br>
<br>
On CRT based displays, the <span style="font-weight: bold;">brightness</span>
control generally adjusts the black level of the display (sometimes
called the <span style="font-weight: bold;">offset</span>), and as
a side effect, tends to change the maximum brightness too. A CRT <span
style="font-weight: bold;">contrast</span> control generally
adjusts the maximum brightness (sometimes called <span
style="font-weight: bold;">gain</span>) without affecting the
black level a great deal. On a CRT both the <span
style="font-weight: bold;">brightness</span> and <span
style="font-weight: bold;">contrast</span> controls will tend to
affect the shape or gamma of the display response curve.<br>
<br>
Many displays have some sort of color temperature adjustment. This
may be in the form of some pre-set color temperatures, or in the
form of individual Red, Green and Blue channel gain adjustments.
Some CRT displays also have R, G & B channel offset adjustments
that will affect the color temperatures near black, as well as
affect the individual channels curve shape. The color temperature
adjustment will generally affect the maximum brightness, and may
also affect the black level and the shape of the display response
curves.<br>
<br>
Some special (expensive) LCD displays may have a white point
adjustment that changes the color of the backlight. If you do not
have one of these types of LCD displays, then attempting to change
the white point of the display (even if it appears to have a "<span
style="font-weight: bold;">white point selection</span>" or <span
style="font-weight: bold;">R/G/B</span> "<span style="font-weight:
bold;">gain</span>" controls") may not be a good idea, as once
again these controls are probably being faked by manipulating the
signal levels. Even if you do manage to change the white point
significantly, it may do things like change the mid tone color too
dramatically, or create a display response that is hard to correct
with calibration, or results in side effects such as quantization
(banding) or other undesirable effects. You may have to try out
various controls (and your aim points for the display calibration),
to decide what is reasonable to attempt on an LCD display.<br>
<br>
Due to the variety of controls as well as the interaction between
them, it can be an iterative process to arrive at a good monitor
set-up, before proceeding on to calibrating and profiling a display.
For this reason, <span style="font-weight: bold;">dispcal</span>
offers a menu of adjustment modes, so that the user can
interactively and iteratively adjust the display controls to meet
the desired targets.<br>
<br>
1) Black level (CRT: Brightness)<br>
2) White point (Color temperature, R,G,B, Gain/Contrast)<br>
3) White level (CRT: Gain/Contrast, LCD:
Brightness/Backlight)<br>
4) Black point (R,G,B, Offset/Brightness)<br>
5) Check all<br>
6) Measure and set ambient for viewing condition adjustment<br>
7) Continue on to calibration<br>
8) Exit<br>
<br>
There are four basic adjustment modes. Normally one would proceed
through them in the order above, then perhaps repeat the first
adjustment, before checking the overall settings. The White point
and White level modes operate slightly differently, depending on
whether a white target point has been set using the <span
style="font-weight: bold;">-t -T</span> or <span
style="font-weight: bold;">-w</span> options, and on whether a
brightness target has been set using the <span style="font-weight:
bold;">-b</span> option.<br>
<br>
<br>
The first mode lets you adjust the black level of a CRT display.
Given the current white level, it calculates a value that should
produce a 1% display brightness if the black level is set correctly.
After doing some initial measurements, it will show the target
brightness value (in cd/m^2) on one line, and then underneath it
will show continuously updated readings from the display. The left
most character will switch from '\' to '/' or back again each time a
reading is updated. Some instruments can be quite slow in measuring
dark colors, and it's best to wait for a reading update before
changing the controls more than once. Underneath the target value is
displayed the current reading, and to the right of this is a '+',
'-' or '=' symbol, which gives a hint as to which way to adjust the
brightness control to improve the match to the target.<br>
<br>
<small style="font-weight: bold;"><span style="font-family:
monospace;"> Adjust CRT brightness to get target level.
Press space when done.</span><br style="font-family: monospace;">
<span style="font-family: monospace;"> Target
0.60</span><br style="font-family: monospace;">
<span style="font-family: monospace;"> / Current 0.68
-</span></small><br>
<br>
Once happy with the adjustment, press space to go back to the menu.<br>
<br>
<br>
The second mode lets you adjust the color of the white point of the
display. If a target white point has been set, it will show the
target brightness value (in cd/m^2) on one line, together with the
target chromaticity co-ordinates for the white point, and then
underneath it will show continuously updated readings from the
display. The left most character will switch from '\' to '/' or back
again each time a reading is updated. Underneath the target
brightness value is displayed the current reading, and then the
current chromaticity co-ordinate values. To the right of this is the
current delta E of the white point from the target, and further to
the right are hints '+', '-' or '=' as to which direction to
adjust the individual Red, Green and Blue gain settings to move the
white point in the direction of the target, and reduce the delta E.
If the symbol is doubled, then this channel will have the greatest
effect. If you do not have individual channel gain controls, then
try choosing amongst color temperature pre-sets, to find one with
the lowest delta E. Depending on the stability of the display, the
coarseness of the controls, and the repeatability of the instrument,
you may not be able to get a perfectly zero delta E.<br>
<br>
<small style="font-weight: bold;"><span
style="font-family: monospace;">Adjust R,G & B gain to get
target x,y. Press space when done.<br>
Target B 60.00, x 0.3451, y 0.3516<br>
/ Current B 60.05, x 0.3426, y 0.3506 DE
1.4 R+ G+ B--</span><span style="font-family:
monospace;"></span></small><br>
<br>
If you did not set a white point target, then the information shown
is a little different - it will show the initial white point value,
as well as the color temperature, and the CIEDE2000 of the white
point to either the Daylight or Black Body locus (depending on
whether the <span style="font-weight: bold;">-T</span> flag was
set). The constantly updated values show the same thing, and the
Red, Green and Blue control hints show the direction to adjust the
controls to place the white point on the locus. The control that
will have the most direct effect on the color temperature will be
the Blue, while the Green will most directly move the white point
towards or away from the locus, thereby reducing the delta E of the
white point to the locus (but there is interaction).<br>
<br>
<small style="font-weight: bold;"><span style="font-family:
monospace;">Adjust R,G & B gain to desired white point.
Press space when done.</span><br style="font-family: monospace;">
<span style="font-family: monospace;"> Initial B 47.25, x
0.3417, y 0.3456, CDT 5113 DE 6.9</span><br
style="font-family: monospace;">
<span style="font-family: monospace;">\ Current B 47.38, x 0.3420,
y 0.3460 CDT 5104 DE 6.7 R-- G+ B-</span></small><br>
<br>
The brightness value is just there as a guide to what effect
the adjustment is having on the overall brightness. Usually the
white level brightness is adjusted using the next adjustment mode.
Once happy with the adjustment, press space to go back to the menu.<br>
<br>
<br>
The third mode lets you adjust the brightness of white on the
display. If you set a target brightness using the <span
style="font-weight: bold;"><span style="font-weight: bold;">-b</span></span>
parameter, it will show the target brightness value (in cd/m^2) on
one line, and then underneath it will show continuously updated
readings from the display. The left most character will switch from
'\' to '/' or back again each time a reading is updated. Underneath
the target value is displayed the current reading, and to the right
of this is a '+', '-' or '=' symbol, which gives a hint as to which
way to adjust the CRT contrast or LCD brightness control to improve
the match to the target.<br>
<br>
<small style="font-weight: bold;"><span
style="font-family: monospace;">Adjust CRT Contrast or LCD
Brightness to get target level. Press space when done.<br>
Target 60.00<br>
/ Current 59.96 +</span><span style="font-family:
monospace;"></span></small><br>
<br>
If you did not set a brightness target, it will show the initial
brightness as the target, and the current brightness, which you can
then set any way you want:<br>
<br>
<small style="font-weight: bold;"><span style="font-family:
monospace;">Adjust CRT Contrast or LCD Brightness to desired
level. Press space when done.</span><br style="font-family:
monospace;">
<span style="font-family: monospace;"> Initial 47.32</span><br
style="font-family: monospace;">
<span style="font-family: monospace;">/ Current 47.54</span></small><br>
<br>
Once happy with the adjustment, press space to go back to the menu.<br>
<br>
<br>
The fourth mode lets you adjust the color of the black point of the
display, if the display has Red, Green and Blue channel offset
controls. It will show the target 1% brightness value (in cd/m^2) on
one line, together with the target chromaticity co-ordinates for the
black point, and then underneath it will show continuously updated
readings from the display. The left most character will switch from
'\' to '/' or back again each time a reading is updated. Underneath
the target brightness value is displayed the current reading, and
then the current chromaticity co-ordinate values. To the right of
this is the current delta E of the black point from the target, and
further to the right are hints '+', '-' or '=' as to which
direction to adjust the individual Red, Green and Blue offset
settings to move the black point in the right direction. If the
symbol is doubled, then this channel will have the greatest effect.
<br>
<br>
<span style="font-family: monospace;"><span style="font-weight:
bold;"> Adjust R,G & B offsets to get target x,y.
Press space when done.<br>
Target B 0.60, x 0.3451, y 0.3516<br>
\ Current B 0.62, x 0.2782, y 0.2331 DE
10.3 R+ G++ B-</span></span><small
style="font-weight: bold;"><span style="font-family: monospace;"></span><span
style="font-family: monospace;"></span></small><br>
<br>
The 1% brightness value is just there as a guide to what
effect the adjustment is having on the 1% brightness level. The
combined channel offsets may have an effect on this in combination
with the CRT brightness control. Press space to go back to the menu.<br>
<br>
<br>
The fifth selection checks on the overall settings. If targets
have been set, it will be like:<br>
<br>
<small style="font-weight: bold;"><span style="font-family:
monospace;"> Target Brightness = 50.00, Current = 47.44,
error = -5.1%<br>
Target 50% Level = 10.32, Current = 8.10,
error = -4.4%<br>
Target Near Black = 0.47, Current = 0.68,
error = 0.4%<br>
Target white = x 0.3458, y 0.3586, Current = x 0.3420, y
0.3454, error = 7.55 DE<br>
Target black = x 0.3458, y 0.3586, Current = x 0.2908, y
0.2270, error = 29.69 DE</span><span style="font-family:
monospace;"></span></small><br>
<br>
or if no targets are set:<br>
<br>
<small style="font-weight: bold;"><span style="font-family:
monospace;"> Current Brightness = 46.28</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> Target 50%
Level = 10.07, Current = 7.52, error = -5.5%</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> Target Near Black
= 0.46, Current = 0.46, error = -0.0%</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> Current white = x
0.3439, y 0.3466, VCT 5098K DE 3.0</span><br
style="font-family: monospace;">
<span style="font-family: monospace;"> Target black = x
0.3439, y 0.3466, Current = x 0.3093, y 0.2165, error = 30.30 DE</span></small><br>
<br>
and will then go back to the menu.<br>
<br>
The sixth selection <span style="font-weight: bold;">6)</span>
allows the reading of you ambient lighting conditions if your
instrument supports such a mode. Doing so will enable the <span
style="font-weight: bold;">-a</span> option to compensate for your
viewing conditions in the subsequent calibration. See <a
href="dispcal.html#a">-a</a>.<br>
<br>
Once you're happy with the display set-up, you can either
proceed on to the rest of the calibration by selecting <span
style="font-weight: bold;">7)</span>, or exit and re-start by
selecting <span style="font-weight: bold;">8)</span>. You might
want to re-start if you want to change the calibration targets.<br>
<br>
<hr style="width: 100%; height: 2px;">
<h2>Other caveats:</h2>
NOTE that some <span style="font-weight: bold;">LCD</span> screens
behave a little strangely near their absolute white point, and may
therefore exhibit odd behavior at values just below white. It may be
advisable in such cases to set a brightness slightly less than the
maximum such a display is capable of.<br>
<br>
The program attempts to stop any screensaver or powersaver from
interfering with the measurements, but this may not be effective on
some systems, so it may be necessary to manually disable the
screensaver and/or powersaver before commencing the calibration with
a large number of patches.<br>
<br>
The calibration tables produced maintain the maximum level of
precision available on a system. If the display has VideoLUTs
available (Video Lookup Tables that the frame buffer values pass
through on their way to the display) and thier outputs are better
than 8 bits per component, then the resulting curves can reflect
this, although few current operating systems and/or display cards
actually support better than 8 bit per component output.<br>
<br>
If calibration curves are created for a display in which VideoLUTs
are not available, then the resulting calibration file will be
marked to indicate this, and a subsequent profile created with the
calibration will not have the calibration converted to the 'vcgt'
tag, since such a tag can't be loaded into the displays VideoLUTs.<br>
<br>
If communications break down with a USB connected instrument, you
may have to unplug it, and plug it in again to recover operation.<br>
<br>
Some systems (Apple OS X in particular) have a special set of user
interface controls ("Universal Access") that allows altering the
display in ways designed to assist visually impaired users, by
increasing contrast etc. This will interfere badly with any attempts
to calibrate or profile such a system, and must be turned off in
order to do so. Note that certain magic keyboard sequences can turn
this on by accident.<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>
|