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
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
| {
| "sensor_calib": {
| "resolution": {
| "width": 8192,
| "height": 6144
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 248, 128, 0, 1, 128, 31744],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 15.5
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 16
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 8,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 22]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 2,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 10]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 2,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 10]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 0,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 1.6,
| "EFL": 5.2,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp30": {
| "ae_calib": {
| "CommCtrl": {
| "Enable": 1,
| "AecRunInterval": 0,
| "AecOpType": "RK_AIQ_OP_MODE_AUTO",
| "HistStatsMode": "CAM_HISTV2_MODE_Y",
| "RawStatsMode": "CAM_RAWSTATSV2_MODE_Y",
| "YRangeMode": "CAM_YRANGEV2_MODE_FULL",
| "AecGridWeight": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.01,
| "GainValue": 1,
| "IspDGainValue": 1
| },
| "HdrAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1]
| }
| },
| "AecSpeed": {
| "SmoothEn": 1,
| "DyDampEn": 1,
| "DampOver": 0.15,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.15,
| "DampBright2Dark": 0.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 2,
| "WhiteDelay": 2
| },
| "AecFrameRateMode": {
| "isFpsFix": 1,
| "FpsValue": 0
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.02859, 0.5972]
| },
| "AecWinScale": {
| "InRawWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| },
| "TmoRawWinScale": {
| "h_offs": 0.1,
| "v_offs": 0.1,
| "h_size": 0.9,
| "v_size": 0.9
| },
| "YuvWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| }
| }
| },
| "LinearAeCtrl": {
| "RawStatsEn": 1,
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.003,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.01, 0.01, 0.02, 0.03, 0.03],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 4, 8, 15.5, 64],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 2],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.096, 0.192, 0.576, 0.96, 1.344],
| "ExpLevel_len": 6,
| "DySetpoint": [45, 45, 40, 38, 33, 30],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.096, 0.192, 0.384, 0.576, 0.96, 1.344],
| "ExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
| "LowLightPdfTh_len": 6,
| "TargetLLLuma": [25, 22, 20, 18, 15, 12],
| "TargetLLLuma_len": 6
| }
| },
| "OverExpCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MaxWeight": 8,
| "HighLightTh": 150,
| "LowLightTh": 30,
| "OverExpSetPoint": {
| "OEpdf": [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
| "OEpdf_len": 6,
| "LowLightWeight": [1, 1, 1, 1, 1, 1],
| "LowLightWeight_len": 6,
| "HighLightWeight": [4, 3, 3, 3, 2, 2],
| "HighLightWeight_len": 6
| }
| }
| },
| "HdrAeCtrl": {
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "LumaDistTh": 10,
| "InitExp": {
| "InitTimeValue": [0.0005, 0.003, 0.003],
| "InitGainValue": [1, 1, 1],
| "InitIspDGainValue": [1, 1, 1],
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "Frm0TimeDot": [0, 0.003, 0.003, 0.003, 0.003, 0.003],
| "Frm0TimeDot_len": 6,
| "Frm0GainDot": [1, 1, 4, 8, 15.5, 32],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 4, 8, 15.5, 64],
| "Frm1GainDot_len": 6,
| "Frm1IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm1IspDGainDot_len": 6,
| "Frm2TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm2TimeDot_len": 6,
| "Frm2GainDot": [1, 1, 4, 8, 15.5, 64],
| "Frm2GainDot_len": 6,
| "Frm2IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm2IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "ExpRatioCtrl": {
| "ExpRatioType": "AECV2_HDR_RATIOTYPE_MODE_AUTO",
| "ExpRatio": {
| "RatioExpDot": [0, 0.1, 0.3, 0.5, 0.7, 1],
| "RatioExpDot_len": 6,
| "M2SRatioFix": [4, 4, 4, 4, 4, 4],
| "M2SRatioFix_len": 6,
| "L2MRatioFix": [4, 4, 4, 4, 4, 4],
| "L2MRatioFix_len": 6,
| "M2SRatioMax": [64, 64, 64, 64, 64, 64],
| "M2SRatioMax_len": 6,
| "L2MRatioMax": [32, 32, 30, 28, 26, 24],
| "L2MRatioMax_len": 6
| }
| },
| "LongFrmMode": {
| "mode": "AECV2_HDR_LONGFRMMODE_NORMAL",
| "SfrmMinLine": 2,
| "LfrmModeExpTh": 0.62
| },
| "LframeCtrl": {
| "OEROILowTh": 150,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "LfrmSetPoint": {
| "LExpLevel": [0, 0.0192, 0.0576, 0.096, 0.192, 0.384],
| "LExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
| "LowLightPdfTh_len": 6,
| "LSetPoint": [75, 70, 65, 60, 45, 40],
| "LSetPoint_len": 6,
| "TargetLLLuma": [35, 32, 30, 28, 25, 20],
| "TargetLLLuma_len": 6
| }
| },
| "MframeCtrl": {
| "MExpLevel": [0.096, 0.192, 0.384, 0.96, 1.344, 1.92],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [1.32703, 1, 1, 3.31432],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_AUTO",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["D65", "D75", "HZ", "A", "CWF", "D50", "TL84"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_8X8",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [3],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [3],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [3],
| "minB_len": 1,
| "maxY": [230],
| "maxY_len": 1,
| "minY": [3],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333668, 0.333946, 0.332386],
| "rotationMat": [-0.617546, 0.786535, -0.119209, 0.786535, 0.617546, 0.402762, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0390625, 0.136719, 0.015625, 31.125, -0.0917969, 0.0117188, 0.0585938, 137.375, 0.0332031, -0.0605469, 0.0625, 113.375, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 0,
| "wpDiffWeiEnableTh": {
| "wpDiffWeiNoTh": 0.004,
| "wpDiffWeiLvValueTh": 64
| },
| "wpDiffwei_y": [0, 16, 32, 64, 96, 128, 192, 224, 240],
| "perfectBin": [0, 0, 0, 1, 1, 1, 1, 0],
| "wpDiffWeightLvSet": [{
| "LvValue": 256,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 8192,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 0,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.75129, 1, 1, 1.48723],
| "uvRegion": {
| "u": [127.363, 105.177, 95.6329, 126.829],
| "v": [124.809, 75.8337, 81.3927, 125.097]
| },
| "xyRegion": {
| "normal": [-0.127734, 0.0670898, 0.0784375, -0.0815625],
| "big": [-0.127734, 0.0670898, 0.108438, -0.111562]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 138.188, 113.75, 191, 136.188, 112.563],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.84411, 1, 1, 1.37203],
| "uvRegion": {
| "u": [128.172, 119.557, 104.955, 127.339],
| "v": [124.557, 68.3297, 75.72, 124.831]
| },
| "xyRegion": {
| "normal": [0.0670898, 0.222458, 0.0858454, -0.0957537],
| "big": [0.0670898, 0.232008, 0.102578, -0.120294]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 137.625, 113.688, 191, 141.375, 114.625],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [0.801384, 1, 1, 2.95273],
| "uvRegion": {
| "u": [124.114, 58.952, 51.5543, 123.117],
| "v": [129.224, 171.246, 144.159, 127.818]
| },
| "xyRegion": {
| "normal": [-1.70254, -1.33477, 0.0776562, -0.0823437],
| "big": [-1.70254, -1.33477, 0.107656, -0.104072]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 147.25, 112.938, 175.813, 74.6875, 115.438],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.00448, 1, 1, 2.51232],
| "uvRegion": {
| "u": [122.821, 51.6402, 61.0725, 124.712],
| "v": [127.855, 144.248, 112.542, 126.575]
| },
| "xyRegion": {
| "normal": [-1.33414, -0.872266, 0.121879, -0.0405469],
| "big": [-1.33414, -0.872266, 0.149453, -0.0670801]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 144.688, 113.563, 182.688, 90.375, 111.438],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.44715, 1, 1, 2.14909],
| "uvRegion": {
| "u": [125.848, 77.5005, 67.8133, 124.97],
| "v": [125.124, 95.3214, 103.601, 125.65]
| },
| "xyRegion": {
| "normal": [-0.610281, -0.415275, -0.0165698, -0.170166],
| "big": [-0.816945, -0.404677, -0.00567641, -0.218097]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 141.563, 113.813, 188.813, 114.313, 106.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.52091, 1, 1, 1.67553],
| "uvRegion": {
| "u": [126.589, 95.5228, 77.6912, 125.976],
| "v": [124.869, 81.3927, 95.0845, 125.191]
| },
| "xyRegion": {
| "normal": [-0.425138, -0.131596, 0.137812, -0.047164],
| "big": [-0.427302, -0.127734, 0.167812, -0.119442]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 140.5, 113.063, 190.25, 123.688, 113.063],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.39821, 1, 1, 2.20994],
| "uvRegion": {
| "u": [125.039, 68.913, 61.4966, 124.629],
| "v": [125.38, 102.086, 112.252, 126.582]
| },
| "xyRegion": {
| "normal": [-0.872266, -0.544039, 0.0570427, -0.0443944],
| "big": [-0.872266, -0.509914, 0.0861719, -0.0605106]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.2, 0.2, 0.2, 0.76, 1, 4],
| "lineVector": [10, 141.688, 114.313, 188.375, 112.125, 105.563],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4096],
| "defaultDayGainLow": [1.52091, 1, 1, 1.67553],
| "defaultDayGainHigh": [1.75129, 1, 1, 1.48723],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0, 0, 0, 0],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [0, 0, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.05,
| "dFMin": 0.7,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500, 10000],
| "cct_len": 6,
| "cri_bound_up": [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
| "cri_bound_up_len": 6,
| "cri_bound_low": [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
| "cri_bound_low_len": 6
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [150],
| "low_len": 1,
| "high": [216],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.52091, 1, 1, 1.67553],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 4096, 16384, 32768, 65536, 131072, 262144],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 6.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.0031,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [216],
| "forBigType_len": 1,
| "forExtraType": [216],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 30.2391,
| "meanH": 26.5481
| }, {
| "index": 13,
| "meanC": 26.2109,
| "meanH": -75.3823
| }, {
| "index": 5,
| "meanC": 11.0753,
| "meanH": -64.4391
| }, {
| "index": 10,
| "meanC": 13.6765,
| "meanH": -38.0872
| }, {
| "index": 14,
| "meanC": 21.8736,
| "meanH": 145.883
| }, {
| "index": 16,
| "meanC": 30.8921,
| "meanH": 89.6627
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.00448,
| "BGain": 2.51232
| }, {
| "name": "TL84",
| "RGain": 1.39821,
| "BGain": 2.20994
| }, {
| "name": "D50",
| "RGain": 1.52091,
| "BGain": 1.67553
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.808251, -0.588838, -2.29122],
| "lineRgProjCCT": [1, -0.000204942, 0.419163],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [1.75129, 1, 1, 1.48723],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib_V30": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 4, 8, 12, 16, 20, 24, 29, 33, 41, 49, 58, 66, 83, 100, 116, 133, 167, 200, 234, 268, 336, 406, 476, 548, 695, 846, 994, 1133, 1361, 1527, 1660, 1784, 2005, 2188, 2328, 2438, 2617, 2784, 2949, 3099, 3228, 3345, 3459, 3574, 3696, 3825, 3959, 4095]
| }
| },
| "ablc_calib": {
| "BlcTuningPara": {
| "enable": 1,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [255, 255.5, 255.375, 255.25, 255.75, 256, 259.938, 263.625, 263.625, 263.625, 263.625, 263.625, 263.625],
| "R_Channel_len": 13,
| "Gr_Channel": [256, 255, 256, 256, 256.313, 258, 260.25, 265.75, 265.75, 265.75, 265.75, 265.75, 265.75],
| "Gr_Channel_len": 13,
| "Gb_Channel": [256, 256.5, 256.5, 256.563, 256.75, 258, 260.375, 265.938, 265.938, 265.938, 265.938, 265.938, 265.938],
| "Gb_Channel_len": 13,
| "B_Channel": [255, 255.375, 255.375, 255.438, 255.375, 256, 257.625, 262.063, 262.063, 262.063, 262.063, 262.063, 262.063],
| "B_Channel_len": 13
| }
| },
| "Blc1TuningPara": {
| "enable": 0,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "R_Channel_len": 13,
| "Gr_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Gr_Channel_len": 13,
| "Gb_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Gb_Channel_len": 13,
| "B_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "B_Channel_len": 13
| }
| }
| },
| "adegamma_calib": {
| "DegammaTuningPara": {
| "degamma_en": 0,
| "X_axis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_R": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_G": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_B": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "agic_calib_v21": {
| "GicTuningPara": {
| "enable": 0,
| "gr_ration": 0,
| "GicData": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 13,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 13,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 13,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 13,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 13,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 13,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 13,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 13,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 13,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 13,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 13,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 13,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 13,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 13,
| "noiseCurve_0": [0.464656, 0.605802, 0.784957, 1.03606, 1.21942, 1.70435, 2.25431, 2.72747, 2.99133, 2.99133, 2.99133, 2.99133, 2.99133],
| "noiseCurve_0_len": 13,
| "noiseCurve_1": [0.111325, 1.27401, 3.3725, 6.25228, 11.4005, 15.6651, 28.1168, 61.3566, 128.413, 128.413, 128.413, 128.413, 128.413],
| "noiseCurve_1_len": 13,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 13,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 13,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 13,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 13
| }
| }
| },
| "adpcc_calib": {
| "DpccTuningPara": {
| "Enable": 1,
| "Fast_Mode": {
| "Fast_mode_en": 0,
| "Single_enable": 0,
| "Double_enable": 0,
| "Triple_enable": 0,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Triple_level_len": 13
| }
| },
| "Expert_Mode": {
| "stage1_Enable": 1,
| "grayscale_mode": 0,
| "dpcc_out_sel": 1,
| "stage1_g_3x3": 0,
| "stage1_rb_3x3": 0,
| "stage1_inc_rb_center": 1,
| "stage1_inc_g_center": 1,
| "rk_out_sel": 1,
| "SetEnable": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "fix_set": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_thr": [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
| "rb_line_mad_fac": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_mad_fac": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "cpsl": {
| "param": {
| "enable": 1,
| "mode": "RK_AIQ_OP_MODE_AUTO",
| "force_gray": 1,
| "light_src": "LED",
| "auto_adjust_sens": 50,
| "auto_on2off_th": 3000,
| "auto_off2on_th": 100,
| "auto_sw_interval": 0,
| "manual_on": 0,
| "manual_strength": 100
| }
| },
| "debayer": {
| "param": {
| "debayer_en": 1,
| "debayer_filter1": [2, -6, 0, 6, -2],
| "debayer_filter2": [2, -4, 4, -4, 2],
| "debayer_gain_offset": 4,
| "debayer_offset": 1,
| "debayer_clip_en": 1,
| "debayer_filter_g_en": 1,
| "debayer_filter_c_en": 1,
| "debayer_thed0": 3,
| "debayer_thed1": 6,
| "debayer_dist_scale": 8,
| "debayer_cnr_strength": 5,
| "debayer_shift_num": 2,
| "array": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "sharp_strength": [4, 4, 4, 4, 4, 4, 4, 4, 4],
| "debayer_hf_offset": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| }
| },
| "cproc": {
| "param": {
| "enable": 1,
| "brightness": 128,
| "contrast": 128,
| "saturation": 128,
| "hue": 128
| }
| },
| "ie": {
| "param": {
| "enable": 0,
| "mode": 0
| }
| },
| "lsc_v2": {
| "common": {
| "enable": 1,
| "resolutionAll": [{
| "name": "8192x6144",
| "lsc_sect_size_x": [512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512],
| "lsc_sect_size_y": [384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384]
| }, {
| "name": "4096x3072",
| "lsc_sect_size_x": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
| "lsc_sect_size_y": [192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192]
| }],
| "resolutionAll_len": 2
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [0.948431, 2.63725],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.38738, 2.31208],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.43431, 1.80408],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.64596, 1.60094],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.73163, 1.47979],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.760298, 3.03102],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.32553, 2.28525],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_1"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [70, 60, 40, 40],
| "vig_len": 4
| }],
| "illAll_len": 7
| },
| "tbl": {
| "tableAll": [{
| "name": "8192x6144_D65_100",
| "resolution": "8192x6144",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8020, 5417, 4398, 3791, 3380, 3110, 2862, 2728, 2651, 2744, 2827, 3029, 3285, 3701, 4277, 5177, 6467, 5895, 4707, 3951, 3429, 3029, 2744, 2495, 2369, 2287, 2345, 2469, 2681, 2971, 3308, 3853, 4570, 5895, 5294, 4238, 3560, 3089, 2728, 2418, 2181, 2020, 1978, 2012, 2141, 2357, 2681, 3029, 3480, 4090, 5010, 4854, 3951, 3355, 2862, 2443, 2131, 1905, 1742, 1697, 1742, 1867, 2093, 2393, 2793, 3239, 3760, 4615, 4525, 3643, 3130, 2621, 2233, 1905, 1667, 1531, 1468, 1511, 1644, 1852, 2160, 2549, 3009, 3533, 4199, 4316, 3454, 2897, 2456, 2047, 1722, 1496, 1349, 1293, 1319, 1450, 1679, 1969, 2369, 2827, 3331, 3918, 4019, 3308, 2793, 2322, 1897, 1582, 1349, 1213, 1161, 1188, 1326, 1536, 1823, 2222, 2697, 3217, 3822, 3985, 3239, 2697, 2222, 1802, 1487, 1269, 1120, 1064, 1099, 1222, 1441, 1735, 2121, 2636, 3130, 3760, 3885, 3195, 2666, 2170, 1768, 1450, 1222, 1086, 1024, 1061, 1191, 1406, 1679, 2083, 2578, 3110, 3671, 3951, 3195, 2666, 2201, 1782, 1473, 1242, 1096, 1045, 1086, 1200, 1423, 1704, 2112, 2606, 3110, 3760, 3951, 3285, 2728, 2265, 1859, 1531, 1301, 1161, 1112, 1147, 1272, 1491, 1775, 2191, 2681, 3173, 3791, 4162, 3355, 2880, 2369, 1978, 1661, 1428, 1279, 1229, 1269, 1389, 1610, 1905, 2299, 2810, 3285, 3951, 4356, 3560, 3009, 2549, 2170, 1823, 1593, 1441, 1402, 1432, 1556, 1782, 2083, 2482, 2952, 3454, 4199, 4707, 3730, 3195, 2760, 2357, 2038, 1802, 1649, 1604, 1638, 1775, 1978, 2310, 2666, 3151, 3671, 4439, 5235, 4019, 3429, 2971, 2636, 2287, 2065, 1897, 1852, 1890, 2029, 2254, 2578, 2934, 3380, 3918, 4905, 5822, 4482, 3701, 3261, 2880, 2592, 2357, 2222, 2170, 2212, 2357, 2564, 2862, 3173, 3615, 4356, 5417, 6467, 5235, 4126, 3615, 3195, 2952, 2728, 2606, 2578, 2592, 2712, 2934, 3217, 3587, 4199, 5010, 6467]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7394, 5196, 4179, 3560, 3178, 2924, 2708, 2530, 2505, 2563, 2643, 2838, 3126, 3433, 3985, 4837, 5962, 5533, 4471, 3697, 3231, 2870, 2581, 2381, 2249, 2191, 2229, 2345, 2546, 2817, 3152, 3577, 4272, 5416, 5127, 4047, 3418, 2935, 2581, 2302, 2084, 1947, 1889, 1913, 2045, 2255, 2530, 2870, 3301, 3826, 4837, 4577, 3679, 3152, 2737, 2345, 2045, 1818, 1686, 1640, 1668, 1801, 2008, 2289, 2625, 3040, 3544, 4272, 4272, 3464, 2958, 2521, 2136, 1835, 1622, 1482, 1435, 1468, 1586, 1788, 2078, 2418, 2859, 3329, 3944, 3985, 3286, 2786, 2352, 1962, 1672, 1448, 1310, 1263, 1299, 1416, 1612, 1903, 2269, 2698, 3191, 3788, 3826, 3178, 2670, 2235, 1831, 1541, 1333, 1194, 1141, 1178, 1295, 1496, 1768, 2148, 2581, 3052, 3544, 3715, 3113, 2598, 2142, 1752, 1456, 1248, 1110, 1062, 1097, 1215, 1419, 1690, 2056, 2513, 2992, 3528, 3679, 3052, 2555, 2095, 1720, 1421, 1207, 1080, 1024, 1062, 1178, 1378, 1654, 2034, 2465, 2946, 3449, 3715, 3076, 2572, 2107, 1744, 1440, 1228, 1091, 1045, 1079, 1192, 1391, 1679, 2029, 2481, 2981, 3480, 3788, 3126, 2625, 2197, 1793, 1502, 1292, 1153, 1105, 1133, 1257, 1451, 1736, 2113, 2538, 3028, 3594, 3904, 3259, 2746, 2289, 1913, 1616, 1396, 1261, 1213, 1242, 1368, 1563, 1844, 2216, 2661, 3139, 3679, 4091, 3403, 2891, 2449, 2078, 1772, 1554, 1416, 1364, 1398, 1520, 1717, 2013, 2374, 2796, 3286, 3924, 4497, 3577, 3064, 2643, 2269, 1977, 1752, 1612, 1563, 1592, 1713, 1923, 2210, 2572, 2992, 3480, 4202, 4898, 3845, 3272, 2891, 2521, 2235, 1992, 1853, 1805, 1831, 1957, 2172, 2449, 2807, 3204, 3751, 4524, 5533, 4272, 3577, 3126, 2776, 2513, 2282, 2154, 2090, 2124, 2235, 2449, 2727, 3052, 3528, 4134, 5161, 6008, 4867, 3944, 3433, 3126, 2827, 2634, 2489, 2434, 2465, 2572, 2796, 3028, 3433, 3944, 4718, 5739]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7690, 5127, 4202, 3610, 3204, 2891, 2717, 2589, 2521, 2546, 2679, 2859, 3126, 3464, 4005, 4806, 5915, 5533, 4471, 3733, 3245, 2870, 2598, 2388, 2249, 2191, 2229, 2359, 2546, 2827, 3126, 3560, 4179, 5341, 4962, 4005, 3388, 2946, 2589, 2309, 2090, 1932, 1889, 1923, 2034, 2269, 2513, 2848, 3259, 3788, 4633, 4524, 3679, 3126, 2727, 2337, 2045, 1831, 1679, 1643, 1672, 1793, 2003, 2269, 2598, 3040, 3495, 4157, 4202, 3433, 2935, 2505, 2130, 1835, 1619, 1479, 1427, 1462, 1582, 1793, 2062, 2396, 2807, 3272, 3845, 3884, 3272, 2776, 2330, 1952, 1668, 1448, 1310, 1259, 1295, 1411, 1609, 1889, 2249, 2670, 3113, 3662, 3770, 3152, 2643, 2216, 1822, 1535, 1328, 1190, 1136, 1169, 1295, 1490, 1740, 2118, 2546, 3016, 3495, 3697, 3076, 2563, 2124, 1736, 1454, 1242, 1111, 1061, 1091, 1211, 1408, 1668, 2034, 2481, 2946, 3433, 3627, 3040, 2546, 2090, 1701, 1414, 1207, 1076, 1024, 1058, 1174, 1368, 1640, 1992, 2441, 2902, 3403, 3662, 3052, 2555, 2084, 1724, 1429, 1227, 1089, 1043, 1074, 1189, 1386, 1647, 2018, 2457, 2935, 3418, 3697, 3089, 2625, 2166, 1772, 1487, 1290, 1150, 1102, 1134, 1246, 1446, 1717, 2084, 2505, 2992, 3480, 3845, 3204, 2727, 2275, 1899, 1605, 1401, 1257, 1211, 1242, 1356, 1563, 1835, 2172, 2625, 3089, 3610, 4112, 3344, 2870, 2441, 2062, 1772, 1550, 1414, 1359, 1401, 1511, 1713, 1987, 2352, 2776, 3245, 3826, 4321, 3544, 3052, 2634, 2262, 1967, 1752, 1609, 1560, 1592, 1720, 1923, 2210, 2538, 2958, 3433, 4069, 4837, 3826, 3286, 2880, 2513, 2229, 2008, 1849, 1809, 1840, 1957, 2172, 2434, 2776, 3178, 3697, 4497, 5572, 4249, 3560, 3126, 2786, 2513, 2289, 2148, 2090, 2118, 2235, 2457, 2737, 3052, 3464, 4112, 5059, 6152, 4898, 3985, 3433, 3089, 2807, 2643, 2521, 2465, 2457, 2589, 2776, 3028, 3403, 3884, 4633, 5655]
| },
| "lsc_samples_blue": {
| "uCoeff": [7495, 4619, 3814, 3248, 2932, 2686, 2505, 2393, 2335, 2369, 2466, 2686, 2932, 3248, 3726, 4619, 6000, 5003, 3972, 3338, 2950, 2628, 2381, 2186, 2082, 2030, 2056, 2167, 2358, 2599, 2932, 3293, 3907, 5109, 4532, 3560, 3062, 2717, 2381, 2128, 1940, 1802, 1749, 1802, 1909, 2110, 2358, 2657, 3024, 3509, 4328, 4178, 3270, 2862, 2479, 2176, 1909, 1712, 1588, 1547, 1583, 1676, 1886, 2128, 2441, 2812, 3205, 3907, 3784, 3062, 2657, 2312, 1988, 1718, 1532, 1424, 1363, 1403, 1504, 1676, 1940, 2269, 2585, 3024, 3614, 3534, 2932, 2518, 2157, 1815, 1572, 1383, 1270, 1224, 1256, 1359, 1537, 1782, 2100, 2454, 2879, 3458, 3409, 2845, 2405, 2021, 1712, 1454, 1280, 1168, 1127, 1149, 1247, 1419, 1665, 1971, 2346, 2764, 3293, 3361, 2748, 2346, 1956, 1625, 1379, 1209, 1099, 1051, 1086, 1177, 1348, 1578, 1886, 2269, 2686, 3226, 3315, 2702, 2290, 1917, 1593, 1352, 1177, 1055, 1024, 1053, 1146, 1315, 1547, 1850, 2248, 2686, 3184, 3248, 2732, 2301, 1932, 1598, 1367, 1197, 1077, 1039, 1067, 1165, 1333, 1557, 1872, 2248, 2686, 3205, 3338, 2764, 2358, 1980, 1659, 1415, 1240, 1124, 1081, 1114, 1212, 1375, 1609, 1932, 2312, 2764, 3205, 3433, 2862, 2441, 2082, 1756, 1504, 1333, 1212, 1171, 1194, 1297, 1458, 1706, 2030, 2405, 2828, 3409, 3587, 2968, 2572, 2206, 1894, 1637, 1449, 1329, 1283, 1322, 1424, 1609, 1843, 2186, 2558, 2986, 3614, 3907, 3184, 2717, 2381, 2073, 1809, 1609, 1490, 1445, 1476, 1578, 1762, 2021, 2346, 2702, 3142, 3907, 4328, 3409, 2879, 2585, 2269, 2013, 1809, 1700, 1653, 1671, 1795, 1971, 2237, 2572, 2932, 3409, 4290, 4901, 3726, 3142, 2779, 2479, 2237, 2056, 1917, 1886, 1924, 2021, 2217, 2479, 2812, 3163, 3755, 4803, 5396, 4368, 3534, 3122, 2796, 2572, 2369, 2269, 2248, 2258, 2346, 2572, 2812, 3163, 3560, 4328, 5396]
| }
| }, {
| "name": "8192x6144_D65_1",
| "resolution": "8192x6144",
| "illumination": "D65",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1094, 1745, 1987, 2098, 2140, 2152, 2107, 2078, 2047, 2088, 2087, 2108, 2095, 2063, 1953, 1706, 1078, 1518, 1919, 2090, 2150, 2136, 2096, 2013, 1969, 1924, 1952, 1996, 2056, 2104, 2093, 2054, 1886, 1518, 1755, 2024, 2122, 2136, 2091, 1994, 1887, 1798, 1775, 1791, 1857, 1951, 2061, 2103, 2088, 1978, 1707, 1901, 2104, 2171, 2124, 2000, 1863, 1737, 1627, 1597, 1627, 1706, 1834, 1965, 2083, 2114, 2033, 1847, 1991, 2115, 2163, 2059, 1917, 1738, 1578, 1477, 1425, 1459, 1558, 1695, 1863, 2013, 2097, 2069, 1901, 2054, 2127, 2108, 2009, 1820, 1618, 1450, 1328, 1278, 1300, 1409, 1581, 1760, 1949, 2068, 2071, 1929, 2040, 2122, 2097, 1953, 1729, 1515, 1327, 1206, 1158, 1182, 1306, 1475, 1669, 1882, 2039, 2078, 1973, 2075, 2124, 2066, 1902, 1666, 1440, 1257, 1118, 1064, 1098, 1212, 1398, 1610, 1828, 2028, 2070, 1995, 2054, 2114, 2056, 1870, 1642, 1409, 1213, 1085, 1024, 1061, 1184, 1369, 1568, 1806, 2001, 2072, 1977, 2063, 2103, 2047, 1887, 1649, 1427, 1231, 1095, 1045, 1085, 1191, 1382, 1585, 1821, 2010, 2060, 1995, 2017, 2111, 2057, 1912, 1698, 1470, 1282, 1156, 1110, 1143, 1255, 1435, 1630, 1859, 2029, 2057, 1962, 2006, 2082, 2098, 1949, 1767, 1566, 1389, 1262, 1218, 1253, 1354, 1523, 1710, 1901, 2058, 2050, 1940, 1944, 2080, 2097, 2013, 1870, 1671, 1514, 1397, 1366, 1388, 1483, 1638, 1806, 1969, 2066, 2036, 1901, 1868, 2022, 2092, 2063, 1941, 1793, 1654, 1549, 1517, 1540, 1632, 1747, 1908, 2007, 2070, 2001, 1806, 1745, 1956, 2066, 2072, 2033, 1903, 1801, 1702, 1676, 1697, 1774, 1880, 1997, 2052, 2044, 1924, 1689, 1510, 1865, 1999, 2071, 2053, 2001, 1921, 1866, 1841, 1859, 1921, 1983, 2043, 2030, 1968, 1834, 1469, 1078, 1715, 1910, 2030, 2052, 2066, 2028, 2003, 2001, 1994, 2019, 2057, 2062, 2019, 1931, 1678, 1078]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1088, 1709, 1925, 2009, 2044, 2051, 2016, 1956, 1955, 1976, 1978, 2005, 2019, 1959, 1869, 1650, 1073, 1481, 1862, 1998, 2057, 2048, 1994, 1937, 1885, 1856, 1871, 1912, 1972, 2018, 2020, 1954, 1814, 1469, 1727, 1965, 2061, 2053, 1999, 1913, 1815, 1741, 1705, 1714, 1786, 1880, 1967, 2018, 2010, 1896, 1677, 1838, 2004, 2071, 2049, 1932, 1798, 1667, 1580, 1548, 1565, 1653, 1770, 1894, 1982, 2016, 1954, 1768, 1921, 2040, 2070, 1995, 1845, 1681, 1539, 1433, 1395, 1421, 1508, 1643, 1802, 1928, 2016, 1984, 1831, 1950, 2051, 2044, 1937, 1754, 1575, 1407, 1291, 1250, 1281, 1378, 1524, 1708, 1880, 1993, 2007, 1889, 1974, 2059, 2022, 1891, 1676, 1479, 1312, 1188, 1138, 1173, 1277, 1439, 1625, 1829, 1968, 1999, 1879, 1979, 2062, 2005, 1843, 1625, 1412, 1237, 1109, 1062, 1096, 1206, 1379, 1573, 1780, 1952, 2002, 1913, 1980, 2042, 1986, 1815, 1602, 1383, 1199, 1079, 1024, 1062, 1171, 1344, 1547, 1770, 1930, 1989, 1897, 1979, 2043, 1988, 1818, 1618, 1398, 1218, 1090, 1045, 1078, 1184, 1354, 1564, 1760, 1932, 1996, 1896, 1961, 2034, 1995, 1864, 1645, 1445, 1274, 1148, 1103, 1129, 1241, 1400, 1599, 1803, 1942, 1987, 1896, 1925, 2038, 2021, 1894, 1716, 1528, 1360, 1246, 1203, 1228, 1335, 1483, 1662, 1844, 1972, 1984, 1855, 1871, 2015, 2033, 1948, 1802, 1630, 1481, 1374, 1331, 1358, 1451, 1585, 1754, 1899, 1982, 1966, 1825, 1820, 1966, 2028, 1993, 1880, 1747, 1613, 1518, 1483, 1501, 1582, 1706, 1839, 1950, 1992, 1930, 1752, 1687, 1902, 1998, 2029, 1961, 1866, 1746, 1668, 1639, 1651, 1720, 1823, 1916, 1984, 1968, 1872, 1623, 1481, 1814, 1954, 2008, 1996, 1952, 1870, 1818, 1784, 1797, 1838, 1912, 1969, 1973, 1936, 1780, 1443, 1074, 1655, 1858, 1959, 2019, 1999, 1973, 1930, 1910, 1916, 1936, 1982, 1973, 1959, 1858, 1630, 1071]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1091, 1698, 1931, 2028, 2056, 2033, 2022, 1992, 1965, 1966, 1999, 2016, 2019, 1971, 1875, 1645, 1073, 1481, 1862, 2011, 2064, 2048, 2005, 1941, 1885, 1856, 1871, 1922, 1972, 2024, 2008, 1948, 1791, 1461, 1698, 1951, 2048, 2059, 2004, 1918, 1819, 1729, 1705, 1722, 1778, 1890, 1956, 2006, 1992, 1884, 1642, 1826, 2004, 2058, 2043, 1927, 1798, 1677, 1574, 1551, 1569, 1646, 1766, 1880, 1966, 2016, 1936, 1742, 1902, 2027, 2057, 1984, 1841, 1681, 1537, 1430, 1388, 1415, 1505, 1647, 1791, 1914, 1988, 1960, 1803, 1919, 2044, 2038, 1922, 1747, 1572, 1407, 1291, 1246, 1277, 1374, 1522, 1697, 1866, 1977, 1972, 1849, 1955, 2047, 2006, 1877, 1668, 1474, 1308, 1184, 1133, 1164, 1277, 1434, 1602, 1807, 1947, 1981, 1862, 1973, 2043, 1983, 1830, 1611, 1410, 1231, 1110, 1061, 1090, 1202, 1369, 1555, 1764, 1932, 1979, 1879, 1962, 2036, 1981, 1811, 1586, 1377, 1199, 1075, 1024, 1058, 1168, 1335, 1536, 1739, 1915, 1967, 1881, 1960, 2031, 1978, 1801, 1601, 1388, 1217, 1088, 1043, 1073, 1181, 1349, 1538, 1752, 1917, 1973, 1874, 1930, 2017, 1995, 1841, 1628, 1432, 1272, 1146, 1100, 1130, 1231, 1395, 1584, 1783, 1922, 1970, 1857, 1907, 2013, 2010, 1884, 1705, 1518, 1365, 1242, 1201, 1228, 1324, 1483, 1655, 1813, 1951, 1961, 1833, 1877, 1990, 2022, 1943, 1791, 1630, 1477, 1372, 1327, 1361, 1444, 1582, 1735, 1885, 1971, 1949, 1798, 1779, 1954, 2022, 1988, 1875, 1739, 1613, 1516, 1480, 1501, 1587, 1706, 1839, 1930, 1976, 1913, 1722, 1677, 1896, 2004, 2023, 1956, 1862, 1758, 1665, 1642, 1658, 1720, 1823, 1907, 1967, 1957, 1856, 1619, 1485, 1808, 1948, 2008, 2001, 1952, 1875, 1814, 1784, 1793, 1838, 1917, 1974, 1973, 1913, 1775, 1433, 1075, 1660, 1869, 1959, 2002, 1988, 1978, 1950, 1930, 1911, 1946, 1971, 1973, 1948, 1841, 1616, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1089, 1614, 1821, 1888, 1927, 1923, 1897, 1871, 1848, 1856, 1874, 1923, 1927, 1888, 1795, 1614, 1074, 1427, 1741, 1867, 1926, 1914, 1869, 1806, 1767, 1741, 1749, 1793, 1855, 1898, 1917, 1851, 1725, 1438, 1625, 1813, 1907, 1935, 1874, 1792, 1707, 1628, 1594, 1628, 1684, 1780, 1859, 1903, 1890, 1797, 1590, 1747, 1853, 1928, 1895, 1816, 1695, 1581, 1498, 1469, 1494, 1552, 1678, 1783, 1872, 1904, 1829, 1685, 1786, 1873, 1907, 1859, 1736, 1586, 1462, 1381, 1330, 1363, 1438, 1552, 1700, 1831, 1868, 1857, 1739, 1809, 1890, 1889, 1803, 1640, 1490, 1348, 1254, 1213, 1241, 1327, 1460, 1614, 1764, 1852, 1866, 1786, 1833, 1899, 1861, 1738, 1580, 1402, 1263, 1163, 1125, 1145, 1232, 1372, 1542, 1702, 1826, 1860, 1793, 1853, 1880, 1848, 1707, 1520, 1343, 1200, 1098, 1051, 1085, 1170, 1315, 1481, 1656, 1800, 1850, 1805, 1849, 1867, 1820, 1683, 1497, 1320, 1170, 1055, 1024, 1053, 1141, 1287, 1458, 1634, 1793, 1859, 1802, 1813, 1873, 1820, 1689, 1497, 1332, 1189, 1076, 1039, 1066, 1158, 1301, 1464, 1645, 1787, 1850, 1798, 1809, 1860, 1833, 1708, 1537, 1368, 1226, 1121, 1080, 1111, 1199, 1333, 1496, 1674, 1805, 1860, 1764, 1778, 1858, 1844, 1751, 1594, 1432, 1303, 1200, 1163, 1183, 1271, 1393, 1555, 1716, 1824, 1843, 1770, 1732, 1834, 1861, 1790, 1666, 1521, 1390, 1296, 1258, 1290, 1369, 1498, 1629, 1777, 1853, 1841, 1739, 1685, 1821, 1857, 1836, 1745, 1619, 1497, 1416, 1382, 1404, 1472, 1584, 1709, 1815, 1850, 1805, 1685, 1590, 1766, 1827, 1864, 1804, 1712, 1610, 1549, 1519, 1526, 1599, 1683, 1783, 1857, 1850, 1766, 1583, 1417, 1681, 1796, 1846, 1831, 1780, 1718, 1651, 1638, 1656, 1695, 1767, 1831, 1861, 1803, 1688, 1407, 1068, 1573, 1741, 1839, 1863, 1861, 1817, 1794, 1793, 1788, 1803, 1861, 1871, 1855, 1748, 1566, 1068]
| }
| }, {
| "name": "8192x6144_A_100",
| "resolution": "8192x6144",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 6116, 4895, 4221, 3729, 3449, 3167, 3036, 2987, 3024, 3180, 3370, 3691, 4103, 4863, 5826, 7337, 6611, 5244, 4346, 3806, 3385, 3011, 2762, 2569, 2517, 2587, 2722, 2987, 3309, 3710, 4197, 5029, 6552, 6017, 4737, 3970, 3482, 3011, 2653, 2371, 2194, 2130, 2168, 2340, 2587, 2939, 3339, 3886, 4561, 5691, 5398, 4346, 3710, 3167, 2711, 2311, 2047, 1866, 1810, 1847, 2008, 2261, 2624, 3100, 3566, 4173, 5244, 4995, 4058, 3433, 2916, 2441, 2047, 1775, 1598, 1535, 1588, 1730, 1992, 2348, 2805, 3354, 3928, 4768, 4707, 3826, 3251, 2682, 2207, 1819, 1554, 1390, 1325, 1369, 1522, 1771, 2136, 2615, 3126, 3748, 4561, 4451, 3729, 3087, 2534, 2036, 1667, 1400, 1240, 1169, 1215, 1361, 1616, 1965, 2450, 3011, 3583, 4346, 4397, 3619, 2987, 2409, 1919, 1561, 1301, 1135, 1072, 1114, 1268, 1513, 1851, 2340, 2916, 3532, 4295, 4371, 3583, 2951, 2386, 1890, 1509, 1252, 1089, 1024, 1075, 1219, 1456, 1802, 2289, 2859, 3498, 4221, 4397, 3583, 2987, 2402, 1899, 1538, 1272, 1111, 1055, 1091, 1240, 1491, 1828, 2311, 2904, 3532, 4221, 4505, 3673, 3049, 2474, 1981, 1616, 1351, 1197, 1128, 1171, 1315, 1564, 1914, 2394, 2975, 3619, 4320, 4618, 3786, 3180, 2615, 2136, 1767, 1491, 1322, 1263, 1306, 1456, 1706, 2065, 2534, 3126, 3729, 4424, 4863, 4013, 3370, 2815, 2348, 1970, 1682, 1516, 1453, 1503, 1644, 1914, 2268, 2752, 3309, 3866, 4737, 5171, 4173, 3583, 3074, 2587, 2220, 1929, 1759, 1713, 1750, 1899, 2162, 2525, 3011, 3515, 4126, 5029, 5826, 4533, 3826, 3354, 2893, 2534, 2254, 2070, 2014, 2053, 2227, 2474, 2837, 3251, 3748, 4397, 5561, 6672, 4961, 4126, 3637, 3208, 2893, 2624, 2450, 2394, 2425, 2578, 2815, 3194, 3583, 4036, 4928, 6273, 7055, 5826, 4648, 4036, 3655, 3280, 3061, 2927, 2859, 2893, 3036, 3251, 3601, 3992, 4648, 5691, 7055]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7748, 5166, 4358, 3690, 3305, 3045, 2812, 2682, 2631, 2652, 2756, 2993, 3244, 3595, 4126, 5090, 6340, 5716, 4588, 3831, 3337, 2967, 2672, 2447, 2325, 2264, 2301, 2413, 2631, 2918, 3259, 3729, 4386, 5669, 5204, 4151, 3504, 3045, 2652, 2356, 2146, 1987, 1926, 1981, 2113, 2317, 2602, 2967, 3418, 3940, 4981, 4744, 3811, 3274, 2801, 2413, 2100, 1875, 1722, 1680, 1722, 1830, 2063, 2356, 2724, 3155, 3632, 4470, 4358, 3540, 3032, 2573, 2179, 1880, 1649, 1506, 1453, 1487, 1626, 1830, 2133, 2500, 2918, 3435, 4078, 4126, 3385, 2858, 2405, 2010, 1705, 1474, 1326, 1277, 1311, 1444, 1660, 1953, 2332, 2767, 3259, 3853, 3985, 3274, 2735, 2294, 1880, 1571, 1344, 1198, 1145, 1188, 1316, 1526, 1816, 2193, 2652, 3155, 3670, 3853, 3155, 2662, 2193, 1788, 1477, 1261, 1114, 1063, 1105, 1217, 1432, 1726, 2113, 2564, 3072, 3651, 3770, 3155, 2631, 2152, 1748, 1444, 1223, 1081, 1024, 1061, 1190, 1409, 1697, 2082, 2545, 3032, 3632, 3770, 3141, 2642, 2166, 1770, 1465, 1243, 1098, 1049, 1086, 1204, 1412, 1709, 2094, 2564, 3072, 3613, 3874, 3214, 2682, 2242, 1835, 1533, 1301, 1160, 1110, 1149, 1273, 1484, 1788, 2159, 2622, 3141, 3690, 4008, 3337, 2812, 2364, 1953, 1652, 1423, 1284, 1226, 1266, 1386, 1607, 1895, 2279, 2735, 3244, 3811, 4226, 3504, 2955, 2517, 2133, 1821, 1589, 1447, 1395, 1426, 1550, 1761, 2075, 2438, 2906, 3385, 3985, 4588, 3709, 3155, 2713, 2332, 2027, 1793, 1652, 1603, 1637, 1765, 1981, 2279, 2682, 3099, 3595, 4331, 5053, 3962, 3369, 2980, 2592, 2301, 2051, 1916, 1860, 1890, 2027, 2249, 2536, 2906, 3353, 3874, 4776, 5811, 4442, 3690, 3244, 2894, 2583, 2372, 2221, 2172, 2207, 2325, 2554, 2812, 3170, 3613, 4252, 5364, 6226, 5166, 4151, 3613, 3214, 2993, 2735, 2602, 2573, 2631, 2703, 2930, 3199, 3576, 4151, 4877, 5910]
| },
| "lsc_samples_greenB": {
| "uCoeff": [8039, 5259, 4371, 3720, 3330, 3002, 2786, 2639, 2581, 2629, 2732, 2926, 3238, 3605, 4138, 5032, 6135, 5828, 4663, 3886, 3363, 2976, 2669, 2454, 2324, 2249, 2286, 2420, 2639, 2890, 3238, 3701, 4427, 5595, 5219, 4188, 3515, 3054, 2669, 2371, 2152, 1993, 1932, 1970, 2100, 2316, 2600, 2951, 3395, 3951, 4857, 4758, 3822, 3268, 2820, 2412, 2107, 1870, 1723, 1677, 1706, 1836, 2057, 2355, 2721, 3150, 3643, 4371, 4371, 3550, 3041, 2581, 2192, 1880, 1646, 1498, 1448, 1488, 1611, 1826, 2119, 2498, 2926, 3395, 4066, 4188, 3395, 2890, 2420, 2004, 1706, 1472, 1325, 1274, 1315, 1439, 1650, 1948, 2316, 2775, 3268, 3822, 4020, 3283, 2764, 2301, 1885, 1575, 1345, 1206, 1143, 1181, 1307, 1520, 1798, 2192, 2649, 3136, 3720, 3907, 3179, 2680, 2199, 1793, 1485, 1267, 1117, 1066, 1100, 1218, 1430, 1731, 2113, 2562, 3067, 3662, 3801, 3179, 2649, 2145, 1753, 1445, 1223, 1084, 1024, 1065, 1187, 1396, 1689, 2075, 2534, 3028, 3550, 3822, 3179, 2669, 2179, 1775, 1463, 1242, 1100, 1047, 1081, 1206, 1410, 1706, 2081, 2553, 3067, 3605, 3886, 3238, 2690, 2242, 1845, 1530, 1300, 1162, 1112, 1150, 1272, 1479, 1771, 2152, 2619, 3108, 3681, 4090, 3346, 2832, 2363, 1970, 1650, 1424, 1274, 1227, 1262, 1385, 1590, 1890, 2286, 2732, 3223, 3801, 4291, 3515, 2964, 2525, 2139, 1807, 1586, 1436, 1396, 1424, 1547, 1757, 2075, 2445, 2890, 3395, 3996, 4542, 3720, 3179, 2732, 2331, 2033, 1798, 1650, 1593, 1630, 1753, 1981, 2271, 2639, 3095, 3587, 4291, 5219, 3974, 3412, 2976, 2590, 2278, 2045, 1906, 1860, 1890, 2015, 2235, 2516, 2890, 3299, 3822, 4726, 5686, 4427, 3720, 3238, 2878, 2581, 2347, 2206, 2159, 2192, 2308, 2534, 2798, 3165, 3605, 4264, 5299, 6476, 5105, 4188, 3624, 3194, 2939, 2690, 2581, 2516, 2534, 2690, 2866, 3194, 3515, 4066, 4857, 6029]
| },
| "lsc_samples_blue": {
| "uCoeff": [7750, 4986, 4008, 3528, 3114, 2975, 2675, 2547, 2499, 2571, 2622, 2847, 3114, 3482, 4069, 4720, 6000, 5502, 4265, 3624, 3151, 2817, 2522, 2344, 2172, 2154, 2172, 2324, 2522, 2787, 3078, 3482, 4132, 5391, 4893, 3834, 3350, 2878, 2547, 2264, 2038, 1893, 1853, 1880, 2023, 2264, 2475, 2817, 3189, 3674, 4637, 4335, 3528, 3043, 2597, 2264, 2023, 1803, 1657, 1626, 1657, 1779, 1963, 2245, 2597, 2942, 3393, 4197, 4008, 3268, 2817, 2430, 2103, 1803, 1616, 1465, 1418, 1465, 1578, 1767, 2054, 2365, 2702, 3151, 3779, 3834, 3114, 2675, 2245, 1906, 1636, 1433, 1313, 1257, 1300, 1403, 1607, 1853, 2226, 2571, 3043, 3624, 3674, 3008, 2547, 2120, 1791, 1524, 1306, 1189, 1153, 1179, 1287, 1473, 1721, 2086, 2475, 2909, 3482, 3528, 2942, 2475, 2054, 1688, 1441, 1239, 1114, 1069, 1096, 1200, 1388, 1646, 2007, 2408, 2817, 3393, 3482, 2878, 2430, 2023, 1667, 1403, 1200, 1078, 1024, 1065, 1168, 1353, 1597, 1948, 2344, 2817, 3350, 3482, 2909, 2430, 2007, 1678, 1410, 1216, 1087, 1044, 1069, 1184, 1367, 1616, 1963, 2365, 2817, 3350, 3576, 2942, 2499, 2070, 1744, 1473, 1269, 1143, 1096, 1128, 1233, 1425, 1667, 2023, 2430, 2909, 3350, 3726, 3043, 2597, 2190, 1853, 1578, 1374, 1245, 1211, 1233, 1339, 1532, 1791, 2137, 2547, 2975, 3576, 3890, 3189, 2730, 2365, 2007, 1721, 1515, 1374, 1326, 1367, 1489, 1699, 1934, 2284, 2702, 3114, 3726, 4197, 3393, 2909, 2547, 2190, 1906, 1678, 1550, 1515, 1532, 1667, 1866, 2137, 2475, 2878, 3350, 4069, 4720, 3624, 3114, 2730, 2408, 2137, 1906, 1779, 1721, 1767, 1866, 2086, 2386, 2702, 3043, 3576, 4480, 5282, 4008, 3350, 2975, 2622, 2365, 2172, 2038, 1992, 2007, 2137, 2365, 2597, 2942, 3308, 3947, 4986, 6000, 4720, 3834, 3350, 3008, 2730, 2499, 2386, 2386, 2408, 2522, 2675, 3008, 3350, 3779, 4637, 5867]
| }
| }, {
| "name": "8192x6144_A_1",
| "resolution": "8192x6144",
| "illumination": "A",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1103, 1860, 2129, 2265, 2305, 2335, 2287, 2269, 2258, 2261, 2295, 2292, 2287, 2220, 2120, 1812, 1087, 1590, 2050, 2234, 2326, 2333, 2262, 2193, 2109, 2088, 2122, 2166, 2247, 2291, 2281, 2180, 1998, 1584, 1879, 2179, 2300, 2347, 2268, 2157, 2029, 1933, 1894, 1912, 2006, 2111, 2223, 2270, 2264, 2124, 1823, 2026, 2250, 2346, 2307, 2184, 2000, 1852, 1732, 1693, 1716, 1820, 1962, 2124, 2266, 2275, 2186, 1991, 2121, 2288, 2327, 2251, 2070, 1853, 1671, 1537, 1486, 1528, 1632, 1808, 2002, 2179, 2284, 2234, 2058, 2176, 2296, 2313, 2164, 1945, 1700, 1503, 1366, 1309, 1347, 1474, 1660, 1890, 2118, 2241, 2260, 2131, 2186, 2324, 2275, 2105, 1841, 1590, 1375, 1232, 1165, 1208, 1338, 1545, 1784, 2045, 2229, 2254, 2151, 2221, 2313, 2247, 2039, 1762, 1506, 1287, 1133, 1072, 1112, 1256, 1463, 1706, 1988, 2203, 2270, 2185, 2229, 2309, 2235, 2030, 1743, 1462, 1242, 1088, 1024, 1074, 1211, 1414, 1670, 1958, 2177, 2266, 2175, 2221, 2295, 2247, 2034, 1746, 1486, 1260, 1110, 1055, 1090, 1229, 1443, 1687, 1967, 2195, 2270, 2159, 2204, 2297, 2252, 2062, 1797, 1545, 1329, 1191, 1125, 1166, 1296, 1499, 1743, 2005, 2207, 2271, 2142, 2148, 2278, 2272, 2118, 1890, 1656, 1446, 1303, 1250, 1288, 1414, 1604, 1834, 2062, 2241, 2252, 2088, 2084, 2269, 2292, 2185, 2002, 1790, 1591, 1464, 1412, 1452, 1558, 1745, 1943, 2144, 2259, 2208, 2050, 1974, 2186, 2283, 2251, 2099, 1931, 1756, 1642, 1610, 1634, 1732, 1887, 2056, 2213, 2250, 2168, 1942, 1846, 2116, 2238, 2278, 2194, 2074, 1942, 1836, 1803, 1823, 1922, 2033, 2159, 2223, 2204, 2073, 1801, 1596, 1981, 2154, 2247, 2235, 2188, 2100, 2026, 2000, 2008, 2069, 2140, 2228, 2222, 2121, 1973, 1556, 1084, 1812, 2059, 2194, 2270, 2244, 2224, 2201, 2177, 2180, 2210, 2228, 2244, 2176, 2059, 1790, 1084]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1091, 1704, 1976, 2059, 2104, 2117, 2078, 2050, 2034, 2031, 2045, 2089, 2075, 2022, 1910, 1691, 1077, 1499, 1890, 2046, 2107, 2102, 2051, 1981, 1938, 1908, 1921, 1958, 2025, 2074, 2070, 2009, 1841, 1495, 1740, 1997, 2098, 2112, 2043, 1951, 1861, 1772, 1734, 1767, 1837, 1924, 2012, 2070, 2061, 1931, 1702, 1876, 2052, 2131, 2087, 1979, 1840, 1713, 1611, 1582, 1611, 1676, 1812, 1940, 2041, 2072, 1986, 1814, 1945, 2072, 2110, 2028, 1877, 1717, 1563, 1455, 1412, 1438, 1543, 1677, 1843, 1981, 2048, 2028, 1868, 1995, 2096, 2086, 1974, 1792, 1603, 1430, 1306, 1263, 1292, 1403, 1565, 1747, 1923, 2033, 2038, 1909, 2028, 2105, 2062, 1933, 1715, 1505, 1323, 1192, 1142, 1182, 1296, 1466, 1663, 1861, 2011, 2048, 1921, 2028, 2083, 2045, 1881, 1654, 1431, 1249, 1112, 1063, 1104, 1208, 1390, 1603, 1822, 1983, 2041, 1956, 2013, 2094, 2034, 1857, 1625, 1404, 1214, 1080, 1024, 1061, 1183, 1372, 1583, 1805, 1980, 2032, 1963, 1999, 2076, 2032, 1861, 1639, 1420, 1232, 1097, 1049, 1085, 1195, 1372, 1589, 1808, 1983, 2041, 1943, 1990, 2077, 2029, 1896, 1679, 1472, 1282, 1155, 1108, 1145, 1256, 1429, 1641, 1836, 1993, 2042, 1928, 1958, 2074, 2059, 1945, 1747, 1558, 1384, 1267, 1215, 1250, 1351, 1520, 1702, 1887, 2015, 2032, 1896, 1908, 2057, 2068, 1992, 1843, 1670, 1511, 1402, 1359, 1383, 1477, 1621, 1800, 1941, 2042, 2008, 1842, 1841, 2015, 2072, 2035, 1923, 1784, 1646, 1552, 1517, 1539, 1624, 1750, 1887, 2016, 2045, 1973, 1782, 1714, 1938, 2040, 2077, 2006, 1912, 1790, 1717, 1682, 1697, 1772, 1876, 1971, 2037, 2033, 1911, 1666, 1509, 1855, 1995, 2063, 2061, 1995, 1931, 1865, 1842, 1855, 1899, 1977, 2016, 2029, 1967, 1809, 1464, 1076, 1704, 1917, 2029, 2061, 2089, 2032, 2000, 1998, 2018, 2013, 2055, 2054, 2015, 1917, 1657, 1073]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1094, 1719, 1980, 2071, 2116, 2094, 2062, 2023, 2003, 2017, 2031, 2052, 2072, 2026, 1913, 1682, 1075, 1511, 1909, 2067, 2119, 2107, 2049, 1986, 1937, 1897, 1911, 1963, 2030, 2059, 2060, 1999, 1851, 1487, 1742, 2008, 2103, 2117, 2054, 1961, 1866, 1777, 1738, 1759, 1827, 1923, 2011, 2061, 2051, 1935, 1680, 1879, 2056, 2128, 2099, 1978, 1845, 1709, 1611, 1580, 1597, 1681, 1807, 1939, 2040, 2070, 1990, 1791, 1949, 2076, 2115, 2033, 1887, 1717, 1560, 1447, 1407, 1439, 1530, 1674, 1833, 1980, 2052, 2012, 1864, 2014, 2100, 2104, 1984, 1787, 1604, 1429, 1305, 1260, 1296, 1399, 1557, 1743, 1912, 2038, 2042, 1899, 2040, 2110, 2079, 1938, 1719, 1509, 1323, 1200, 1140, 1176, 1288, 1461, 1649, 1860, 2009, 2039, 1938, 2047, 2095, 2056, 1885, 1658, 1438, 1255, 1115, 1066, 1099, 1208, 1389, 1607, 1822, 1982, 2039, 1960, 2024, 2106, 2045, 1852, 1630, 1405, 1214, 1083, 1024, 1065, 1180, 1360, 1576, 1800, 1973, 2030, 1934, 2017, 2095, 2049, 1870, 1643, 1418, 1231, 1099, 1047, 1080, 1197, 1371, 1587, 1799, 1977, 2039, 1940, 1995, 2088, 2034, 1896, 1687, 1469, 1282, 1157, 1110, 1146, 1255, 1424, 1627, 1831, 1991, 2026, 1925, 1983, 2078, 2071, 1945, 1761, 1557, 1385, 1258, 1216, 1247, 1350, 1506, 1698, 1892, 2013, 2022, 1893, 1926, 2062, 2073, 1997, 1847, 1658, 1508, 1392, 1360, 1381, 1475, 1618, 1800, 1945, 2033, 2012, 1845, 1830, 2019, 2084, 2046, 1923, 1789, 1650, 1550, 1508, 1533, 1614, 1750, 1881, 1991, 2043, 1970, 1772, 1742, 1942, 2058, 2075, 2004, 1896, 1786, 1709, 1682, 1697, 1763, 1866, 1958, 2028, 2009, 1895, 1658, 1496, 1851, 2006, 2060, 2052, 1994, 1914, 1854, 1833, 1845, 1888, 1965, 2008, 2026, 1964, 1812, 1457, 1079, 1694, 1927, 2034, 2051, 2059, 2006, 1987, 1962, 1958, 2006, 2020, 2051, 1991, 1893, 1653, 1074]
| },
| "lsc_samples_blue": {
| "uCoeff": [1091, 1674, 1876, 1996, 2014, 2079, 1997, 1966, 1951, 1981, 1966, 2010, 2014, 1978, 1893, 1631, 1074, 1478, 1812, 1971, 2020, 2018, 1957, 1912, 1831, 1829, 1831, 1898, 1957, 2002, 1986, 1919, 1779, 1466, 1686, 1898, 2031, 2022, 1978, 1887, 1781, 1699, 1676, 1689, 1769, 1887, 1932, 1989, 1962, 1849, 1643, 1783, 1948, 2017, 1965, 1877, 1781, 1655, 1556, 1536, 1556, 1635, 1736, 1863, 1965, 1968, 1898, 1751, 1848, 1959, 1993, 1936, 1821, 1655, 1534, 1418, 1380, 1418, 1501, 1626, 1785, 1893, 1931, 1910, 1785, 1903, 1973, 1980, 1863, 1711, 1545, 1393, 1294, 1244, 1282, 1366, 1520, 1669, 1850, 1920, 1940, 1837, 1923, 1978, 1948, 1808, 1643, 1464, 1287, 1183, 1150, 1174, 1269, 1419, 1587, 1784, 1904, 1930, 1858, 1913, 1977, 1928, 1779, 1572, 1398, 1228, 1112, 1069, 1095, 1191, 1351, 1537, 1744, 1886, 1915, 1865, 1909, 1955, 1908, 1762, 1558, 1367, 1192, 1077, 1024, 1065, 1162, 1321, 1500, 1706, 1854, 1924, 1862, 1896, 1960, 1900, 1744, 1563, 1371, 1207, 1086, 1044, 1068, 1176, 1332, 1512, 1712, 1859, 1915, 1849, 1889, 1946, 1919, 1773, 1605, 1419, 1253, 1139, 1094, 1124, 1219, 1377, 1543, 1739, 1877, 1930, 1813, 1869, 1940, 1935, 1826, 1669, 1495, 1340, 1231, 1201, 1219, 1309, 1456, 1621, 1789, 1906, 1909, 1822, 1816, 1926, 1946, 1893, 1750, 1589, 1447, 1337, 1297, 1330, 1425, 1571, 1696, 1841, 1931, 1895, 1770, 1751, 1898, 1951, 1935, 1826, 1693, 1553, 1466, 1442, 1451, 1544, 1662, 1789, 1892, 1936, 1882, 1722, 1657, 1833, 1929, 1942, 1891, 1798, 1682, 1610, 1572, 1601, 1652, 1763, 1877, 1927, 1898, 1818, 1616, 1455, 1749, 1871, 1937, 1910, 1859, 1796, 1736, 1714, 1715, 1773, 1859, 1896, 1922, 1856, 1735, 1425, 1074, 1631, 1826, 1927, 1963, 1946, 1893, 1867, 1880, 1880, 1907, 1917, 1963, 1927, 1811, 1617, 1072]
| }
| }, {
| "name": "8192x6144_CWF_100",
| "resolution": "8192x6144",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [7147, 4969, 4037, 3442, 3105, 2812, 2583, 2499, 2442, 2476, 2595, 2783, 3001, 3377, 3891, 4834, 6027, 5475, 4329, 3580, 3141, 2741, 2499, 2296, 2158, 2116, 2149, 2286, 2453, 2699, 3018, 3464, 4098, 5312, 5015, 3862, 3235, 2812, 2476, 2211, 2013, 1879, 1828, 1853, 1990, 2175, 2453, 2727, 3141, 3703, 4627, 4473, 3556, 3018, 2583, 2258, 1976, 1768, 1644, 1595, 1629, 1751, 1940, 2193, 2534, 2888, 3420, 4161, 4067, 3295, 2783, 2409, 2051, 1774, 1576, 1449, 1403, 1430, 1558, 1739, 1990, 2326, 2741, 3216, 3808, 3781, 3123, 2659, 2248, 1886, 1619, 1433, 1298, 1253, 1280, 1400, 1576, 1822, 2193, 2570, 3035, 3604, 3653, 3035, 2522, 2141, 1774, 1510, 1314, 1192, 1137, 1166, 1280, 1465, 1706, 2067, 2476, 2903, 3487, 3533, 2935, 2453, 2051, 1674, 1418, 1230, 1115, 1060, 1095, 1200, 1389, 1634, 1976, 2377, 2842, 3399, 3510, 2888, 2420, 1983, 1644, 1385, 1195, 1077, 1024, 1062, 1166, 1354, 1600, 1926, 2367, 2798, 3336, 3510, 2888, 2431, 2020, 1669, 1414, 1216, 1090, 1044, 1069, 1184, 1364, 1614, 1954, 2388, 2812, 3377, 3604, 2984, 2476, 2091, 1728, 1457, 1277, 1149, 1099, 1132, 1241, 1422, 1674, 2013, 2420, 2888, 3442, 3755, 3069, 2595, 2175, 1847, 1567, 1371, 1244, 1211, 1233, 1347, 1527, 1780, 2124, 2534, 3018, 3580, 4007, 3216, 2727, 2326, 1998, 1701, 1514, 1393, 1344, 1375, 1489, 1659, 1919, 2267, 2673, 3105, 3781, 4227, 3399, 2888, 2499, 2158, 1886, 1679, 1567, 1523, 1544, 1659, 1853, 2107, 2442, 2842, 3315, 4007, 4708, 3653, 3105, 2727, 2377, 2124, 1912, 1780, 1745, 1751, 1892, 2075, 2336, 2621, 3052, 3556, 4549, 5419, 4067, 3356, 2968, 2608, 2367, 2175, 2051, 1990, 2035, 2149, 2336, 2595, 2903, 3315, 4007, 5110, 5894, 4792, 3755, 3295, 2919, 2699, 2476, 2367, 2346, 2398, 2499, 2659, 2919, 3197, 3678, 4549, 5647]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7465, 5113, 4218, 3572, 3204, 2916, 2705, 2574, 2513, 2565, 2666, 2893, 3110, 3472, 4035, 4911, 6069, 5613, 4470, 3714, 3218, 2860, 2592, 2377, 2242, 2196, 2242, 2355, 2539, 2817, 3163, 3589, 4266, 5370, 5078, 4013, 3378, 2927, 2574, 2276, 2085, 1944, 1885, 1934, 2051, 2262, 2513, 2860, 3288, 3828, 4816, 4608, 3659, 3137, 2705, 2325, 2034, 1825, 1693, 1652, 1670, 1794, 2007, 2283, 2628, 3022, 3538, 4315, 4241, 3424, 2905, 2488, 2133, 1834, 1616, 1475, 1433, 1469, 1592, 1786, 2074, 2432, 2849, 3332, 4013, 3992, 3260, 2744, 2325, 1959, 1670, 1452, 1317, 1267, 1307, 1430, 1626, 1914, 2276, 2685, 3163, 3714, 3809, 3150, 2647, 2215, 1839, 1539, 1326, 1191, 1143, 1179, 1294, 1499, 1786, 2127, 2592, 3059, 3606, 3733, 3085, 2565, 2139, 1744, 1461, 1242, 1108, 1060, 1096, 1218, 1416, 1704, 2062, 2497, 2974, 3538, 3641, 3047, 2539, 2097, 1712, 1425, 1216, 1076, 1024, 1062, 1183, 1393, 1663, 2023, 2464, 2962, 3505, 3677, 3047, 2556, 2097, 1732, 1441, 1226, 1091, 1041, 1080, 1192, 1398, 1674, 2056, 2480, 2974, 3472, 3733, 3098, 2601, 2170, 1794, 1502, 1296, 1159, 1114, 1147, 1263, 1467, 1748, 2109, 2548, 3022, 3589, 3929, 3204, 2724, 2283, 1899, 1612, 1403, 1267, 1218, 1259, 1380, 1575, 1857, 2215, 2657, 3137, 3770, 4057, 3348, 2871, 2432, 2074, 1773, 1562, 1419, 1370, 1403, 1527, 1724, 2023, 2362, 2796, 3260, 3950, 4417, 3572, 3047, 2638, 2269, 1970, 1756, 1619, 1578, 1605, 1728, 1929, 2196, 2556, 2986, 3472, 4218, 4977, 3828, 3274, 2871, 2505, 2215, 2001, 1866, 1821, 1857, 1970, 2176, 2456, 2817, 3204, 3751, 4608, 5530, 4241, 3555, 3110, 2775, 2488, 2297, 2164, 2109, 2151, 2262, 2464, 2724, 3059, 3472, 4147, 5184, 6118, 4944, 3971, 3456, 3110, 2838, 2638, 2497, 2448, 2505, 2610, 2838, 3047, 3440, 3971, 4879, 5878]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7391, 5078, 4170, 3589, 3204, 2838, 2705, 2574, 2522, 2556, 2657, 2838, 3085, 3472, 4035, 4879, 5972, 5571, 4497, 3714, 3231, 2871, 2592, 2385, 2242, 2196, 2228, 2347, 2539, 2785, 3123, 3572, 4241, 5370, 5044, 3992, 3363, 2916, 2574, 2283, 2068, 1944, 1890, 1924, 2051, 2255, 2505, 2849, 3260, 3809, 4665, 4524, 3659, 3137, 2705, 2325, 2023, 1834, 1677, 1637, 1677, 1799, 1996, 2262, 2619, 3034, 3505, 4194, 4241, 3409, 2927, 2488, 2121, 1825, 1609, 1472, 1427, 1461, 1578, 1773, 2056, 2408, 2828, 3274, 3908, 3971, 3246, 2755, 2325, 1949, 1655, 1447, 1310, 1261, 1298, 1408, 1612, 1895, 2242, 2657, 3137, 3714, 3828, 3163, 2676, 2222, 1825, 1536, 1324, 1185, 1140, 1174, 1294, 1490, 1761, 2127, 2548, 3022, 3521, 3733, 3059, 2583, 2127, 1744, 1458, 1244, 1114, 1060, 1090, 1212, 1406, 1693, 2051, 2472, 2951, 3488, 3659, 3034, 2539, 2085, 1708, 1425, 1214, 1077, 1024, 1060, 1177, 1372, 1648, 2012, 2439, 2927, 3424, 3659, 3034, 2556, 2109, 1728, 1438, 1226, 1090, 1041, 1077, 1194, 1388, 1670, 2029, 2456, 2962, 3472, 3733, 3110, 2601, 2164, 1782, 1496, 1294, 1152, 1106, 1140, 1255, 1458, 1724, 2091, 2530, 2998, 3505, 3828, 3218, 2715, 2276, 1899, 1605, 1398, 1261, 1216, 1248, 1365, 1562, 1852, 2202, 2638, 3110, 3641, 4124, 3348, 2860, 2424, 2062, 1777, 1562, 1425, 1372, 1403, 1523, 1724, 1996, 2347, 2765, 3260, 3848, 4417, 3555, 3072, 2610, 2262, 1975, 1748, 1619, 1568, 1602, 1716, 1919, 2196, 2539, 2962, 3440, 4101, 4911, 3828, 3260, 2860, 2505, 2215, 2007, 1862, 1821, 1852, 1964, 2170, 2439, 2796, 3204, 3733, 4552, 5530, 4266, 3589, 3110, 2755, 2488, 2276, 2133, 2097, 2133, 2242, 2439, 2734, 3047, 3488, 4079, 5148, 6118, 4911, 4035, 3440, 3123, 2817, 2628, 2488, 2448, 2472, 2601, 2775, 3034, 3378, 3868, 4665, 5571]
| },
| "lsc_samples_blue": {
| "uCoeff": [7319, 4545, 3712, 3230, 2911, 2649, 2449, 2343, 2293, 2343, 2449, 2565, 2860, 3167, 3670, 4482, 5657, 4815, 3938, 3263, 2885, 2565, 2326, 2141, 2033, 2008, 2021, 2141, 2277, 2565, 2835, 3199, 3844, 4889, 4545, 3549, 2964, 2606, 2326, 2086, 1902, 1767, 1748, 1767, 1869, 2046, 2293, 2586, 2911, 3400, 4247, 4035, 3230, 2786, 2430, 2113, 1880, 1693, 1570, 1533, 1555, 1676, 1837, 2086, 2377, 2716, 3136, 3890, 3755, 2992, 2606, 2261, 1948, 1693, 1526, 1407, 1359, 1388, 1491, 1650, 1891, 2214, 2525, 2964, 3549, 3473, 2835, 2467, 2086, 1797, 1555, 1377, 1269, 1226, 1254, 1348, 1512, 1739, 2046, 2360, 2810, 3365, 3365, 2786, 2360, 1996, 1693, 1438, 1284, 1164, 1131, 1143, 1244, 1407, 1625, 1925, 2293, 2693, 3167, 3263, 2671, 2277, 1913, 1593, 1377, 1212, 1108, 1061, 1082, 1177, 1331, 1555, 1869, 2230, 2606, 3167, 3230, 2627, 2245, 1902, 1586, 1342, 1181, 1068, 1024, 1051, 1139, 1304, 1519, 1807, 2184, 2586, 3048, 3199, 2693, 2245, 1891, 1578, 1348, 1185, 1079, 1040, 1064, 1160, 1310, 1533, 1817, 2184, 2606, 3167, 3263, 2693, 2277, 1936, 1642, 1407, 1230, 1127, 1079, 1108, 1207, 1365, 1586, 1891, 2245, 2693, 3199, 3365, 2810, 2377, 2008, 1729, 1491, 1331, 1203, 1160, 1194, 1289, 1438, 1667, 1984, 2360, 2739, 3296, 3629, 2911, 2506, 2155, 1837, 1617, 1431, 1315, 1289, 1310, 1400, 1578, 1807, 2113, 2506, 2911, 3549, 3799, 3077, 2671, 2293, 2008, 1777, 1570, 1470, 1444, 1464, 1570, 1748, 1984, 2293, 2649, 3077, 3755, 4247, 3330, 2860, 2506, 2184, 1972, 1767, 1650, 1634, 1650, 1758, 1925, 2199, 2486, 2860, 3296, 4192, 4745, 3712, 3048, 2693, 2394, 2170, 1996, 1880, 1848, 1891, 1984, 2170, 2394, 2716, 3077, 3629, 4610, 5375, 4303, 3473, 3048, 2739, 2506, 2309, 2199, 2199, 2214, 2309, 2525, 2739, 3106, 3473, 4303, 5288]
| }
| }, {
| "name": "8192x6144_CWF_1",
| "resolution": "8192x6144",
| "illumination": "CWF",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1085, 1672, 1884, 1963, 2009, 1991, 1943, 1937, 1915, 1922, 1950, 1975, 1960, 1938, 1843, 1649, 1074, 1475, 1827, 1955, 2015, 1976, 1943, 1880, 1821, 1802, 1814, 1873, 1914, 1953, 1957, 1913, 1771, 1458, 1707, 1907, 1982, 1986, 1933, 1850, 1762, 1688, 1657, 1668, 1745, 1825, 1919, 1941, 1941, 1858, 1641, 1814, 1958, 2005, 1957, 1872, 1746, 1626, 1545, 1510, 1532, 1612, 1718, 1828, 1928, 1941, 1908, 1743, 1865, 1970, 1975, 1922, 1782, 1632, 1500, 1404, 1367, 1387, 1484, 1603, 1737, 1868, 1952, 1937, 1793, 1887, 1977, 1971, 1866, 1695, 1530, 1393, 1280, 1241, 1263, 1364, 1494, 1645, 1828, 1919, 1937, 1831, 1916, 1991, 1932, 1824, 1630, 1452, 1295, 1186, 1134, 1161, 1263, 1412, 1575, 1771, 1905, 1927, 1859, 1914, 1973, 1914, 1777, 1560, 1378, 1220, 1113, 1060, 1094, 1191, 1352, 1527, 1722, 1867, 1927, 1867, 1919, 1960, 1901, 1732, 1539, 1350, 1188, 1076, 1024, 1062, 1160, 1322, 1502, 1690, 1868, 1915, 1857, 1906, 1950, 1901, 1754, 1556, 1374, 1207, 1089, 1044, 1068, 1176, 1329, 1511, 1706, 1874, 1912, 1859, 1899, 1966, 1905, 1788, 1592, 1405, 1260, 1145, 1097, 1128, 1226, 1374, 1549, 1732, 1871, 1920, 1844, 1878, 1952, 1934, 1815, 1665, 1486, 1337, 1230, 1201, 1219, 1316, 1452, 1613, 1780, 1898, 1929, 1824, 1848, 1937, 1945, 1868, 1743, 1572, 1446, 1354, 1313, 1338, 1425, 1538, 1685, 1830, 1916, 1891, 1786, 1758, 1900, 1941, 1907, 1804, 1678, 1554, 1480, 1449, 1461, 1538, 1653, 1769, 1873, 1918, 1869, 1707, 1655, 1842, 1925, 1941, 1871, 1789, 1687, 1611, 1591, 1589, 1672, 1755, 1845, 1884, 1902, 1812, 1628, 1469, 1764, 1873, 1934, 1903, 1861, 1798, 1746, 1712, 1734, 1781, 1841, 1895, 1904, 1859, 1749, 1438, 1073, 1643, 1804, 1906, 1921, 1930, 1880, 1855, 1855, 1874, 1893, 1908, 1921, 1868, 1782, 1603, 1070]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1088, 1695, 1936, 2013, 2056, 2047, 2015, 1983, 1960, 1977, 1992, 2035, 2012, 1975, 1884, 1662, 1074, 1489, 1862, 2004, 2051, 2042, 2001, 1934, 1880, 1859, 1880, 1919, 1968, 2018, 2025, 1958, 1812, 1464, 1718, 1954, 2044, 2048, 1994, 1895, 1816, 1739, 1702, 1731, 1790, 1885, 1956, 2012, 2005, 1896, 1673, 1845, 1996, 2064, 2030, 1919, 1790, 1672, 1586, 1558, 1567, 1647, 1769, 1890, 1984, 2007, 1952, 1778, 1913, 2024, 2041, 1973, 1843, 1680, 1534, 1427, 1394, 1422, 1514, 1641, 1799, 1937, 2011, 1985, 1850, 1953, 2039, 2020, 1919, 1752, 1574, 1411, 1298, 1254, 1289, 1391, 1536, 1717, 1885, 1986, 1995, 1866, 1968, 2046, 2008, 1876, 1682, 1477, 1306, 1185, 1140, 1174, 1276, 1442, 1639, 1814, 1975, 2002, 1900, 1985, 2048, 1984, 1841, 1618, 1416, 1231, 1107, 1060, 1095, 1208, 1376, 1585, 1785, 1942, 1993, 1916, 1967, 2040, 1976, 1816, 1596, 1386, 1208, 1075, 1024, 1062, 1176, 1358, 1555, 1762, 1929, 1997, 1918, 1966, 2029, 1978, 1810, 1608, 1398, 1216, 1090, 1041, 1079, 1184, 1360, 1560, 1780, 1931, 1993, 1893, 1943, 2021, 1980, 1844, 1646, 1445, 1278, 1154, 1112, 1143, 1247, 1414, 1609, 1801, 1948, 1984, 1894, 1933, 2013, 2008, 1890, 1705, 1524, 1366, 1251, 1207, 1244, 1346, 1493, 1673, 1843, 1969, 1983, 1883, 1862, 1992, 2023, 1937, 1799, 1631, 1488, 1377, 1337, 1363, 1458, 1591, 1762, 1891, 1982, 1955, 1832, 1801, 1964, 2019, 1990, 1880, 1741, 1616, 1524, 1495, 1512, 1594, 1710, 1830, 1941, 1989, 1927, 1756, 1701, 1896, 1998, 2018, 1951, 1853, 1753, 1678, 1651, 1671, 1730, 1825, 1921, 1989, 1968, 1872, 1638, 1481, 1806, 1946, 2001, 1995, 1936, 1880, 1825, 1797, 1816, 1857, 1921, 1967, 1977, 1916, 1783, 1445, 1075, 1667, 1865, 1968, 2012, 2005, 1975, 1935, 1919, 1940, 1959, 2005, 1982, 1962, 1865, 1657, 1073]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1088, 1689, 1922, 2020, 2056, 2005, 2015, 1983, 1966, 1972, 1986, 2005, 2000, 1975, 1884, 1657, 1073, 1485, 1868, 2004, 2057, 2048, 2001, 1939, 1880, 1859, 1870, 1914, 1968, 2001, 2007, 1952, 1806, 1464, 1712, 1947, 2037, 2042, 1994, 1900, 1803, 1739, 1705, 1723, 1790, 1880, 1951, 2006, 1992, 1891, 1647, 1826, 1996, 2064, 2030, 1919, 1781, 1680, 1573, 1546, 1573, 1651, 1761, 1875, 1979, 2013, 1939, 1750, 1913, 2018, 2053, 1973, 1834, 1673, 1528, 1424, 1388, 1414, 1501, 1631, 1786, 1921, 1999, 1961, 1821, 1946, 2032, 2026, 1919, 1744, 1561, 1406, 1291, 1248, 1280, 1371, 1524, 1702, 1861, 1969, 1983, 1866, 1975, 2052, 2026, 1882, 1671, 1475, 1304, 1179, 1137, 1169, 1276, 1434, 1619, 1814, 1948, 1984, 1871, 1985, 2035, 1995, 1832, 1618, 1414, 1233, 1112, 1060, 1089, 1203, 1367, 1576, 1777, 1926, 1981, 1898, 1973, 2033, 1976, 1808, 1592, 1386, 1206, 1076, 1024, 1060, 1170, 1339, 1542, 1754, 1913, 1980, 1888, 1959, 2023, 1978, 1819, 1605, 1396, 1216, 1089, 1041, 1076, 1186, 1351, 1557, 1760, 1916, 1987, 1893, 1943, 2027, 1980, 1840, 1636, 1439, 1276, 1148, 1104, 1136, 1240, 1406, 1589, 1788, 1937, 1973, 1865, 1901, 2020, 2003, 1885, 1705, 1518, 1362, 1246, 1206, 1233, 1332, 1482, 1669, 1834, 1958, 1971, 1843, 1880, 1992, 2017, 1932, 1791, 1634, 1488, 1382, 1339, 1363, 1454, 1591, 1742, 1882, 1965, 1955, 1804, 1801, 1958, 2032, 1973, 1875, 1745, 1610, 1524, 1487, 1510, 1584, 1703, 1830, 1931, 1977, 1915, 1729, 1690, 1896, 1992, 2012, 1951, 1853, 1757, 1675, 1651, 1667, 1725, 1821, 1910, 1978, 1968, 1867, 1628, 1481, 1812, 1958, 2001, 1984, 1936, 1866, 1803, 1789, 1803, 1843, 1906, 1972, 1971, 1922, 1767, 1442, 1075, 1662, 1884, 1962, 2018, 1993, 1969, 1930, 1919, 1920, 1953, 1971, 1976, 1938, 1836, 1622, 1069]
| },
| "lsc_samples_blue": {
| "uCoeff": [1087, 1602, 1791, 1881, 1917, 1903, 1864, 1840, 1822, 1840, 1864, 1857, 1893, 1856, 1780, 1592, 1070, 1408, 1732, 1840, 1895, 1879, 1835, 1775, 1733, 1725, 1724, 1775, 1805, 1879, 1872, 1816, 1709, 1416, 1627, 1810, 1864, 1876, 1839, 1763, 1679, 1601, 1594, 1601, 1654, 1735, 1819, 1865, 1841, 1763, 1576, 1714, 1838, 1891, 1865, 1773, 1673, 1565, 1483, 1457, 1470, 1552, 1640, 1754, 1834, 1856, 1803, 1681, 1778, 1844, 1879, 1826, 1706, 1566, 1457, 1366, 1327, 1349, 1427, 1531, 1664, 1796, 1836, 1832, 1721, 1790, 1846, 1859, 1754, 1626, 1476, 1343, 1253, 1215, 1239, 1317, 1439, 1581, 1727, 1797, 1835, 1756, 1818, 1871, 1834, 1720, 1564, 1388, 1267, 1159, 1128, 1139, 1229, 1361, 1509, 1669, 1794, 1826, 1751, 1819, 1842, 1805, 1675, 1493, 1341, 1203, 1107, 1061, 1081, 1170, 1300, 1462, 1643, 1775, 1810, 1785, 1819, 1829, 1791, 1672, 1491, 1311, 1174, 1068, 1024, 1051, 1134, 1277, 1435, 1602, 1753, 1808, 1753, 1796, 1853, 1785, 1659, 1481, 1315, 1177, 1078, 1040, 1063, 1153, 1281, 1444, 1605, 1747, 1810, 1785, 1783, 1826, 1784, 1677, 1523, 1361, 1216, 1123, 1078, 1105, 1195, 1324, 1478, 1645, 1764, 1826, 1762, 1756, 1835, 1807, 1701, 1573, 1421, 1301, 1191, 1153, 1183, 1263, 1376, 1525, 1684, 1797, 1802, 1735, 1744, 1810, 1825, 1757, 1624, 1504, 1375, 1284, 1264, 1279, 1348, 1473, 1602, 1730, 1825, 1810, 1721, 1660, 1781, 1834, 1783, 1701, 1595, 1466, 1399, 1381, 1394, 1466, 1573, 1684, 1783, 1823, 1781, 1650, 1576, 1741, 1819, 1822, 1750, 1684, 1578, 1510, 1504, 1510, 1572, 1651, 1760, 1811, 1819, 1731, 1566, 1401, 1677, 1761, 1805, 1784, 1738, 1678, 1625, 1611, 1633, 1670, 1738, 1784, 1816, 1772, 1657, 1387, 1068, 1562, 1723, 1810, 1836, 1825, 1781, 1751, 1763, 1760, 1781, 1836, 1836, 1832, 1723, 1562, 1067]
| }
| }, {
| "name": "8192x6144_D50_100",
| "resolution": "8192x6144",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 5654, 4505, 3887, 3489, 3164, 2911, 2784, 2754, 2769, 2878, 3125, 3419, 3801, 4427, 5356, 6521, 6128, 4802, 3978, 3537, 3125, 2784, 2574, 2393, 2348, 2404, 2535, 2769, 3050, 3442, 3858, 4670, 5985, 5531, 4389, 3664, 3184, 2769, 2450, 2216, 2047, 1991, 2047, 2178, 2427, 2725, 3088, 3513, 4139, 5193, 4990, 3978, 3396, 2911, 2523, 2169, 1931, 1770, 1716, 1758, 1902, 2142, 2450, 2846, 3286, 3829, 4670, 4586, 3717, 3164, 2682, 2275, 1931, 1694, 1540, 1482, 1517, 1661, 1888, 2197, 2613, 3069, 3587, 4315, 4315, 3562, 2997, 2523, 2072, 1740, 1504, 1352, 1284, 1331, 1478, 1694, 2015, 2404, 2895, 3442, 4106, 4139, 3419, 2846, 2370, 1931, 1593, 1363, 1208, 1156, 1191, 1331, 1559, 1867, 2285, 2769, 3265, 3917, 4041, 3308, 2769, 2245, 1821, 1499, 1268, 1116, 1060, 1092, 1229, 1453, 1758, 2197, 2682, 3224, 3801, 3978, 3265, 2725, 2206, 1776, 1457, 1232, 1078, 1024, 1058, 1194, 1412, 1722, 2124, 2668, 3184, 3858, 4041, 3286, 2754, 2226, 1801, 1478, 1241, 1099, 1047, 1080, 1211, 1436, 1746, 2142, 2668, 3224, 3829, 4041, 3396, 2800, 2306, 1881, 1554, 1318, 1167, 1109, 1141, 1278, 1499, 1801, 2235, 2725, 3286, 3917, 4243, 3465, 2895, 2438, 2023, 1683, 1444, 1284, 1232, 1275, 1408, 1634, 1946, 2359, 2831, 3396, 4106, 4389, 3638, 3069, 2613, 2197, 1860, 1618, 1465, 1401, 1436, 1578, 1795, 2132, 2535, 3032, 3513, 4278, 4757, 3858, 3286, 2815, 2415, 2072, 1814, 1683, 1624, 1650, 1801, 2023, 2348, 2754, 3224, 3717, 4586, 5356, 4139, 3489, 3069, 2682, 2338, 2097, 1931, 1895, 1924, 2080, 2285, 2613, 2997, 3442, 4041, 4990, 5985, 4586, 3772, 3308, 2962, 2654, 2427, 2275, 2226, 2255, 2393, 2613, 2911, 3265, 3745, 4466, 5654, 6521, 5301, 4243, 3691, 3308, 3050, 2800, 2668, 2640, 2654, 2784, 2979, 3286, 3717, 4243, 5089, 6438]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7778, 5149, 4178, 3656, 3207, 2924, 2718, 2584, 2530, 2565, 2678, 2878, 3138, 3449, 4017, 5008, 6144, 5539, 4513, 3769, 3279, 2901, 2611, 2405, 2264, 2216, 2236, 2366, 2565, 2856, 3179, 3619, 4326, 5498, 5149, 4039, 3417, 2996, 2630, 2328, 2101, 1939, 1899, 1939, 2059, 2278, 2539, 2890, 3308, 3869, 4874, 4657, 3730, 3193, 2749, 2358, 2059, 1842, 1700, 1654, 1689, 1805, 2020, 2314, 2649, 3072, 3584, 4326, 4275, 3482, 2960, 2530, 2163, 1851, 1621, 1492, 1436, 1477, 1603, 1788, 2089, 2462, 2867, 3369, 3974, 3995, 3323, 2812, 2366, 1976, 1681, 1462, 1320, 1274, 1308, 1428, 1632, 1914, 2292, 2718, 3179, 3769, 3869, 3193, 2698, 2243, 1856, 1546, 1337, 1193, 1144, 1181, 1303, 1501, 1783, 2157, 2593, 3098, 3584, 3769, 3098, 2602, 2157, 1758, 1462, 1250, 1111, 1067, 1099, 1221, 1425, 1704, 2071, 2512, 3021, 3549, 3711, 3072, 2574, 2125, 1724, 1428, 1217, 1082, 1024, 1066, 1189, 1387, 1665, 2042, 2504, 2984, 3482, 3730, 3098, 2621, 2119, 1741, 1448, 1229, 1093, 1047, 1085, 1201, 1403, 1681, 2059, 2512, 3021, 3566, 3808, 3179, 2659, 2209, 1805, 1507, 1296, 1155, 1111, 1141, 1258, 1468, 1749, 2119, 2584, 3059, 3619, 3931, 3235, 2769, 2328, 1919, 1632, 1409, 1269, 1223, 1256, 1374, 1583, 1856, 2236, 2678, 3165, 3730, 4178, 3417, 2924, 2478, 2089, 1783, 1566, 1422, 1367, 1406, 1530, 1728, 2025, 2397, 2834, 3323, 3952, 4486, 3602, 3085, 2668, 2285, 1987, 1770, 1625, 1572, 1610, 1728, 1939, 2222, 2602, 3034, 3515, 4202, 4974, 3910, 3323, 2913, 2539, 2250, 2009, 1870, 1828, 1842, 1976, 2189, 2470, 2823, 3235, 3769, 4598, 5581, 4301, 3637, 3165, 2801, 2530, 2299, 2170, 2132, 2157, 2278, 2487, 2738, 3085, 3532, 4178, 5223, 6249, 5008, 3974, 3498, 3125, 2834, 2659, 2512, 2470, 2530, 2611, 2834, 3085, 3465, 3995, 4779, 5802]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7707, 5085, 4208, 3661, 3240, 2940, 2732, 2606, 2551, 2551, 2712, 2882, 3129, 3470, 3979, 4947, 5858, 5632, 4464, 3755, 3269, 2894, 2615, 2408, 2267, 2219, 2260, 2377, 2578, 2827, 3156, 3589, 4257, 5423, 5156, 4023, 3390, 2964, 2606, 2317, 2104, 1963, 1902, 1947, 2062, 2281, 2533, 2871, 3283, 3833, 4663, 4663, 3716, 3183, 2763, 2370, 2068, 1840, 1703, 1645, 1691, 1812, 2017, 2302, 2643, 3063, 3554, 4232, 4257, 3470, 2964, 2525, 2160, 1840, 1634, 1485, 1438, 1473, 1592, 1799, 2074, 2424, 2860, 3343, 3915, 4001, 3313, 2805, 2347, 1984, 1683, 1458, 1312, 1267, 1305, 1422, 1627, 1912, 2260, 2682, 3156, 3736, 3833, 3169, 2682, 2232, 1844, 1548, 1339, 1196, 1140, 1173, 1300, 1500, 1769, 2141, 2578, 3063, 3520, 3755, 3076, 2606, 2147, 1752, 1464, 1249, 1114, 1067, 1099, 1212, 1422, 1683, 2062, 2499, 2976, 3453, 3679, 3063, 2578, 2116, 1719, 1422, 1220, 1081, 1024, 1066, 1183, 1381, 1656, 2011, 2457, 2952, 3453, 3716, 3089, 2569, 2135, 1731, 1438, 1233, 1096, 1046, 1078, 1198, 1400, 1672, 2045, 2465, 2976, 3421, 3774, 3142, 2653, 2205, 1799, 1500, 1294, 1160, 1104, 1140, 1262, 1467, 1735, 2098, 2542, 3013, 3520, 3874, 3240, 2763, 2302, 1917, 1627, 1408, 1265, 1222, 1249, 1371, 1578, 1844, 2219, 2653, 3142, 3698, 4113, 3405, 2894, 2474, 2080, 1781, 1564, 1424, 1371, 1400, 1522, 1727, 2011, 2377, 2805, 3298, 3874, 4492, 3589, 3102, 2653, 2295, 1984, 1773, 1627, 1568, 1609, 1731, 1942, 2219, 2569, 3001, 3503, 4137, 4914, 3874, 3328, 2894, 2533, 2239, 2028, 1868, 1826, 1854, 1984, 2179, 2474, 2805, 3211, 3716, 4548, 5589, 4307, 3625, 3169, 2827, 2516, 2302, 2166, 2122, 2147, 2274, 2474, 2752, 3076, 3503, 4137, 5085, 5952, 4914, 4023, 3487, 3129, 2838, 2634, 2542, 2482, 2465, 2624, 2805, 3051, 3453, 3915, 4693, 5765]
| },
| "lsc_samples_blue": {
| "uCoeff": [7344, 4760, 3892, 3347, 2978, 2737, 2516, 2412, 2397, 2397, 2501, 2719, 2978, 3319, 3819, 4598, 6125, 5056, 4048, 3374, 2978, 2683, 2397, 2226, 2111, 2047, 2078, 2202, 2397, 2648, 2956, 3319, 3969, 5120, 4650, 3615, 3115, 2719, 2397, 2144, 1967, 1826, 1785, 1809, 1948, 2133, 2369, 2701, 3068, 3583, 4447, 4216, 3319, 2893, 2516, 2179, 1939, 1718, 1615, 1565, 1590, 1710, 1903, 2167, 2485, 2813, 3266, 4008, 3783, 3139, 2683, 2315, 2006, 1732, 1553, 1427, 1384, 1403, 1518, 1703, 1958, 2276, 2648, 3068, 3714, 3714, 2956, 2532, 2167, 1842, 1596, 1403, 1279, 1229, 1267, 1361, 1553, 1778, 2111, 2470, 2914, 3461, 3432, 2873, 2426, 2047, 1725, 1469, 1287, 1169, 1129, 1165, 1251, 1432, 1668, 1987, 2356, 2794, 3292, 3403, 2775, 2342, 1977, 1641, 1398, 1221, 1117, 1070, 1090, 1182, 1361, 1583, 1912, 2315, 2719, 3319, 3347, 2737, 2315, 1939, 1615, 1361, 1186, 1070, 1024, 1062, 1159, 1304, 1565, 1868, 2276, 2683, 3266, 3347, 2756, 2315, 1958, 1609, 1384, 1200, 1084, 1053, 1073, 1165, 1329, 1571, 1885, 2276, 2719, 3214, 3403, 2794, 2397, 1996, 1661, 1427, 1244, 1133, 1096, 1123, 1229, 1384, 1621, 1921, 2356, 2794, 3292, 3521, 2893, 2470, 2100, 1778, 1530, 1338, 1221, 1175, 1207, 1304, 1485, 1725, 2057, 2441, 2873, 3403, 3681, 3045, 2580, 2226, 1921, 1661, 1464, 1347, 1299, 1334, 1432, 1634, 1859, 2190, 2580, 2978, 3647, 3930, 3189, 2775, 2412, 2100, 1817, 1615, 1496, 1464, 1496, 1602, 1793, 2036, 2383, 2756, 3189, 3930, 4399, 3403, 2956, 2614, 2289, 2026, 1817, 1710, 1661, 1696, 1809, 2006, 2276, 2580, 2956, 3432, 4260, 4994, 3783, 3214, 2813, 2501, 2251, 2100, 1939, 1903, 1939, 2057, 2264, 2516, 2794, 3240, 3819, 4994, 5616, 4496, 3615, 3164, 2813, 2631, 2383, 2264, 2264, 2276, 2397, 2580, 2832, 3139, 3647, 4447, 5392]
| }
| }, {
| "name": "8192x6144_D50_1",
| "resolution": "8192x6144",
| "illumination": "D50",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1097, 1784, 2018, 2136, 2191, 2181, 2136, 2113, 2111, 2104, 2117, 2160, 2158, 2102, 1996, 1735, 1079, 1541, 1942, 2100, 2200, 2189, 2121, 2066, 1986, 1968, 1994, 2040, 2111, 2148, 2156, 2056, 1910, 1527, 1796, 2071, 2167, 2187, 2117, 2016, 1913, 1819, 1785, 1819, 1885, 2000, 2089, 2135, 2102, 1993, 1738, 1933, 2114, 2191, 2153, 2055, 1892, 1758, 1651, 1613, 1641, 1735, 1872, 2004, 2114, 2137, 2059, 1859, 2008, 2146, 2181, 2099, 1948, 1759, 1601, 1485, 1438, 1464, 1573, 1724, 1890, 2054, 2130, 2092, 1933, 2054, 2176, 2166, 2055, 1840, 1633, 1458, 1331, 1270, 1311, 1434, 1594, 1796, 1973, 2107, 2121, 1988, 2080, 2175, 2129, 1987, 1756, 1525, 1340, 1202, 1153, 1185, 1310, 1495, 1705, 1927, 2082, 2101, 2005, 2095, 2159, 2111, 1919, 1681, 1451, 1256, 1114, 1060, 1091, 1219, 1409, 1629, 1884, 2057, 2117, 2010, 2088, 2149, 2093, 1897, 1649, 1415, 1223, 1077, 1024, 1058, 1187, 1375, 1604, 1836, 2057, 2109, 2045, 2095, 2148, 2102, 1905, 1665, 1432, 1230, 1098, 1047, 1079, 1202, 1394, 1620, 1843, 2048, 2117, 2019, 2047, 2164, 2101, 1942, 1716, 1491, 1298, 1162, 1107, 1137, 1261, 1442, 1651, 1891, 2056, 2111, 2005, 2031, 2132, 2107, 1996, 1802, 1585, 1403, 1267, 1221, 1259, 1371, 1543, 1742, 1942, 2070, 2101, 1988, 1953, 2113, 2130, 2054, 1890, 1701, 1536, 1418, 1365, 1392, 1501, 1649, 1842, 2004, 2110, 2061, 1923, 1879, 2070, 2137, 2096, 1980, 1819, 1663, 1578, 1534, 1550, 1653, 1781, 1934, 2059, 2106, 2018, 1840, 1766, 1993, 2092, 2125, 2062, 1938, 1825, 1728, 1709, 1723, 1812, 1901, 2019, 2086, 2071, 1963, 1703, 1527, 1890, 2025, 2093, 2099, 2040, 1968, 1903, 1881, 1889, 1945, 2014, 2071, 2073, 2015, 1861, 1493, 1079, 1726, 1943, 2060, 2105, 2119, 2071, 2041, 2040, 2033, 2061, 2081, 2095, 2070, 1943, 1691, 1078]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1092, 1701, 1925, 2046, 2058, 2051, 2022, 1989, 1971, 1977, 1999, 2026, 2025, 1966, 1879, 1678, 1075, 1481, 1872, 2024, 2080, 2065, 2013, 1953, 1895, 1873, 1876, 1927, 1984, 2040, 2033, 1969, 1827, 1477, 1730, 1962, 2060, 2085, 2030, 1931, 1828, 1735, 1713, 1735, 1796, 1896, 1973, 2028, 2013, 1909, 1683, 1856, 2022, 2091, 2056, 1941, 1809, 1686, 1592, 1560, 1583, 1656, 1779, 1911, 1997, 2032, 1969, 1781, 1922, 2048, 2071, 2000, 1865, 1694, 1539, 1442, 1396, 1429, 1523, 1643, 1811, 1956, 2021, 2001, 1839, 1954, 2067, 2059, 1947, 1765, 1583, 1420, 1301, 1260, 1290, 1389, 1541, 1717, 1896, 2005, 2002, 1883, 1989, 2067, 2039, 1897, 1696, 1483, 1316, 1187, 1141, 1176, 1284, 1444, 1637, 1835, 1976, 2021, 1892, 1998, 2054, 2007, 1854, 1629, 1417, 1239, 1110, 1067, 1098, 1211, 1384, 1585, 1791, 1951, 2016, 1920, 1992, 2052, 1998, 1837, 1605, 1389, 1209, 1081, 1024, 1066, 1182, 1352, 1556, 1776, 1954, 2008, 1909, 1984, 2054, 2019, 1826, 1615, 1405, 1219, 1092, 1047, 1084, 1192, 1364, 1566, 1782, 1951, 2016, 1926, 1968, 2060, 2016, 1872, 1655, 1449, 1278, 1150, 1109, 1137, 1242, 1415, 1609, 1808, 1970, 2002, 1904, 1934, 2027, 2034, 1921, 1721, 1541, 1372, 1253, 1212, 1241, 1340, 1500, 1672, 1857, 1982, 1996, 1871, 1895, 2021, 2051, 1967, 1811, 1639, 1491, 1380, 1334, 1365, 1460, 1594, 1763, 1914, 2003, 1982, 1833, 1817, 1975, 2038, 2008, 1891, 1754, 1628, 1529, 1490, 1516, 1594, 1718, 1848, 1968, 2013, 1943, 1752, 1700, 1922, 2020, 2041, 1973, 1877, 1759, 1681, 1657, 1659, 1734, 1834, 1929, 1992, 1982, 1878, 1636, 1486, 1821, 1976, 2026, 2010, 1962, 1882, 1829, 1814, 1820, 1867, 1935, 1975, 1989, 1938, 1791, 1449, 1076, 1678, 1866, 1985, 2019, 2003, 1988, 1945, 1933, 1956, 1959, 2003, 2000, 1972, 1872, 1640, 1072]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1091, 1691, 1933, 2048, 2073, 2060, 2031, 2003, 1984, 1969, 2019, 2029, 2021, 1974, 1868, 1668, 1072, 1491, 1860, 2019, 2075, 2061, 2015, 1955, 1897, 1876, 1892, 1934, 1992, 2024, 2022, 1958, 1810, 1470, 1732, 1957, 2049, 2068, 2015, 1924, 1830, 1753, 1715, 1741, 1798, 1898, 1969, 2018, 2002, 1898, 1647, 1858, 2017, 2086, 2065, 1949, 1816, 1684, 1595, 1552, 1585, 1662, 1777, 1903, 1993, 2027, 1957, 1759, 1917, 2043, 2073, 1997, 1863, 1685, 1550, 1436, 1398, 1425, 1514, 1652, 1799, 1932, 2017, 1990, 1823, 1955, 2063, 2055, 1934, 1771, 1585, 1416, 1293, 1254, 1287, 1383, 1537, 1715, 1874, 1984, 1992, 1873, 1977, 2055, 2029, 1889, 1686, 1485, 1318, 1190, 1137, 1168, 1282, 1443, 1626, 1824, 1966, 2004, 1870, 1993, 2043, 2010, 1847, 1625, 1419, 1238, 1112, 1067, 1098, 1203, 1381, 1568, 1785, 1943, 1994, 1886, 1980, 2048, 2001, 1830, 1601, 1384, 1212, 1080, 1024, 1066, 1176, 1347, 1549, 1753, 1925, 1992, 1899, 1979, 2050, 1987, 1838, 1607, 1396, 1223, 1095, 1046, 1077, 1189, 1362, 1559, 1772, 1922, 1994, 1875, 1957, 2042, 2012, 1869, 1650, 1443, 1276, 1155, 1102, 1136, 1246, 1414, 1598, 1793, 1945, 1980, 1870, 1916, 2030, 2031, 1903, 1719, 1537, 1371, 1249, 1211, 1234, 1337, 1495, 1662, 1846, 1967, 1985, 1861, 1877, 2016, 2035, 1964, 1804, 1637, 1489, 1381, 1338, 1360, 1453, 1593, 1753, 1901, 1987, 1971, 1811, 1819, 1970, 2046, 1999, 1898, 1752, 1630, 1531, 1487, 1516, 1596, 1720, 1846, 1949, 1997, 1939, 1737, 1690, 1911, 2022, 2031, 1969, 1869, 1773, 1679, 1655, 1669, 1740, 1828, 1932, 1983, 1971, 1862, 1627, 1487, 1822, 1971, 2028, 2024, 1954, 1884, 1826, 1806, 1813, 1865, 1927, 1982, 1985, 1927, 1781, 1435, 1073, 1663, 1880, 1980, 2021, 2005, 1973, 1963, 1940, 1916, 1967, 1987, 1984, 1967, 1849, 1626, 1071]
| },
| "lsc_samples_blue": {
| "uCoeff": [1087, 1637, 1843, 1926, 1949, 1950, 1903, 1883, 1887, 1874, 1894, 1940, 1949, 1915, 1822, 1611, 1075, 1433, 1759, 1880, 1939, 1944, 1879, 1832, 1788, 1753, 1765, 1816, 1879, 1925, 1928, 1860, 1740, 1439, 1645, 1830, 1930, 1936, 1884, 1803, 1728, 1647, 1623, 1634, 1713, 1796, 1866, 1927, 1909, 1820, 1610, 1755, 1871, 1944, 1917, 1818, 1718, 1586, 1521, 1484, 1500, 1579, 1690, 1810, 1898, 1904, 1851, 1708, 1786, 1905, 1921, 1861, 1749, 1597, 1480, 1384, 1349, 1363, 1450, 1574, 1714, 1836, 1902, 1875, 1767, 1866, 1901, 1897, 1810, 1661, 1511, 1366, 1262, 1218, 1251, 1328, 1474, 1611, 1771, 1861, 1882, 1786, 1841, 1913, 1874, 1756, 1590, 1416, 1269, 1164, 1126, 1160, 1236, 1383, 1544, 1713, 1832, 1875, 1793, 1868, 1894, 1845, 1722, 1533, 1360, 1211, 1115, 1070, 1089, 1174, 1327, 1485, 1675, 1828, 1866, 1838, 1861, 1884, 1835, 1700, 1515, 1329, 1179, 1070, 1024, 1062, 1153, 1277, 1473, 1647, 1811, 1857, 1831, 1848, 1884, 1828, 1708, 1507, 1347, 1191, 1083, 1053, 1072, 1158, 1298, 1475, 1655, 1804, 1866, 1801, 1831, 1875, 1857, 1720, 1538, 1379, 1229, 1129, 1094, 1120, 1215, 1341, 1506, 1666, 1832, 1875, 1793, 1805, 1872, 1861, 1764, 1611, 1455, 1308, 1208, 1167, 1195, 1277, 1416, 1570, 1734, 1844, 1863, 1768, 1758, 1866, 1865, 1803, 1686, 1540, 1403, 1313, 1273, 1301, 1376, 1518, 1641, 1780, 1865, 1838, 1749, 1690, 1823, 1885, 1855, 1764, 1625, 1502, 1421, 1398, 1421, 1492, 1607, 1720, 1837, 1876, 1823, 1690, 1602, 1764, 1861, 1880, 1816, 1721, 1616, 1557, 1525, 1546, 1610, 1707, 1808, 1862, 1861, 1773, 1578, 1426, 1695, 1822, 1861, 1843, 1788, 1748, 1667, 1650, 1667, 1719, 1797, 1851, 1853, 1831, 1703, 1426, 1070, 1594, 1764, 1855, 1871, 1893, 1825, 1791, 1803, 1799, 1833, 1865, 1880, 1845, 1773, 1586, 1068]
| }
| }, {
| "name": "8192x6144_D75_100",
| "resolution": "8192x6144",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8017, 5319, 4360, 3761, 3361, 3038, 2848, 2735, 2664, 2664, 2848, 3016, 3307, 3660, 4182, 5120, 6395, 5849, 4604, 3904, 3361, 2972, 2699, 2472, 2318, 2305, 2318, 2472, 2681, 2951, 3281, 3761, 4454, 5610, 5389, 4182, 3534, 3084, 2664, 2399, 2160, 2002, 1945, 2002, 2126, 2358, 2613, 2972, 3475, 3979, 5120, 4764, 3796, 3281, 2848, 2442, 2126, 1874, 1739, 1689, 1725, 1866, 2083, 2385, 2735, 3179, 3693, 4406, 4360, 3565, 3038, 2597, 2230, 1891, 1675, 1532, 1466, 1509, 1642, 1866, 2148, 2517, 2951, 3445, 4099, 4182, 3417, 2848, 2428, 2032, 1717, 1493, 1346, 1295, 1333, 1466, 1669, 1954, 2372, 2772, 3307, 3867, 3941, 3281, 2753, 2305, 1874, 1573, 1355, 1218, 1163, 1197, 1324, 1543, 1808, 2206, 2681, 3130, 3727, 3867, 3179, 2681, 2194, 1792, 1487, 1263, 1131, 1067, 1101, 1233, 1440, 1732, 2126, 2564, 3084, 3693, 3831, 3155, 2613, 2148, 1754, 1445, 1229, 1092, 1024, 1072, 1194, 1392, 1696, 2073, 2548, 3038, 3628, 3867, 3179, 2597, 2171, 1777, 1456, 1248, 1098, 1053, 1089, 1215, 1425, 1696, 2094, 2564, 3084, 3660, 3867, 3204, 2699, 2255, 1832, 1537, 1316, 1176, 1122, 1160, 1283, 1493, 1769, 2171, 2630, 3155, 3693, 4058, 3361, 2829, 2399, 1982, 1655, 1430, 1287, 1237, 1267, 1396, 1610, 1909, 2279, 2753, 3255, 3867, 4269, 3475, 2951, 2517, 2126, 1824, 1585, 1445, 1392, 1430, 1549, 1769, 2062, 2442, 2909, 3417, 4019, 4604, 3693, 3179, 2735, 2344, 2032, 1800, 1662, 1597, 1635, 1754, 1982, 2279, 2646, 3061, 3597, 4314, 5120, 4019, 3389, 2951, 2580, 2279, 2032, 1874, 1840, 1883, 2012, 2242, 2532, 2889, 3334, 3867, 4820, 5766, 4406, 3660, 3229, 2848, 2564, 2344, 2183, 2137, 2194, 2318, 2532, 2829, 3155, 3597, 4269, 5389, 6203, 5057, 4019, 3534, 3179, 2930, 2716, 2564, 2532, 2564, 2699, 2889, 3179, 3534, 4019, 4996, 5849]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7663, 5164, 4268, 3599, 3182, 2933, 2669, 2601, 2483, 2536, 2649, 2851, 3099, 3410, 4027, 4915, 6040, 5568, 4483, 3751, 3240, 2885, 2592, 2368, 2241, 2193, 2220, 2352, 2564, 2817, 3154, 3599, 4242, 5482, 5091, 4027, 3410, 2945, 2592, 2299, 2084, 1937, 1890, 1906, 2048, 2255, 2518, 2839, 3299, 3832, 4751, 4628, 3674, 3154, 2731, 2337, 2054, 1823, 1689, 1638, 1669, 1795, 2008, 2284, 2630, 3046, 3546, 4294, 4294, 3460, 2945, 2518, 2134, 1837, 1623, 1485, 1437, 1470, 1587, 1791, 2066, 2432, 2851, 3346, 3960, 3982, 3299, 2773, 2352, 1969, 1673, 1458, 1313, 1259, 1305, 1428, 1620, 1901, 2299, 2700, 3168, 3771, 3811, 3182, 2669, 2220, 1837, 1543, 1340, 1192, 1148, 1180, 1296, 1500, 1773, 2140, 2592, 3072, 3636, 3751, 3085, 2582, 2160, 1760, 1460, 1248, 1114, 1065, 1098, 1214, 1423, 1697, 2066, 2501, 2970, 3511, 3693, 3059, 2573, 2109, 1717, 1425, 1214, 1083, 1024, 1065, 1182, 1387, 1654, 2019, 2466, 2945, 3443, 3655, 3085, 2564, 2121, 1730, 1446, 1233, 1096, 1047, 1078, 1196, 1397, 1673, 2042, 2492, 2970, 3494, 3731, 3126, 2630, 2193, 1786, 1500, 1286, 1157, 1110, 1139, 1261, 1454, 1738, 2109, 2545, 3020, 3581, 3895, 3254, 2752, 2292, 1916, 1620, 1409, 1273, 1214, 1246, 1368, 1570, 1846, 2213, 2669, 3126, 3693, 4120, 3378, 2874, 2458, 2060, 1773, 1549, 1425, 1365, 1397, 1520, 1726, 2013, 2368, 2795, 3269, 3873, 4454, 3581, 3072, 2640, 2270, 1969, 1747, 1609, 1566, 1598, 1713, 1921, 2213, 2564, 2970, 3477, 4168, 4950, 3853, 3299, 2885, 2527, 2220, 1991, 1846, 1800, 1842, 1969, 2180, 2441, 2806, 3210, 3731, 4658, 5482, 4242, 3581, 3140, 2762, 2501, 2292, 2153, 2090, 2121, 2255, 2458, 2741, 3059, 3494, 4120, 5127, 5989, 4984, 3938, 3477, 3099, 2795, 2611, 2466, 2458, 2449, 2564, 2795, 3033, 3427, 3938, 4720, 5842]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7630, 5069, 4150, 3530, 3211, 2908, 2709, 2581, 2525, 2562, 2678, 2838, 3085, 3412, 3942, 4860, 5865, 5501, 4435, 3677, 3226, 2873, 2599, 2373, 2253, 2190, 2218, 2365, 2553, 2794, 3112, 3548, 4224, 5296, 4963, 4009, 3379, 2932, 2581, 2297, 2087, 1934, 1887, 1913, 2051, 2246, 2508, 2816, 3255, 3795, 4638, 4491, 3658, 3126, 2698, 2342, 2039, 1824, 1674, 1639, 1666, 1792, 1988, 2267, 2609, 3020, 3496, 4150, 4126, 3395, 2920, 2499, 2131, 1820, 1616, 1475, 1425, 1463, 1580, 1774, 2051, 2389, 2816, 3240, 3899, 3942, 3270, 2750, 2312, 1950, 1654, 1439, 1309, 1256, 1297, 1411, 1609, 1882, 2246, 2638, 3112, 3639, 3775, 3126, 2648, 2197, 1815, 1526, 1324, 1189, 1139, 1171, 1290, 1478, 1752, 2106, 2534, 3020, 3479, 3677, 3020, 2562, 2112, 1731, 1448, 1243, 1111, 1061, 1092, 1205, 1408, 1670, 2033, 2447, 2932, 3412, 3566, 3007, 2516, 2075, 1686, 1414, 1201, 1077, 1024, 1058, 1171, 1370, 1631, 1993, 2414, 2908, 3347, 3621, 3046, 2544, 2075, 1710, 1428, 1215, 1090, 1039, 1069, 1187, 1378, 1643, 1999, 2447, 2908, 3395, 3677, 3099, 2590, 2170, 1770, 1488, 1279, 1148, 1099, 1132, 1249, 1442, 1702, 2069, 2490, 2982, 3462, 3775, 3197, 2719, 2260, 1892, 1606, 1394, 1258, 1211, 1241, 1352, 1553, 1820, 2183, 2609, 3072, 3621, 4032, 3316, 2838, 2414, 2057, 1752, 1553, 1414, 1359, 1391, 1503, 1702, 1982, 2334, 2750, 3240, 3836, 4354, 3530, 3046, 2619, 2267, 1971, 1748, 1606, 1567, 1595, 1710, 1903, 2177, 2534, 2932, 3395, 4055, 4860, 3815, 3255, 2850, 2508, 2218, 1988, 1843, 1801, 1829, 1960, 2150, 2439, 2750, 3154, 3677, 4520, 5376, 4199, 3530, 3126, 2750, 2490, 2274, 2144, 2081, 2118, 2253, 2447, 2709, 3033, 3462, 4055, 5033, 6065, 4828, 3964, 3462, 3072, 2805, 2619, 2473, 2439, 2455, 2581, 2783, 3033, 3363, 3857, 4638, 5632]
| },
| "lsc_samples_blue": {
| "uCoeff": [6855, 4490, 3755, 3205, 2897, 2657, 2441, 2335, 2335, 2369, 2441, 2628, 2879, 3205, 3669, 4490, 5716, 4952, 3907, 3270, 2897, 2585, 2335, 2167, 2030, 1996, 2021, 2128, 2323, 2558, 2862, 3248, 3876, 4901, 4448, 3483, 2986, 2657, 2323, 2082, 1901, 1782, 1724, 1762, 1886, 2056, 2301, 2628, 2968, 3433, 4328, 4038, 3248, 2812, 2441, 2128, 1872, 1700, 1567, 1532, 1562, 1665, 1843, 2100, 2405, 2748, 3205, 3907, 3697, 3005, 2599, 2258, 1956, 1700, 1513, 1399, 1352, 1387, 1485, 1665, 1901, 2206, 2585, 2968, 3614, 3458, 2862, 2441, 2100, 1795, 1547, 1371, 1266, 1215, 1243, 1344, 1518, 1762, 2064, 2405, 2812, 3385, 3338, 2748, 2346, 1971, 1676, 1436, 1270, 1160, 1119, 1140, 1240, 1403, 1625, 1940, 2312, 2717, 3248, 3270, 2702, 2290, 1917, 1598, 1367, 1206, 1094, 1053, 1077, 1165, 1329, 1562, 1865, 2237, 2657, 3184, 3205, 2671, 2248, 1886, 1562, 1337, 1174, 1065, 1024, 1046, 1143, 1294, 1518, 1836, 2206, 2613, 3163, 3226, 2657, 2258, 1886, 1593, 1344, 1185, 1077, 1039, 1062, 1151, 1301, 1537, 1850, 2227, 2657, 3142, 3270, 2702, 2312, 1956, 1642, 1395, 1224, 1124, 1074, 1111, 1203, 1363, 1583, 1886, 2279, 2702, 3226, 3433, 2796, 2405, 2038, 1724, 1485, 1318, 1209, 1162, 1185, 1287, 1441, 1682, 1996, 2369, 2779, 3361, 3560, 2932, 2544, 2176, 1865, 1615, 1432, 1318, 1273, 1304, 1403, 1567, 1815, 2157, 2492, 2932, 3534, 3814, 3082, 2671, 2346, 2038, 1788, 1583, 1467, 1436, 1458, 1562, 1737, 1996, 2301, 2671, 3102, 3814, 4215, 3315, 2862, 2531, 2227, 1980, 1775, 1671, 1620, 1653, 1762, 1948, 2206, 2505, 2879, 3361, 4142, 4756, 3669, 3062, 2748, 2429, 2217, 2030, 1901, 1843, 1886, 2004, 2196, 2441, 2748, 3122, 3669, 4664, 5277, 4290, 3509, 3062, 2732, 2518, 2301, 2206, 2196, 2206, 2335, 2505, 2764, 3122, 3433, 4368, 5396]
| }
| }, {
| "name": "8192x6144_D75_1",
| "resolution": "8192x6144",
| "illumination": "D75",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1094, 1729, 1977, 2087, 2131, 2113, 2099, 2083, 2055, 2039, 2099, 2101, 2105, 2048, 1926, 1696, 1078, 1513, 1894, 2073, 2118, 2104, 2068, 1998, 1933, 1937, 1933, 1998, 2056, 2093, 2081, 2021, 1858, 1489, 1771, 2007, 2111, 2133, 2051, 1981, 1872, 1784, 1749, 1784, 1846, 1952, 2019, 2073, 2086, 1943, 1725, 1881, 2047, 2134, 2116, 1999, 1860, 1712, 1625, 1590, 1613, 1705, 1827, 1960, 2048, 2084, 2009, 1799, 1945, 2082, 2113, 2044, 1915, 1726, 1585, 1478, 1424, 1457, 1557, 1706, 1854, 1992, 2066, 2032, 1873, 2012, 2110, 2080, 1989, 1809, 1614, 1448, 1325, 1280, 1313, 1423, 1573, 1748, 1951, 2036, 2060, 1914, 2013, 2109, 2073, 1941, 1710, 1507, 1333, 1211, 1160, 1191, 1304, 1481, 1657, 1870, 2029, 2036, 1941, 2033, 2095, 2056, 1881, 1657, 1440, 1251, 1129, 1067, 1100, 1223, 1398, 1608, 1832, 1983, 2047, 1971, 2035, 2094, 2023, 1854, 1630, 1405, 1220, 1091, 1024, 1071, 1187, 1357, 1582, 1799, 1982, 2035, 1962, 2033, 2095, 2004, 1865, 1645, 1412, 1237, 1097, 1053, 1088, 1206, 1384, 1578, 1808, 1983, 2047, 1960, 1988, 2072, 2040, 1905, 1676, 1476, 1296, 1171, 1120, 1155, 1266, 1437, 1626, 1845, 1998, 2048, 1929, 1973, 2085, 2069, 1969, 1770, 1561, 1391, 1270, 1225, 1251, 1360, 1523, 1713, 1887, 2025, 2037, 1914, 1920, 2045, 2066, 1992, 1838, 1672, 1508, 1400, 1357, 1387, 1476, 1627, 1791, 1943, 2043, 2021, 1851, 1844, 2009, 2084, 2048, 1932, 1788, 1652, 1560, 1512, 1537, 1615, 1750, 1887, 1995, 2026, 1973, 1778, 1725, 1956, 2048, 2061, 1998, 1897, 1776, 1684, 1666, 1691, 1761, 1871, 1968, 2028, 2024, 1909, 1674, 1504, 1846, 1984, 2056, 2036, 1983, 1912, 1838, 1817, 1846, 1894, 1964, 2025, 2022, 1961, 1813, 1466, 1076, 1686, 1879, 1999, 2044, 2055, 2021, 1977, 1972, 1977, 2011, 2032, 2044, 1999, 1879, 1676, 1072]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1090, 1704, 1950, 2024, 2046, 2056, 1993, 2000, 1941, 1960, 1982, 2012, 2006, 1950, 1881, 1663, 1074, 1484, 1865, 2017, 2061, 2056, 2001, 1928, 1879, 1857, 1864, 1917, 1983, 2018, 2021, 1962, 1806, 1476, 1720, 1958, 2057, 2058, 2006, 1911, 1815, 1733, 1705, 1709, 1788, 1880, 1959, 2001, 2009, 1898, 1662, 1850, 2002, 2072, 2046, 1927, 1805, 1671, 1583, 1546, 1566, 1648, 1770, 1890, 1985, 2019, 1954, 1773, 1927, 2039, 2063, 1993, 1844, 1683, 1540, 1436, 1397, 1422, 1509, 1645, 1794, 1937, 2012, 1991, 1835, 1949, 2057, 2037, 1937, 1760, 1576, 1416, 1294, 1246, 1287, 1389, 1531, 1707, 1901, 1994, 1997, 1883, 1969, 2061, 2022, 1880, 1680, 1481, 1319, 1186, 1145, 1175, 1278, 1443, 1629, 1823, 1975, 2008, 1910, 1992, 2048, 1995, 1856, 1631, 1416, 1237, 1112, 1065, 1097, 1205, 1382, 1579, 1788, 1944, 1991, 1907, 1985, 2046, 1998, 1825, 1600, 1386, 1206, 1082, 1024, 1065, 1175, 1352, 1547, 1759, 1930, 1989, 1895, 1958, 2048, 1983, 1828, 1606, 1403, 1223, 1095, 1047, 1077, 1188, 1359, 1559, 1770, 1939, 1991, 1901, 1942, 2034, 1998, 1861, 1639, 1443, 1268, 1152, 1108, 1135, 1245, 1402, 1601, 1801, 1946, 1983, 1891, 1922, 2036, 2024, 1896, 1718, 1531, 1372, 1257, 1204, 1232, 1335, 1489, 1664, 1841, 1976, 1978, 1859, 1879, 2005, 2024, 1954, 1789, 1631, 1476, 1382, 1332, 1357, 1451, 1593, 1754, 1895, 1982, 1959, 1811, 1810, 1967, 2032, 1991, 1881, 1740, 1609, 1516, 1485, 1506, 1582, 1704, 1841, 1946, 1981, 1929, 1744, 1696, 1904, 2009, 2026, 1965, 1856, 1745, 1662, 1635, 1659, 1729, 1828, 1911, 1983, 1971, 1866, 1646, 1476, 1806, 1955, 2015, 1988, 1944, 1877, 1817, 1784, 1795, 1852, 1917, 1976, 1977, 1924, 1777, 1440, 1074, 1674, 1856, 1977, 2006, 1982, 1959, 1916, 1925, 1906, 1932, 1982, 1975, 1957, 1856, 1631, 1072]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1090, 1688, 1917, 1997, 2060, 2043, 2017, 1987, 1967, 1976, 1999, 2005, 2000, 1951, 1857, 1654, 1072, 1478, 1853, 1990, 2055, 2049, 2005, 1931, 1887, 1855, 1863, 1926, 1977, 2006, 2001, 1943, 1802, 1457, 1698, 1953, 2044, 2051, 1999, 1910, 1817, 1731, 1703, 1714, 1790, 1874, 1953, 1989, 1990, 1886, 1643, 1818, 1996, 2058, 2026, 1930, 1794, 1671, 1570, 1547, 1564, 1646, 1755, 1879, 1973, 2006, 1936, 1740, 1881, 2012, 2049, 1980, 1842, 1669, 1534, 1427, 1386, 1416, 1503, 1632, 1782, 1909, 1993, 1947, 1818, 1937, 2043, 2023, 1910, 1745, 1560, 1399, 1290, 1243, 1279, 1374, 1522, 1692, 1864, 1958, 1972, 1842, 1957, 2034, 2009, 1864, 1663, 1466, 1304, 1183, 1136, 1166, 1272, 1424, 1612, 1798, 1940, 1983, 1857, 1966, 2016, 1982, 1821, 1607, 1405, 1232, 1110, 1061, 1091, 1196, 1369, 1557, 1763, 1911, 1972, 1871, 1940, 2020, 1962, 1800, 1574, 1377, 1193, 1076, 1024, 1058, 1165, 1337, 1528, 1740, 1898, 1970, 1861, 1946, 2028, 1971, 1794, 1590, 1387, 1206, 1089, 1039, 1068, 1179, 1342, 1535, 1738, 1911, 1960, 1865, 1924, 2021, 1974, 1844, 1626, 1432, 1262, 1144, 1097, 1128, 1234, 1392, 1571, 1772, 1913, 1965, 1851, 1885, 2010, 2005, 1874, 1700, 1519, 1358, 1243, 1201, 1227, 1320, 1474, 1644, 1821, 1942, 1953, 1837, 1855, 1979, 2005, 1925, 1787, 1614, 1480, 1372, 1327, 1352, 1437, 1573, 1731, 1873, 1957, 1947, 1801, 1787, 1949, 2019, 1979, 1879, 1742, 1610, 1513, 1486, 1504, 1579, 1690, 1817, 1928, 1963, 1899, 1718, 1681, 1892, 1990, 2007, 1953, 1855, 1743, 1660, 1635, 1649, 1722, 1807, 1910, 1953, 1947, 1849, 1623, 1465, 1796, 1937, 2008, 1981, 1937, 1865, 1811, 1777, 1793, 1851, 1911, 1959, 1964, 1912, 1761, 1430, 1074, 1648, 1863, 1971, 1994, 1987, 1964, 1921, 1913, 1909, 1942, 1975, 1975, 1932, 1833, 1617, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1082, 1593, 1804, 1871, 1911, 1907, 1859, 1835, 1848, 1856, 1859, 1891, 1902, 1871, 1779, 1593, 1071, 1422, 1725, 1842, 1901, 1890, 1841, 1793, 1731, 1717, 1724, 1767, 1833, 1875, 1884, 1834, 1717, 1417, 1610, 1789, 1874, 1903, 1837, 1760, 1678, 1613, 1575, 1597, 1667, 1742, 1824, 1887, 1866, 1774, 1590, 1715, 1845, 1904, 1872, 1783, 1667, 1571, 1480, 1456, 1476, 1543, 1645, 1764, 1850, 1872, 1829, 1685, 1762, 1849, 1876, 1824, 1712, 1572, 1445, 1359, 1320, 1348, 1421, 1543, 1672, 1790, 1868, 1834, 1739, 1786, 1858, 1844, 1764, 1624, 1469, 1337, 1250, 1205, 1229, 1313, 1444, 1599, 1739, 1824, 1835, 1763, 1809, 1853, 1826, 1702, 1550, 1387, 1254, 1155, 1117, 1136, 1226, 1358, 1509, 1680, 1805, 1838, 1778, 1821, 1858, 1813, 1678, 1497, 1332, 1197, 1093, 1053, 1076, 1158, 1298, 1468, 1640, 1780, 1835, 1791, 1810, 1851, 1793, 1661, 1471, 1307, 1168, 1065, 1024, 1046, 1138, 1268, 1434, 1624, 1767, 1822, 1794, 1805, 1835, 1793, 1656, 1493, 1311, 1177, 1076, 1039, 1061, 1145, 1273, 1447, 1629, 1774, 1835, 1776, 1786, 1831, 1805, 1691, 1523, 1351, 1211, 1121, 1073, 1108, 1191, 1322, 1475, 1641, 1785, 1831, 1771, 1778, 1828, 1824, 1721, 1569, 1416, 1290, 1197, 1154, 1175, 1262, 1379, 1536, 1692, 1803, 1821, 1755, 1724, 1819, 1846, 1771, 1645, 1503, 1376, 1287, 1249, 1274, 1351, 1464, 1608, 1759, 1818, 1819, 1717, 1663, 1783, 1834, 1815, 1721, 1603, 1476, 1396, 1375, 1389, 1459, 1565, 1692, 1788, 1834, 1791, 1663, 1570, 1737, 1820, 1835, 1777, 1689, 1584, 1526, 1493, 1513, 1575, 1667, 1764, 1821, 1827, 1751, 1558, 1402, 1667, 1766, 1831, 1803, 1767, 1701, 1640, 1608, 1630, 1683, 1754, 1810, 1831, 1788, 1667, 1393, 1067, 1560, 1734, 1815, 1833, 1832, 1777, 1755, 1761, 1755, 1797, 1825, 1848, 1839, 1712, 1573, 1068]
| }
| }, {
| "name": "8192x6144_HZ_100",
| "resolution": "8192x6144",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 6289, 5208, 4394, 3934, 3593, 3292, 3160, 3110, 3160, 3279, 3576, 3783, 4252, 4946, 6142, 7704, 6895, 5461, 4547, 3953, 3528, 3110, 2872, 2695, 2606, 2668, 2821, 3074, 3392, 3857, 4394, 5243, 6895, 6240, 4916, 4141, 3576, 3110, 2733, 2452, 2249, 2193, 2255, 2407, 2668, 3027, 3513, 3994, 4654, 5912, 5739, 4495, 3819, 3306, 2781, 2400, 2088, 1902, 1839, 1892, 2072, 2336, 2714, 3199, 3765, 4370, 5349, 5208, 4229, 3576, 3015, 2531, 2105, 1814, 1620, 1559, 1607, 1769, 2050, 2422, 2904, 3497, 4141, 4978, 4916, 4014, 3406, 2791, 2282, 1870, 1587, 1401, 1332, 1384, 1541, 1818, 2205, 2714, 3279, 3934, 4767, 4710, 3857, 3238, 2632, 2094, 1693, 1414, 1238, 1175, 1219, 1377, 1633, 2008, 2539, 3098, 3747, 4573, 4627, 3747, 3110, 2507, 1973, 1575, 1312, 1130, 1060, 1111, 1262, 1523, 1888, 2414, 3038, 3694, 4521, 4547, 3729, 3074, 2452, 1925, 1532, 1262, 1092, 1024, 1071, 1223, 1486, 1848, 2378, 2981, 3677, 4419, 4573, 3747, 3123, 2475, 1944, 1559, 1276, 1108, 1050, 1100, 1248, 1505, 1888, 2385, 3004, 3694, 4419, 4627, 3819, 3173, 2572, 2034, 1647, 1369, 1186, 1125, 1170, 1335, 1587, 1963, 2483, 3098, 3729, 4469, 4796, 3953, 3320, 2714, 2199, 1789, 1511, 1335, 1266, 1312, 1469, 1746, 2122, 2641, 3252, 3895, 4710, 5041, 4141, 3482, 2936, 2437, 2008, 1711, 1532, 1474, 1517, 1668, 1963, 2322, 2841, 3436, 4076, 4916, 5423, 4370, 3729, 3173, 2686, 2288, 1988, 1802, 1742, 1785, 1944, 2230, 2615, 3110, 3677, 4298, 5278, 6048, 4682, 3973, 3466, 3015, 2615, 2322, 2116, 2072, 2116, 2302, 2555, 2959, 3406, 3934, 4627, 5781, 6776, 5174, 4298, 3783, 3348, 2992, 2723, 2531, 2475, 2523, 2668, 2959, 3292, 3765, 4252, 5107, 6605, 7210, 6001, 4825, 4184, 3819, 3451, 3212, 3004, 2992, 3015, 3186, 3421, 3729, 4229, 4796, 5868, 7277]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7896, 5406, 4445, 3822, 3409, 3077, 2871, 2740, 2679, 2703, 2830, 3031, 3352, 3704, 4286, 5129, 6522, 5826, 4725, 3922, 3409, 3000, 2703, 2480, 2362, 2308, 2344, 2469, 2691, 2971, 3315, 3774, 4478, 5608, 5406, 4196, 3551, 3125, 2727, 2420, 2182, 2020, 1967, 2014, 2151, 2381, 2655, 3015, 3449, 4000, 5001, 4839, 3871, 3279, 2830, 2459, 2135, 1905, 1749, 1705, 1739, 1869, 2105, 2391, 2753, 3209, 3727, 4512, 4478, 3615, 3093, 2632, 2231, 1899, 1667, 1527, 1471, 1511, 1644, 1864, 2166, 2553, 2971, 3489, 4226, 4196, 3429, 2913, 2439, 2034, 1734, 1482, 1336, 1288, 1322, 1464, 1676, 1980, 2372, 2804, 3315, 3897, 3974, 3279, 2791, 2308, 1905, 1575, 1348, 1198, 1147, 1184, 1313, 1535, 1835, 2214, 2691, 3192, 3750, 3897, 3261, 2691, 2222, 1807, 1489, 1263, 1117, 1064, 1103, 1232, 1446, 1755, 2143, 2609, 3125, 3704, 3822, 3192, 2655, 2182, 1765, 1453, 1227, 1083, 1024, 1062, 1195, 1419, 1710, 2105, 2586, 3109, 3659, 3846, 3209, 2679, 2198, 1786, 1482, 1245, 1097, 1045, 1083, 1215, 1429, 1734, 2120, 2598, 3142, 3682, 3922, 3279, 2727, 2282, 1852, 1539, 1307, 1165, 1113, 1152, 1282, 1500, 1802, 2198, 2667, 3175, 3798, 4027, 3390, 2844, 2391, 1987, 1662, 1432, 1279, 1232, 1274, 1402, 1626, 1923, 2308, 2778, 3315, 3897, 4256, 3509, 3015, 2564, 2151, 1835, 1604, 1460, 1405, 1442, 1575, 1781, 2098, 2490, 2971, 3469, 4082, 4688, 3750, 3226, 2753, 2362, 2055, 1824, 1681, 1626, 1667, 1791, 2007, 2317, 2715, 3142, 3659, 4445, 5173, 4082, 3429, 3046, 2667, 2344, 2091, 1948, 1905, 1923, 2076, 2290, 2575, 2985, 3390, 3948, 4878, 5883, 4512, 3774, 3297, 2927, 2643, 2420, 2247, 2231, 2247, 2381, 2609, 2899, 3244, 3659, 4380, 5505, 6594, 5264, 4286, 3704, 3297, 3000, 2817, 2679, 2609, 2620, 2804, 3000, 3261, 3615, 4167, 5086, 6250]
| },
| "lsc_samples_greenB": {
| "uCoeff": [8015, 5465, 4453, 3781, 3377, 3021, 2835, 2672, 2636, 2660, 2757, 3021, 3267, 3643, 4233, 5094, 6328, 5893, 4733, 3954, 3396, 3006, 2708, 2474, 2330, 2268, 2312, 2434, 2683, 2947, 3303, 3757, 4486, 5725, 5415, 4233, 3578, 3115, 2683, 2414, 2162, 2017, 1952, 1997, 2139, 2357, 2625, 2990, 3435, 4034, 4968, 4887, 3853, 3303, 2849, 2453, 2132, 1890, 1742, 1693, 1722, 1867, 2080, 2385, 2757, 3232, 3733, 4624, 4486, 3621, 3115, 2648, 2226, 1902, 1665, 1507, 1462, 1499, 1647, 1855, 2162, 2536, 2976, 3455, 4174, 4204, 3455, 2947, 2453, 2052, 1727, 1481, 1339, 1279, 1318, 1452, 1670, 1977, 2366, 2809, 3303, 3954, 4034, 3377, 2796, 2330, 1908, 1582, 1348, 1200, 1143, 1186, 1310, 1533, 1822, 2235, 2708, 3197, 3757, 3954, 3267, 2720, 2226, 1816, 1495, 1268, 1119, 1056, 1101, 1227, 1441, 1752, 2162, 2625, 3147, 3688, 3903, 3214, 2696, 2202, 1773, 1455, 1224, 1085, 1024, 1066, 1195, 1408, 1717, 2109, 2591, 3115, 3688, 3929, 3249, 2708, 2218, 1800, 1477, 1244, 1099, 1047, 1083, 1209, 1424, 1737, 2124, 2602, 3131, 3688, 3981, 3285, 2757, 2286, 1861, 1541, 1315, 1158, 1109, 1147, 1268, 1488, 1784, 2194, 2683, 3180, 3711, 4145, 3396, 2890, 2395, 1990, 1665, 1438, 1268, 1229, 1260, 1395, 1616, 1920, 2312, 2796, 3303, 3929, 4387, 3578, 3036, 2591, 2155, 1833, 1599, 1441, 1395, 1435, 1565, 1773, 2087, 2484, 2947, 3455, 4089, 4733, 3781, 3249, 2783, 2376, 2059, 1822, 1660, 1616, 1642, 1778, 1997, 2312, 2683, 3147, 3643, 4387, 5182, 4089, 3435, 3021, 2648, 2312, 2080, 1920, 1878, 1908, 2045, 2268, 2569, 2947, 3358, 3954, 4848, 5893, 4520, 3757, 3303, 2918, 2614, 2385, 2235, 2170, 2218, 2339, 2591, 2849, 3232, 3665, 4356, 5367, 6395, 5227, 4204, 3665, 3232, 2976, 2732, 2591, 2536, 2591, 2720, 2932, 3232, 3643, 4117, 4887, 6072]
| },
| "lsc_samples_blue": {
| "uCoeff": [7879, 5199, 4300, 3600, 3301, 3003, 2753, 2679, 2609, 2609, 2716, 3003, 3301, 3600, 4122, 4942, 6168, 5642, 4495, 3736, 3196, 2872, 2575, 2419, 2254, 2204, 2254, 2361, 2609, 2872, 3145, 3536, 4300, 5487, 5199, 3958, 3414, 2958, 2575, 2306, 2111, 1965, 1890, 1945, 2088, 2306, 2575, 2914, 3248, 3736, 4822, 4495, 3666, 3096, 2716, 2361, 2088, 1855, 1711, 1654, 1726, 1821, 2025, 2306, 2643, 3049, 3475, 4300, 4209, 3357, 2872, 2479, 2156, 1872, 1627, 1504, 1449, 1493, 1627, 1821, 2111, 2419, 2792, 3301, 3958, 3958, 3248, 2716, 2333, 1965, 1682, 1460, 1342, 1273, 1315, 1428, 1641, 1890, 2254, 2643, 3145, 3666, 3736, 3049, 2609, 2204, 1837, 1551, 1342, 1196, 1148, 1182, 1306, 1493, 1772, 2088, 2542, 2958, 3536, 3600, 3003, 2510, 2111, 1726, 1471, 1249, 1116, 1068, 1085, 1218, 1418, 1696, 2025, 2479, 2914, 3475, 3666, 3049, 2510, 2111, 1696, 1428, 1211, 1074, 1024, 1062, 1168, 1369, 1654, 2025, 2419, 2872, 3414, 3600, 3049, 2542, 2088, 1726, 1428, 1211, 1080, 1046, 1074, 1175, 1388, 1668, 2004, 2448, 2914, 3475, 3736, 3049, 2542, 2156, 1772, 1504, 1281, 1148, 1097, 1135, 1241, 1449, 1711, 2067, 2479, 2958, 3536, 3881, 3145, 2716, 2254, 1890, 1601, 1398, 1249, 1211, 1241, 1360, 1563, 1837, 2180, 2609, 3096, 3666, 4039, 3301, 2832, 2389, 2067, 1756, 1527, 1388, 1351, 1379, 1515, 1711, 1984, 2333, 2753, 3196, 3881, 4495, 3475, 3003, 2575, 2254, 1945, 1726, 1588, 1551, 1588, 1711, 1908, 2180, 2542, 2914, 3414, 4039, 4822, 3736, 3248, 2832, 2479, 2180, 1945, 1804, 1772, 1788, 1945, 2133, 2448, 2792, 3145, 3666, 4707, 5642, 4122, 3414, 3096, 2716, 2448, 2229, 2088, 2025, 2111, 2180, 2448, 2679, 3003, 3475, 4039, 5067, 5983, 4942, 3958, 3475, 3049, 2792, 2609, 2510, 2419, 2448, 2609, 2832, 3049, 3475, 3881, 4707, 5983]
| }
| }, {
| "name": "8192x6144_HZ_1",
| "resolution": "8192x6144",
| "illumination": "HZ",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1102, 1888, 2219, 2333, 2402, 2413, 2361, 2346, 2335, 2346, 2353, 2404, 2330, 2277, 2144, 1864, 1091, 1619, 2103, 2307, 2395, 2413, 2324, 2267, 2198, 2151, 2179, 2233, 2301, 2337, 2350, 2252, 2050, 1619, 1917, 2235, 2374, 2398, 2330, 2213, 2089, 1975, 1944, 1980, 2056, 2168, 2278, 2364, 2310, 2153, 1861, 2104, 2305, 2399, 2390, 2232, 2067, 1885, 1762, 1717, 1753, 1872, 2019, 2186, 2326, 2373, 2258, 2015, 2180, 2359, 2404, 2315, 2137, 1900, 1705, 1556, 1508, 1545, 1666, 1855, 2056, 2243, 2361, 2322, 2116, 2242, 2381, 2403, 2239, 2003, 1744, 1533, 1376, 1315, 1361, 1491, 1700, 1943, 2186, 2329, 2345, 2195, 2274, 2386, 2367, 2175, 1888, 1613, 1388, 1231, 1171, 1212, 1353, 1560, 1819, 2108, 2282, 2333, 2228, 2303, 2377, 2324, 2111, 1807, 1519, 1298, 1128, 1060, 1110, 1250, 1472, 1737, 2043, 2279, 2350, 2265, 2293, 2382, 2313, 2079, 1772, 1483, 1252, 1091, 1024, 1070, 1214, 1442, 1708, 2024, 2254, 2356, 2247, 2284, 2377, 2332, 2087, 1783, 1504, 1264, 1107, 1050, 1099, 1237, 1456, 1737, 2021, 2258, 2350, 2229, 2246, 2367, 2327, 2132, 1840, 1572, 1346, 1180, 1123, 1165, 1314, 1520, 1782, 2068, 2282, 2324, 2192, 2204, 2353, 2353, 2186, 1939, 1675, 1464, 1315, 1253, 1293, 1426, 1638, 1879, 2136, 2314, 2327, 2177, 2134, 2322, 2353, 2264, 2068, 1821, 1616, 1478, 1431, 1464, 1579, 1785, 1983, 2202, 2328, 2295, 2099, 2032, 2258, 2355, 2310, 2167, 1982, 1804, 1678, 1635, 1664, 1769, 1938, 2118, 2272, 2329, 2232, 1999, 1884, 2162, 2301, 2338, 2271, 2131, 1992, 1872, 1849, 1872, 1978, 2089, 2236, 2306, 2284, 2145, 1839, 1607, 2033, 2217, 2316, 2313, 2250, 2167, 2083, 2058, 2077, 2130, 2230, 2282, 2307, 2200, 2016, 1589, 1086, 1841, 2109, 2251, 2347, 2336, 2313, 2249, 2261, 2256, 2298, 2320, 2305, 2269, 2101, 1819, 1087]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1093, 1743, 2001, 2110, 2153, 2134, 2112, 2086, 2064, 2063, 2088, 2109, 2126, 2065, 1955, 1698, 1079, 1511, 1924, 2080, 2140, 2120, 2070, 2003, 1964, 1939, 1951, 1996, 2063, 2104, 2096, 2026, 1864, 1488, 1774, 2011, 2118, 2155, 2090, 1995, 1888, 1798, 1766, 1793, 1865, 1968, 2045, 2096, 2074, 1950, 1705, 1898, 2074, 2133, 2105, 2011, 1866, 1737, 1633, 1603, 1625, 1708, 1844, 1964, 2059, 2099, 2021, 1823, 1978, 2103, 2143, 2067, 1915, 1733, 1578, 1473, 1428, 1459, 1558, 1704, 1867, 2015, 2077, 2051, 1908, 2016, 2116, 2118, 1997, 1810, 1628, 1438, 1316, 1274, 1303, 1421, 1579, 1768, 1951, 2054, 2064, 1923, 2024, 2108, 2096, 1943, 1735, 1509, 1326, 1192, 1144, 1178, 1294, 1474, 1679, 1876, 2035, 2066, 1948, 2044, 2135, 2063, 1902, 1670, 1442, 1251, 1115, 1064, 1102, 1222, 1403, 1627, 1844, 2012, 2068, 1975, 2032, 2113, 2049, 1879, 1640, 1412, 1218, 1082, 1024, 1062, 1188, 1381, 1594, 1822, 2006, 2071, 1973, 2026, 2109, 2055, 1884, 1653, 1435, 1234, 1096, 1045, 1082, 1206, 1388, 1610, 1827, 2005, 2076, 1967, 2007, 2108, 2057, 1924, 1693, 1477, 1288, 1160, 1111, 1148, 1265, 1443, 1652, 1864, 2020, 2058, 1965, 1964, 2098, 2078, 1964, 1774, 1567, 1393, 1262, 1221, 1258, 1365, 1536, 1724, 1907, 2039, 2064, 1923, 1917, 2059, 2101, 2022, 1856, 1681, 1524, 1413, 1368, 1397, 1499, 1637, 1817, 1974, 2077, 2042, 1869, 1863, 2030, 2107, 2059, 1944, 1806, 1671, 1576, 1536, 1564, 1645, 1769, 1913, 2036, 2066, 1996, 1808, 1734, 1975, 2066, 2112, 2053, 1942, 1820, 1742, 1717, 1722, 1809, 1905, 1995, 2080, 2049, 1934, 1684, 1516, 1872, 2026, 2088, 2079, 2033, 1963, 1883, 1884, 1883, 1937, 2012, 2064, 2063, 1984, 1840, 1478, 1080, 1720, 1955, 2065, 2100, 2092, 2081, 2048, 2020, 2011, 2073, 2092, 2083, 2030, 1921, 1691, 1076]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1094, 1753, 2003, 2095, 2138, 2104, 2091, 2044, 2037, 2036, 2045, 2104, 2086, 2041, 1940, 1692, 1077, 1517, 1926, 2091, 2134, 2123, 2073, 1999, 1942, 1911, 1929, 1972, 2058, 2091, 2091, 2020, 1866, 1500, 1776, 2022, 2130, 2150, 2063, 1991, 1873, 1795, 1754, 1780, 1856, 1951, 2026, 2082, 2068, 1961, 1699, 1909, 2068, 2145, 2116, 2007, 1864, 1725, 1627, 1593, 1611, 1706, 1825, 1960, 2061, 2110, 2023, 1849, 1980, 2106, 2155, 2077, 1912, 1735, 1576, 1455, 1420, 1448, 1561, 1697, 1864, 2004, 2079, 2037, 1894, 2019, 2127, 2137, 2007, 1824, 1622, 1437, 1319, 1265, 1299, 1411, 1574, 1766, 1947, 2057, 2058, 1941, 2045, 2155, 2099, 1959, 1738, 1515, 1326, 1194, 1140, 1180, 1291, 1472, 1668, 1891, 2045, 2068, 1951, 2064, 2138, 2081, 1905, 1677, 1447, 1256, 1117, 1056, 1100, 1217, 1398, 1625, 1858, 2021, 2079, 1969, 2061, 2124, 2075, 1894, 1646, 1414, 1215, 1084, 1024, 1066, 1188, 1371, 1600, 1825, 2009, 2074, 1983, 2055, 2129, 2073, 1899, 1664, 1431, 1233, 1098, 1047, 1082, 1200, 1383, 1612, 1830, 2007, 2071, 1969, 2027, 2111, 2075, 1927, 1700, 1479, 1296, 1153, 1107, 1143, 1252, 1432, 1638, 1861, 2030, 2060, 1935, 2000, 2101, 2104, 1967, 1776, 1569, 1398, 1252, 1218, 1245, 1359, 1528, 1722, 1910, 2050, 2058, 1933, 1953, 2088, 2112, 2040, 1859, 1679, 1520, 1397, 1359, 1391, 1490, 1631, 1809, 1971, 2064, 2037, 1871, 1874, 2041, 2119, 2077, 1954, 1809, 1670, 1559, 1528, 1543, 1634, 1762, 1910, 2017, 2069, 1990, 1794, 1736, 1978, 2068, 2099, 2041, 1920, 1812, 1720, 1696, 1711, 1786, 1889, 1991, 2059, 2035, 1936, 1679, 1517, 1874, 2020, 2091, 2074, 2015, 1939, 1875, 1841, 1863, 1908, 2000, 2036, 2058, 1986, 1834, 1464, 1078, 1714, 1932, 2050, 2069, 2079, 2031, 1994, 1974, 1994, 2023, 2056, 2069, 2041, 1907, 1658, 1074]
| },
| "lsc_samples_blue": {
| "uCoeff": [1093, 1709, 1959, 2024, 2102, 2094, 2043, 2048, 2020, 2005, 2021, 2094, 2102, 2024, 1909, 1667, 1075, 1492, 1868, 2012, 2041, 2049, 1990, 1962, 1888, 1865, 1888, 1923, 2012, 2049, 2017, 1939, 1820, 1476, 1739, 1937, 2059, 2065, 1995, 1916, 1835, 1755, 1705, 1739, 1818, 1916, 1995, 2041, 1987, 1868, 1674, 1819, 1999, 2043, 2037, 1943, 1831, 1697, 1601, 1560, 1614, 1669, 1783, 1905, 1993, 2020, 1928, 1775, 1904, 1996, 2023, 1967, 1860, 1711, 1544, 1453, 1408, 1443, 1544, 1670, 1827, 1928, 1980, 1973, 1834, 1942, 2033, 2004, 1924, 1757, 1584, 1418, 1321, 1259, 1296, 1389, 1549, 1698, 1870, 1961, 1987, 1851, 1944, 1997, 1985, 1869, 1680, 1488, 1321, 1190, 1145, 1176, 1287, 1437, 1628, 1786, 1945, 1954, 1876, 1938, 2007, 1950, 1821, 1603, 1425, 1238, 1114, 1068, 1084, 1208, 1378, 1578, 1758, 1931, 1963, 1894, 1976, 2041, 1958, 1827, 1582, 1389, 1203, 1073, 1024, 1062, 1162, 1336, 1547, 1763, 1901, 1952, 1885, 1938, 2030, 1970, 1804, 1603, 1387, 1202, 1079, 1046, 1073, 1168, 1351, 1555, 1742, 1911, 1963, 1894, 1944, 1997, 1945, 1834, 1628, 1446, 1264, 1144, 1095, 1131, 1226, 1398, 1579, 1771, 1906, 1954, 1876, 1918, 1987, 2004, 1870, 1698, 1515, 1362, 1234, 1201, 1227, 1327, 1483, 1657, 1819, 1942, 1964, 1851, 1857, 1973, 2002, 1909, 1794, 1617, 1458, 1349, 1320, 1341, 1447, 1580, 1733, 1873, 1959, 1929, 1813, 1819, 1928, 1998, 1952, 1870, 1722, 1592, 1498, 1472, 1498, 1580, 1694, 1819, 1932, 1954, 1906, 1715, 1674, 1868, 1987, 1997, 1935, 1828, 1711, 1630, 1613, 1617, 1711, 1796, 1916, 1976, 1943, 1846, 1655, 1492, 1777, 1895, 1994, 1962, 1911, 1834, 1772, 1737, 1788, 1801, 1911, 1942, 1950, 1917, 1757, 1434, 1074, 1667, 1862, 1976, 1983, 1980, 1958, 1943, 1901, 1905, 1958, 2002, 1983, 1976, 1840, 1629, 1074]
| }
| }, {
| "name": "8192x6144_TL84_100",
| "resolution": "8192x6144",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [7226, 4969, 4112, 3487, 3058, 2817, 2624, 2476, 2434, 2487, 2577, 2777, 3026, 3325, 3889, 4843, 6012, 5390, 4330, 3551, 3108, 2737, 2487, 2298, 2167, 2088, 2151, 2270, 2466, 2698, 3010, 3487, 4173, 5390, 4969, 3863, 3231, 2804, 2455, 2200, 1994, 1864, 1811, 1864, 1980, 2167, 2424, 2750, 3177, 3713, 4723, 4431, 3551, 3010, 2588, 2252, 1966, 1761, 1640, 1590, 1621, 1734, 1914, 2192, 2520, 2903, 3404, 4234, 4054, 3305, 2817, 2394, 2051, 1766, 1581, 1449, 1406, 1434, 1551, 1729, 1987, 2326, 2698, 3195, 3863, 3837, 3125, 2636, 2226, 1870, 1617, 1424, 1298, 1252, 1286, 1393, 1555, 1834, 2175, 2588, 3058, 3689, 3665, 2994, 2554, 2135, 1766, 1498, 1307, 1190, 1142, 1166, 1275, 1456, 1713, 2051, 2445, 2948, 3487, 3551, 2918, 2455, 2043, 1678, 1417, 1231, 1111, 1054, 1084, 1195, 1376, 1626, 1966, 2404, 2860, 3424, 3551, 2874, 2455, 2008, 1640, 1376, 1195, 1070, 1024, 1052, 1161, 1334, 1581, 1933, 2374, 2832, 3445, 3508, 2903, 2445, 2022, 1664, 1399, 1202, 1088, 1041, 1068, 1178, 1359, 1603, 1953, 2354, 2874, 3466, 3619, 2963, 2476, 2088, 1713, 1456, 1269, 1142, 1090, 1129, 1228, 1410, 1654, 2022, 2445, 2918, 3445, 3713, 3075, 2612, 2175, 1822, 1559, 1369, 1242, 1192, 1223, 1334, 1526, 1766, 2119, 2542, 3010, 3619, 3970, 3213, 2750, 2316, 1973, 1703, 1498, 1379, 1331, 1366, 1467, 1654, 1907, 2252, 2698, 3160, 3786, 4203, 3384, 2889, 2498, 2159, 1882, 1673, 1559, 1510, 1543, 1654, 1834, 2096, 2466, 2832, 3344, 4112, 4723, 3642, 3125, 2737, 2384, 2111, 1888, 1777, 1734, 1777, 1876, 2043, 2326, 2648, 3058, 3574, 4536, 5242, 4083, 3325, 2948, 2624, 2374, 2167, 2051, 1994, 2058, 2151, 2335, 2577, 2903, 3325, 3998, 5057, 5829, 4723, 3713, 3231, 2948, 2698, 2520, 2374, 2326, 2364, 2455, 2624, 2933, 3213, 3713, 4609, 5656]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7367, 5127, 4146, 3529, 3175, 2907, 2681, 2572, 2512, 2563, 2617, 2831, 3110, 3418, 4015, 4927, 6022, 5538, 4464, 3701, 3202, 2853, 2572, 2379, 2225, 2193, 2225, 2349, 2546, 2810, 3123, 3546, 4263, 5459, 5092, 3973, 3372, 2907, 2555, 2272, 2085, 1936, 1888, 1931, 2040, 2252, 2480, 2831, 3257, 3813, 4772, 4599, 3648, 3135, 2681, 2335, 2034, 1824, 1682, 1639, 1668, 1798, 1997, 2272, 2607, 3023, 3529, 4287, 4263, 3418, 2918, 2488, 2125, 1828, 1611, 1471, 1429, 1468, 1587, 1798, 2068, 2409, 2831, 3285, 3911, 3952, 3271, 2759, 2320, 1961, 1671, 1454, 1311, 1263, 1308, 1424, 1628, 1902, 2245, 2662, 3123, 3683, 3720, 3135, 2635, 2219, 1837, 1552, 1329, 1193, 1146, 1176, 1299, 1497, 1769, 2125, 2555, 3011, 3596, 3738, 3035, 2555, 2125, 1748, 1459, 1252, 1109, 1061, 1098, 1216, 1416, 1694, 2045, 2480, 2941, 3497, 3648, 3023, 2529, 2090, 1713, 1421, 1216, 1078, 1024, 1060, 1187, 1387, 1657, 2007, 2448, 2896, 3433, 3631, 3035, 2529, 2096, 1725, 1443, 1230, 1095, 1042, 1081, 1197, 1400, 1679, 2034, 2464, 2918, 3433, 3720, 3097, 2607, 2187, 1794, 1506, 1290, 1155, 1108, 1146, 1260, 1468, 1748, 2096, 2529, 2999, 3529, 3891, 3229, 2700, 2272, 1902, 1614, 1403, 1269, 1220, 1260, 1372, 1568, 1842, 2199, 2653, 3110, 3666, 4124, 3343, 2842, 2424, 2068, 1777, 1552, 1416, 1365, 1405, 1527, 1717, 2007, 2349, 2769, 3285, 3891, 4437, 3579, 3035, 2617, 2258, 1966, 1752, 1611, 1571, 1601, 1721, 1921, 2193, 2555, 2952, 3449, 4192, 4864, 3794, 3243, 2842, 2496, 2212, 2002, 1860, 1820, 1842, 1961, 2162, 2424, 2779, 3188, 3720, 4627, 5538, 4216, 3513, 3110, 2759, 2488, 2272, 2137, 2090, 2144, 2245, 2448, 2720, 3023, 3449, 4124, 5197, 6119, 4927, 3952, 3433, 3060, 2810, 2617, 2504, 2448, 2464, 2581, 2759, 3035, 3387, 3852, 4742, 5749]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7665, 5127, 4124, 3513, 3162, 2907, 2691, 2555, 2504, 2504, 2644, 2831, 3084, 3403, 3973, 4833, 5975, 5579, 4464, 3683, 3188, 2831, 2581, 2371, 2219, 2187, 2219, 2342, 2529, 2769, 3097, 3546, 4239, 5306, 4992, 3994, 3358, 2907, 2555, 2279, 2073, 1931, 1874, 1916, 2040, 2238, 2480, 2810, 3202, 3794, 4655, 4517, 3648, 3123, 2691, 2328, 2029, 1815, 1679, 1635, 1664, 1794, 1976, 2258, 2590, 2999, 3449, 4169, 4169, 3403, 2907, 2480, 2120, 1815, 1611, 1473, 1429, 1459, 1584, 1785, 2045, 2386, 2800, 3257, 3891, 3973, 3271, 2739, 2313, 1956, 1660, 1451, 1311, 1260, 1297, 1416, 1611, 1888, 2245, 2635, 3097, 3648, 3756, 3123, 2644, 2193, 1828, 1539, 1329, 1189, 1136, 1171, 1288, 1482, 1752, 2096, 2521, 2999, 3497, 3683, 3047, 2563, 2125, 1740, 1456, 1244, 1114, 1060, 1092, 1212, 1405, 1675, 2018, 2448, 2930, 3433, 3631, 2987, 2529, 2085, 1698, 1418, 1216, 1076, 1024, 1061, 1178, 1377, 1642, 1997, 2409, 2874, 3358, 3683, 3023, 2538, 2096, 1728, 1443, 1230, 1090, 1041, 1072, 1191, 1390, 1668, 2007, 2448, 2918, 3433, 3738, 3097, 2607, 2162, 1790, 1494, 1286, 1151, 1105, 1138, 1256, 1448, 1717, 2079, 2512, 2976, 3481, 3871, 3188, 2729, 2258, 1902, 1611, 1397, 1256, 1212, 1246, 1365, 1565, 1828, 2193, 2626, 3060, 3596, 4036, 3328, 2842, 2424, 2051, 1761, 1549, 1413, 1365, 1408, 1521, 1713, 1986, 2342, 2749, 3229, 3813, 4412, 3562, 3035, 2607, 2252, 1961, 1761, 1614, 1571, 1597, 1717, 1916, 2180, 2538, 2930, 3403, 4124, 4896, 3832, 3257, 2842, 2496, 2206, 1986, 1842, 1811, 1842, 1956, 2150, 2416, 2739, 3162, 3701, 4517, 5498, 4216, 3529, 3097, 2749, 2488, 2272, 2131, 2085, 2125, 2232, 2440, 2710, 2999, 3403, 4102, 5059, 6119, 4833, 3973, 3418, 3060, 2779, 2607, 2472, 2424, 2448, 2538, 2759, 2999, 3328, 3891, 4627, 5662]
| },
| "lsc_samples_blue": {
| "uCoeff": [7527, 4674, 3774, 3226, 2941, 2659, 2462, 2392, 2309, 2358, 2462, 2638, 2890, 3226, 3691, 4610, 5621, 4952, 3953, 3356, 2941, 2617, 2375, 2188, 2053, 2015, 2028, 2145, 2341, 2577, 2865, 3257, 3862, 4880, 4610, 3534, 3049, 2681, 2341, 2118, 1922, 1788, 1769, 1788, 1900, 2091, 2341, 2617, 2941, 3460, 4368, 4150, 3290, 2841, 2462, 2145, 1900, 1697, 1584, 1555, 1584, 1680, 1858, 2132, 2409, 2770, 3195, 3862, 3817, 3049, 2617, 2262, 1980, 1723, 1540, 1416, 1369, 1404, 1505, 1680, 1911, 2232, 2577, 2994, 3650, 3534, 2890, 2481, 2132, 1817, 1562, 1381, 1270, 1223, 1256, 1358, 1533, 1751, 2065, 2409, 2817, 3390, 3425, 2817, 2409, 2028, 1697, 1459, 1290, 1168, 1132, 1155, 1251, 1422, 1631, 1945, 2325, 2725, 3226, 3322, 2702, 2309, 1922, 1631, 1386, 1214, 1106, 1057, 1084, 1176, 1336, 1569, 1869, 2247, 2659, 3165, 3290, 2702, 2277, 1900, 1599, 1347, 1180, 1067, 1024, 1050, 1155, 1310, 1526, 1817, 2217, 2617, 3165, 3257, 2681, 2293, 1922, 1599, 1364, 1184, 1074, 1034, 1057, 1159, 1320, 1547, 1838, 2217, 2638, 3135, 3290, 2725, 2325, 1956, 1647, 1410, 1228, 1120, 1088, 1117, 1206, 1364, 1599, 1890, 2277, 2702, 3226, 3497, 2817, 2409, 2065, 1741, 1499, 1326, 1210, 1176, 1193, 1290, 1472, 1697, 1991, 2375, 2793, 3322, 3650, 2967, 2557, 2188, 1879, 1623, 1447, 1331, 1285, 1315, 1416, 1592, 1828, 2145, 2500, 2915, 3460, 3953, 3105, 2702, 2341, 2040, 1808, 1599, 1492, 1472, 1472, 1592, 1741, 1991, 2293, 2659, 3105, 3817, 4368, 3390, 2915, 2518, 2247, 1991, 1817, 1663, 1615, 1663, 1769, 1968, 2217, 2518, 2865, 3356, 4150, 4742, 3732, 3135, 2747, 2444, 2217, 2028, 1900, 1869, 1911, 2015, 2202, 2427, 2747, 3135, 3650, 4810, 5351, 4368, 3572, 3077, 2770, 2577, 2375, 2232, 2202, 2247, 2358, 2518, 2770, 3105, 3497, 4312, 5105]
| }
| }, {
| "name": "8192x6144_TL84_1",
| "resolution": "8192x6144",
| "illumination": "TL84",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1086, 1672, 1906, 1980, 1987, 1993, 1967, 1922, 1910, 1929, 1939, 1972, 1972, 1917, 1842, 1651, 1074, 1466, 1828, 1944, 2000, 1974, 1935, 1881, 1827, 1782, 1816, 1862, 1922, 1952, 1954, 1921, 1789, 1466, 1699, 1907, 1980, 1982, 1920, 1842, 1748, 1676, 1643, 1676, 1737, 1819, 1901, 1953, 1956, 1861, 1657, 1805, 1956, 2001, 1960, 1868, 1738, 1621, 1542, 1506, 1526, 1599, 1699, 1827, 1919, 1948, 1902, 1759, 1861, 1974, 1993, 1912, 1782, 1625, 1504, 1404, 1369, 1390, 1478, 1595, 1735, 1868, 1929, 1928, 1808, 1904, 1978, 1957, 1850, 1683, 1529, 1385, 1280, 1240, 1269, 1357, 1476, 1655, 1815, 1929, 1947, 1858, 1920, 1971, 1952, 1819, 1623, 1441, 1288, 1184, 1139, 1161, 1258, 1404, 1580, 1759, 1886, 1949, 1859, 1921, 1965, 1916, 1771, 1563, 1377, 1221, 1110, 1054, 1083, 1187, 1340, 1521, 1714, 1884, 1936, 1876, 1934, 1953, 1923, 1751, 1536, 1342, 1188, 1070, 1024, 1052, 1155, 1304, 1487, 1695, 1873, 1932, 1896, 1906, 1957, 1909, 1755, 1552, 1361, 1193, 1087, 1041, 1067, 1170, 1325, 1502, 1705, 1853, 1943, 1891, 1904, 1956, 1905, 1786, 1580, 1404, 1253, 1138, 1088, 1125, 1214, 1364, 1533, 1738, 1886, 1934, 1845, 1865, 1955, 1943, 1815, 1645, 1479, 1336, 1228, 1183, 1210, 1304, 1451, 1602, 1777, 1903, 1925, 1836, 1838, 1936, 1957, 1862, 1725, 1574, 1433, 1341, 1301, 1330, 1406, 1534, 1676, 1820, 1929, 1914, 1787, 1752, 1895, 1942, 1906, 1804, 1675, 1549, 1474, 1437, 1460, 1534, 1638, 1761, 1887, 1914, 1880, 1731, 1657, 1839, 1934, 1946, 1876, 1780, 1669, 1609, 1583, 1609, 1660, 1733, 1839, 1898, 1905, 1817, 1625, 1451, 1768, 1862, 1925, 1911, 1865, 1793, 1746, 1715, 1750, 1782, 1841, 1885, 1904, 1862, 1747, 1433, 1072, 1631, 1792, 1881, 1935, 1929, 1906, 1859, 1842, 1853, 1867, 1889, 1928, 1874, 1792, 1613, 1070]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1087, 1698, 1915, 1997, 2042, 2042, 2000, 1982, 1959, 1976, 1963, 2001, 2012, 1954, 1878, 1665, 1074, 1481, 1860, 1999, 2044, 2038, 1988, 1935, 1868, 1857, 1868, 1915, 1972, 2015, 2007, 1943, 1811, 1473, 1721, 1942, 2041, 2038, 1983, 1892, 1816, 1732, 1704, 1728, 1782, 1878, 1936, 1997, 1991, 1892, 1666, 1843, 1992, 2063, 2016, 1925, 1790, 1671, 1577, 1547, 1565, 1650, 1762, 1882, 1971, 2008, 1948, 1772, 1919, 2021, 2048, 1973, 1837, 1675, 1530, 1423, 1390, 1421, 1509, 1651, 1795, 1922, 2001, 1966, 1821, 1940, 2044, 2028, 1915, 1754, 1574, 1412, 1292, 1250, 1290, 1385, 1538, 1708, 1863, 1972, 1977, 1856, 1938, 2039, 2001, 1879, 1680, 1489, 1309, 1187, 1143, 1171, 1281, 1440, 1626, 1812, 1952, 1979, 1896, 1987, 2023, 1978, 1831, 1621, 1415, 1241, 1108, 1061, 1097, 1207, 1376, 1577, 1772, 1931, 1976, 1902, 1969, 2028, 1970, 1811, 1596, 1383, 1208, 1077, 1024, 1060, 1180, 1352, 1550, 1750, 1919, 1964, 1892, 1949, 2023, 1962, 1810, 1602, 1400, 1220, 1094, 1042, 1080, 1189, 1362, 1564, 1764, 1921, 1965, 1879, 1938, 2020, 1984, 1856, 1646, 1448, 1272, 1150, 1106, 1142, 1244, 1415, 1609, 1791, 1937, 1973, 1873, 1921, 2025, 1994, 1882, 1708, 1526, 1366, 1253, 1209, 1245, 1338, 1487, 1661, 1832, 1967, 1971, 1851, 1880, 1990, 2007, 1932, 1795, 1634, 1479, 1374, 1332, 1364, 1458, 1585, 1750, 1883, 1968, 1966, 1816, 1806, 1967, 2013, 1977, 1872, 1738, 1613, 1517, 1489, 1509, 1588, 1704, 1828, 1940, 1973, 1919, 1750, 1682, 1886, 1985, 2003, 1946, 1850, 1754, 1673, 1650, 1659, 1723, 1816, 1901, 1969, 1961, 1863, 1641, 1481, 1800, 1931, 2001, 1986, 1936, 1863, 1806, 1784, 1811, 1845, 1911, 1965, 1960, 1907, 1778, 1447, 1075, 1665, 1860, 1959, 1988, 1990, 1963, 1940, 1919, 1915, 1942, 1962, 1976, 1942, 1831, 1634, 1071]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1090, 1698, 1909, 1990, 2036, 2042, 2006, 1971, 1954, 1940, 1979, 2001, 1999, 1948, 1866, 1649, 1074, 1486, 1860, 1993, 2037, 2026, 1994, 1930, 1864, 1853, 1864, 1910, 1962, 1992, 1994, 1943, 1805, 1458, 1703, 1948, 2035, 2038, 1983, 1897, 1807, 1728, 1693, 1717, 1782, 1869, 1936, 1985, 1967, 1886, 1646, 1824, 1992, 2057, 2022, 1921, 1786, 1664, 1574, 1544, 1562, 1647, 1746, 1872, 1961, 1996, 1919, 1745, 1893, 2015, 2042, 1968, 1833, 1665, 1530, 1425, 1390, 1413, 1507, 1640, 1778, 1907, 1984, 1954, 1816, 1947, 2044, 2017, 1910, 1750, 1565, 1410, 1292, 1247, 1279, 1378, 1523, 1697, 1863, 1957, 1965, 1845, 1950, 2033, 2006, 1861, 1673, 1477, 1309, 1183, 1133, 1166, 1270, 1427, 1612, 1791, 1932, 1973, 1863, 1968, 2029, 1983, 1831, 1615, 1412, 1233, 1112, 1060, 1091, 1203, 1366, 1561, 1752, 1911, 1971, 1879, 1963, 2010, 1970, 1808, 1584, 1380, 1208, 1075, 1024, 1061, 1171, 1343, 1537, 1743, 1895, 1953, 1865, 1968, 2017, 1967, 1810, 1605, 1400, 1220, 1089, 1041, 1071, 1183, 1353, 1555, 1744, 1911, 1965, 1879, 1944, 2020, 1984, 1839, 1643, 1438, 1268, 1147, 1103, 1134, 1240, 1397, 1584, 1779, 1926, 1962, 1857, 1915, 2006, 2011, 1872, 1708, 1523, 1361, 1241, 1202, 1232, 1332, 1484, 1650, 1828, 1951, 1948, 1829, 1856, 1984, 2007, 1932, 1782, 1621, 1476, 1372, 1332, 1367, 1452, 1582, 1734, 1879, 1957, 1943, 1794, 1800, 1960, 2013, 1971, 1868, 1734, 1621, 1520, 1489, 1506, 1585, 1700, 1819, 1930, 1962, 1902, 1734, 1687, 1898, 1991, 2003, 1946, 1846, 1742, 1659, 1643, 1659, 1719, 1807, 1896, 1947, 1950, 1857, 1622, 1477, 1800, 1936, 1994, 1981, 1936, 1863, 1802, 1780, 1798, 1836, 1906, 1959, 1949, 1891, 1772, 1433, 1075, 1649, 1866, 1954, 1988, 1973, 1957, 1920, 1904, 1905, 1916, 1962, 1959, 1919, 1843, 1615, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1089, 1623, 1809, 1879, 1932, 1908, 1871, 1870, 1832, 1849, 1871, 1897, 1908, 1879, 1785, 1613, 1070, 1422, 1736, 1873, 1921, 1908, 1866, 1807, 1747, 1730, 1729, 1778, 1845, 1885, 1886, 1837, 1714, 1415, 1638, 1805, 1901, 1916, 1849, 1785, 1694, 1617, 1610, 1617, 1678, 1766, 1849, 1881, 1854, 1782, 1597, 1740, 1860, 1918, 1885, 1795, 1688, 1569, 1495, 1476, 1495, 1555, 1656, 1786, 1853, 1883, 1825, 1674, 1795, 1868, 1885, 1827, 1730, 1590, 1469, 1374, 1336, 1363, 1439, 1555, 1679, 1807, 1864, 1845, 1749, 1809, 1871, 1868, 1786, 1641, 1482, 1346, 1254, 1212, 1241, 1326, 1457, 1590, 1740, 1826, 1838, 1764, 1838, 1886, 1864, 1743, 1567, 1407, 1272, 1163, 1129, 1150, 1236, 1374, 1514, 1683, 1813, 1842, 1771, 1840, 1858, 1825, 1682, 1525, 1349, 1205, 1105, 1057, 1083, 1169, 1304, 1474, 1643, 1786, 1836, 1784, 1840, 1867, 1812, 1671, 1502, 1316, 1173, 1067, 1024, 1050, 1149, 1283, 1441, 1610, 1774, 1824, 1795, 1816, 1847, 1815, 1682, 1498, 1329, 1176, 1073, 1034, 1056, 1152, 1290, 1455, 1621, 1767, 1826, 1773, 1792, 1842, 1813, 1691, 1527, 1364, 1214, 1117, 1086, 1114, 1194, 1323, 1488, 1644, 1784, 1831, 1771, 1798, 1838, 1826, 1740, 1582, 1428, 1297, 1198, 1168, 1182, 1264, 1405, 1548, 1689, 1806, 1827, 1743, 1749, 1833, 1853, 1779, 1655, 1509, 1389, 1298, 1260, 1284, 1362, 1484, 1618, 1751, 1822, 1812, 1697, 1695, 1792, 1850, 1812, 1723, 1618, 1489, 1417, 1405, 1401, 1484, 1568, 1689, 1783, 1828, 1792, 1664, 1597, 1760, 1843, 1828, 1790, 1697, 1616, 1520, 1489, 1520, 1580, 1681, 1771, 1828, 1821, 1750, 1559, 1401, 1682, 1793, 1831, 1812, 1767, 1699, 1639, 1626, 1647, 1691, 1758, 1802, 1831, 1793, 1662, 1408, 1067, 1573, 1752, 1821, 1851, 1864, 1820, 1771, 1764, 1781, 1810, 1832, 1851, 1832, 1730, 1564, 1065]
| }
| }, {
| "name": "4096x3072_D65_100",
| "resolution": "4096x3072",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8020, 5417, 4398, 3791, 3380, 3110, 2862, 2728, 2651, 2744, 2827, 3029, 3285, 3701, 4277, 5177, 6467, 5895, 4707, 3951, 3429, 3029, 2744, 2495, 2369, 2287, 2345, 2469, 2681, 2971, 3308, 3853, 4570, 5895, 5294, 4238, 3560, 3089, 2728, 2418, 2181, 2020, 1978, 2012, 2141, 2357, 2681, 3029, 3480, 4090, 5010, 4854, 3951, 3355, 2862, 2443, 2131, 1905, 1742, 1697, 1742, 1867, 2093, 2393, 2793, 3239, 3760, 4615, 4525, 3643, 3130, 2621, 2233, 1905, 1667, 1531, 1468, 1511, 1644, 1852, 2160, 2549, 3009, 3533, 4199, 4316, 3454, 2897, 2456, 2047, 1722, 1496, 1349, 1293, 1319, 1450, 1679, 1969, 2369, 2827, 3331, 3918, 4019, 3308, 2793, 2322, 1897, 1582, 1349, 1213, 1161, 1188, 1326, 1536, 1823, 2222, 2697, 3217, 3822, 3985, 3239, 2697, 2222, 1802, 1487, 1269, 1120, 1064, 1099, 1222, 1441, 1735, 2121, 2636, 3130, 3760, 3885, 3195, 2666, 2170, 1768, 1450, 1222, 1086, 1024, 1061, 1191, 1406, 1679, 2083, 2578, 3110, 3671, 3951, 3195, 2666, 2201, 1782, 1473, 1242, 1096, 1045, 1086, 1200, 1423, 1704, 2112, 2606, 3110, 3760, 3951, 3285, 2728, 2265, 1859, 1531, 1301, 1161, 1112, 1147, 1272, 1491, 1775, 2191, 2681, 3173, 3791, 4162, 3355, 2880, 2369, 1978, 1661, 1428, 1279, 1229, 1269, 1389, 1610, 1905, 2299, 2810, 3285, 3951, 4356, 3560, 3009, 2549, 2170, 1823, 1593, 1441, 1402, 1432, 1556, 1782, 2083, 2482, 2952, 3454, 4199, 4707, 3730, 3195, 2760, 2357, 2038, 1802, 1649, 1604, 1638, 1775, 1978, 2310, 2666, 3151, 3671, 4439, 5235, 4019, 3429, 2971, 2636, 2287, 2065, 1897, 1852, 1890, 2029, 2254, 2578, 2934, 3380, 3918, 4905, 5822, 4482, 3701, 3261, 2880, 2592, 2357, 2222, 2170, 2212, 2357, 2564, 2862, 3173, 3615, 4356, 5417, 6467, 5235, 4126, 3615, 3195, 2952, 2728, 2606, 2578, 2592, 2712, 2934, 3217, 3587, 4199, 5010, 6467]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7394, 5196, 4179, 3560, 3178, 2924, 2708, 2530, 2505, 2563, 2643, 2838, 3126, 3433, 3985, 4837, 5962, 5533, 4471, 3697, 3231, 2870, 2581, 2381, 2249, 2191, 2229, 2345, 2546, 2817, 3152, 3577, 4272, 5416, 5127, 4047, 3418, 2935, 2581, 2302, 2084, 1947, 1889, 1913, 2045, 2255, 2530, 2870, 3301, 3826, 4837, 4577, 3679, 3152, 2737, 2345, 2045, 1818, 1686, 1640, 1668, 1801, 2008, 2289, 2625, 3040, 3544, 4272, 4272, 3464, 2958, 2521, 2136, 1835, 1622, 1482, 1435, 1468, 1586, 1788, 2078, 2418, 2859, 3329, 3944, 3985, 3286, 2786, 2352, 1962, 1672, 1448, 1310, 1263, 1299, 1416, 1612, 1903, 2269, 2698, 3191, 3788, 3826, 3178, 2670, 2235, 1831, 1541, 1333, 1194, 1141, 1178, 1295, 1496, 1768, 2148, 2581, 3052, 3544, 3715, 3113, 2598, 2142, 1752, 1456, 1248, 1110, 1062, 1097, 1215, 1419, 1690, 2056, 2513, 2992, 3528, 3679, 3052, 2555, 2095, 1720, 1421, 1207, 1080, 1024, 1062, 1178, 1378, 1654, 2034, 2465, 2946, 3449, 3715, 3076, 2572, 2107, 1744, 1440, 1228, 1091, 1045, 1079, 1192, 1391, 1679, 2029, 2481, 2981, 3480, 3788, 3126, 2625, 2197, 1793, 1502, 1292, 1153, 1105, 1133, 1257, 1451, 1736, 2113, 2538, 3028, 3594, 3904, 3259, 2746, 2289, 1913, 1616, 1396, 1261, 1213, 1242, 1368, 1563, 1844, 2216, 2661, 3139, 3679, 4091, 3403, 2891, 2449, 2078, 1772, 1554, 1416, 1364, 1398, 1520, 1717, 2013, 2374, 2796, 3286, 3924, 4497, 3577, 3064, 2643, 2269, 1977, 1752, 1612, 1563, 1592, 1713, 1923, 2210, 2572, 2992, 3480, 4202, 4898, 3845, 3272, 2891, 2521, 2235, 1992, 1853, 1805, 1831, 1957, 2172, 2449, 2807, 3204, 3751, 4524, 5533, 4272, 3577, 3126, 2776, 2513, 2282, 2154, 2090, 2124, 2235, 2449, 2727, 3052, 3528, 4134, 5161, 6008, 4867, 3944, 3433, 3126, 2827, 2634, 2489, 2434, 2465, 2572, 2796, 3028, 3433, 3944, 4718, 5739]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7690, 5127, 4202, 3610, 3204, 2891, 2717, 2589, 2521, 2546, 2679, 2859, 3126, 3464, 4005, 4806, 5915, 5533, 4471, 3733, 3245, 2870, 2598, 2388, 2249, 2191, 2229, 2359, 2546, 2827, 3126, 3560, 4179, 5341, 4962, 4005, 3388, 2946, 2589, 2309, 2090, 1932, 1889, 1923, 2034, 2269, 2513, 2848, 3259, 3788, 4633, 4524, 3679, 3126, 2727, 2337, 2045, 1831, 1679, 1643, 1672, 1793, 2003, 2269, 2598, 3040, 3495, 4157, 4202, 3433, 2935, 2505, 2130, 1835, 1619, 1479, 1427, 1462, 1582, 1793, 2062, 2396, 2807, 3272, 3845, 3884, 3272, 2776, 2330, 1952, 1668, 1448, 1310, 1259, 1295, 1411, 1609, 1889, 2249, 2670, 3113, 3662, 3770, 3152, 2643, 2216, 1822, 1535, 1328, 1190, 1136, 1169, 1295, 1490, 1740, 2118, 2546, 3016, 3495, 3697, 3076, 2563, 2124, 1736, 1454, 1242, 1111, 1061, 1091, 1211, 1408, 1668, 2034, 2481, 2946, 3433, 3627, 3040, 2546, 2090, 1701, 1414, 1207, 1076, 1024, 1058, 1174, 1368, 1640, 1992, 2441, 2902, 3403, 3662, 3052, 2555, 2084, 1724, 1429, 1227, 1089, 1043, 1074, 1189, 1386, 1647, 2018, 2457, 2935, 3418, 3697, 3089, 2625, 2166, 1772, 1487, 1290, 1150, 1102, 1134, 1246, 1446, 1717, 2084, 2505, 2992, 3480, 3845, 3204, 2727, 2275, 1899, 1605, 1401, 1257, 1211, 1242, 1356, 1563, 1835, 2172, 2625, 3089, 3610, 4112, 3344, 2870, 2441, 2062, 1772, 1550, 1414, 1359, 1401, 1511, 1713, 1987, 2352, 2776, 3245, 3826, 4321, 3544, 3052, 2634, 2262, 1967, 1752, 1609, 1560, 1592, 1720, 1923, 2210, 2538, 2958, 3433, 4069, 4837, 3826, 3286, 2880, 2513, 2229, 2008, 1849, 1809, 1840, 1957, 2172, 2434, 2776, 3178, 3697, 4497, 5572, 4249, 3560, 3126, 2786, 2513, 2289, 2148, 2090, 2118, 2235, 2457, 2737, 3052, 3464, 4112, 5059, 6152, 4898, 3985, 3433, 3089, 2807, 2643, 2521, 2465, 2457, 2589, 2776, 3028, 3403, 3884, 4633, 5655]
| },
| "lsc_samples_blue": {
| "uCoeff": [7495, 4619, 3814, 3248, 2932, 2686, 2505, 2393, 2335, 2369, 2466, 2686, 2932, 3248, 3726, 4619, 6000, 5003, 3972, 3338, 2950, 2628, 2381, 2186, 2082, 2030, 2056, 2167, 2358, 2599, 2932, 3293, 3907, 5109, 4532, 3560, 3062, 2717, 2381, 2128, 1940, 1802, 1749, 1802, 1909, 2110, 2358, 2657, 3024, 3509, 4328, 4178, 3270, 2862, 2479, 2176, 1909, 1712, 1588, 1547, 1583, 1676, 1886, 2128, 2441, 2812, 3205, 3907, 3784, 3062, 2657, 2312, 1988, 1718, 1532, 1424, 1363, 1403, 1504, 1676, 1940, 2269, 2585, 3024, 3614, 3534, 2932, 2518, 2157, 1815, 1572, 1383, 1270, 1224, 1256, 1359, 1537, 1782, 2100, 2454, 2879, 3458, 3409, 2845, 2405, 2021, 1712, 1454, 1280, 1168, 1127, 1149, 1247, 1419, 1665, 1971, 2346, 2764, 3293, 3361, 2748, 2346, 1956, 1625, 1379, 1209, 1099, 1051, 1086, 1177, 1348, 1578, 1886, 2269, 2686, 3226, 3315, 2702, 2290, 1917, 1593, 1352, 1177, 1055, 1024, 1053, 1146, 1315, 1547, 1850, 2248, 2686, 3184, 3248, 2732, 2301, 1932, 1598, 1367, 1197, 1077, 1039, 1067, 1165, 1333, 1557, 1872, 2248, 2686, 3205, 3338, 2764, 2358, 1980, 1659, 1415, 1240, 1124, 1081, 1114, 1212, 1375, 1609, 1932, 2312, 2764, 3205, 3433, 2862, 2441, 2082, 1756, 1504, 1333, 1212, 1171, 1194, 1297, 1458, 1706, 2030, 2405, 2828, 3409, 3587, 2968, 2572, 2206, 1894, 1637, 1449, 1329, 1283, 1322, 1424, 1609, 1843, 2186, 2558, 2986, 3614, 3907, 3184, 2717, 2381, 2073, 1809, 1609, 1490, 1445, 1476, 1578, 1762, 2021, 2346, 2702, 3142, 3907, 4328, 3409, 2879, 2585, 2269, 2013, 1809, 1700, 1653, 1671, 1795, 1971, 2237, 2572, 2932, 3409, 4290, 4901, 3726, 3142, 2779, 2479, 2237, 2056, 1917, 1886, 1924, 2021, 2217, 2479, 2812, 3163, 3755, 4803, 5396, 4368, 3534, 3122, 2796, 2572, 2369, 2269, 2248, 2258, 2346, 2572, 2812, 3163, 3560, 4328, 5396]
| }
| }, {
| "name": "4096x3072_D65_1",
| "resolution": "4096x3072",
| "illumination": "D65",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1094, 1745, 1987, 2098, 2140, 2152, 2107, 2078, 2047, 2088, 2087, 2108, 2095, 2063, 1953, 1706, 1078, 1518, 1919, 2090, 2150, 2136, 2096, 2013, 1969, 1924, 1952, 1996, 2056, 2104, 2093, 2054, 1886, 1518, 1755, 2024, 2122, 2136, 2091, 1994, 1887, 1798, 1775, 1791, 1857, 1951, 2061, 2103, 2088, 1978, 1707, 1901, 2104, 2171, 2124, 2000, 1863, 1737, 1627, 1597, 1627, 1706, 1834, 1965, 2083, 2114, 2033, 1847, 1991, 2115, 2163, 2059, 1917, 1738, 1578, 1477, 1425, 1459, 1558, 1695, 1863, 2013, 2097, 2069, 1901, 2054, 2127, 2108, 2009, 1820, 1618, 1450, 1328, 1278, 1300, 1409, 1581, 1760, 1949, 2068, 2071, 1929, 2040, 2122, 2097, 1953, 1729, 1515, 1327, 1206, 1158, 1182, 1306, 1475, 1669, 1882, 2039, 2078, 1973, 2075, 2124, 2066, 1902, 1666, 1440, 1257, 1118, 1064, 1098, 1212, 1398, 1610, 1828, 2028, 2070, 1995, 2054, 2114, 2056, 1870, 1642, 1409, 1213, 1085, 1024, 1061, 1184, 1369, 1568, 1806, 2001, 2072, 1977, 2063, 2103, 2047, 1887, 1649, 1427, 1231, 1095, 1045, 1085, 1191, 1382, 1585, 1821, 2010, 2060, 1995, 2017, 2111, 2057, 1912, 1698, 1470, 1282, 1156, 1110, 1143, 1255, 1435, 1630, 1859, 2029, 2057, 1962, 2006, 2082, 2098, 1949, 1767, 1566, 1389, 1262, 1218, 1253, 1354, 1523, 1710, 1901, 2058, 2050, 1940, 1944, 2080, 2097, 2013, 1870, 1671, 1514, 1397, 1366, 1388, 1483, 1638, 1806, 1969, 2066, 2036, 1901, 1868, 2022, 2092, 2063, 1941, 1793, 1654, 1549, 1517, 1540, 1632, 1747, 1908, 2007, 2070, 2001, 1806, 1745, 1956, 2066, 2072, 2033, 1903, 1801, 1702, 1676, 1697, 1774, 1880, 1997, 2052, 2044, 1924, 1689, 1510, 1865, 1999, 2071, 2053, 2001, 1921, 1866, 1841, 1859, 1921, 1983, 2043, 2030, 1968, 1834, 1469, 1078, 1715, 1910, 2030, 2052, 2066, 2028, 2003, 2001, 1994, 2019, 2057, 2062, 2019, 1931, 1678, 1078]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1088, 1709, 1925, 2009, 2044, 2051, 2016, 1956, 1955, 1976, 1978, 2005, 2019, 1959, 1869, 1650, 1073, 1481, 1862, 1998, 2057, 2048, 1994, 1937, 1885, 1856, 1871, 1912, 1972, 2018, 2020, 1954, 1814, 1469, 1727, 1965, 2061, 2053, 1999, 1913, 1815, 1741, 1705, 1714, 1786, 1880, 1967, 2018, 2010, 1896, 1677, 1838, 2004, 2071, 2049, 1932, 1798, 1667, 1580, 1548, 1565, 1653, 1770, 1894, 1982, 2016, 1954, 1768, 1921, 2040, 2070, 1995, 1845, 1681, 1539, 1433, 1395, 1421, 1508, 1643, 1802, 1928, 2016, 1984, 1831, 1950, 2051, 2044, 1937, 1754, 1575, 1407, 1291, 1250, 1281, 1378, 1524, 1708, 1880, 1993, 2007, 1889, 1974, 2059, 2022, 1891, 1676, 1479, 1312, 1188, 1138, 1173, 1277, 1439, 1625, 1829, 1968, 1999, 1879, 1979, 2062, 2005, 1843, 1625, 1412, 1237, 1109, 1062, 1096, 1206, 1379, 1573, 1780, 1952, 2002, 1913, 1980, 2042, 1986, 1815, 1602, 1383, 1199, 1079, 1024, 1062, 1171, 1344, 1547, 1770, 1930, 1989, 1897, 1979, 2043, 1988, 1818, 1618, 1398, 1218, 1090, 1045, 1078, 1184, 1354, 1564, 1760, 1932, 1996, 1896, 1961, 2034, 1995, 1864, 1645, 1445, 1274, 1148, 1103, 1129, 1241, 1400, 1599, 1803, 1942, 1987, 1896, 1925, 2038, 2021, 1894, 1716, 1528, 1360, 1246, 1203, 1228, 1335, 1483, 1662, 1844, 1972, 1984, 1855, 1871, 2015, 2033, 1948, 1802, 1630, 1481, 1374, 1331, 1358, 1451, 1585, 1754, 1899, 1982, 1966, 1825, 1820, 1966, 2028, 1993, 1880, 1747, 1613, 1518, 1483, 1501, 1582, 1706, 1839, 1950, 1992, 1930, 1752, 1687, 1902, 1998, 2029, 1961, 1866, 1746, 1668, 1639, 1651, 1720, 1823, 1916, 1984, 1968, 1872, 1623, 1481, 1814, 1954, 2008, 1996, 1952, 1870, 1818, 1784, 1797, 1838, 1912, 1969, 1973, 1936, 1780, 1443, 1074, 1655, 1858, 1959, 2019, 1999, 1973, 1930, 1910, 1916, 1936, 1982, 1973, 1959, 1858, 1630, 1071]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1091, 1698, 1931, 2028, 2056, 2033, 2022, 1992, 1965, 1966, 1999, 2016, 2019, 1971, 1875, 1645, 1073, 1481, 1862, 2011, 2064, 2048, 2005, 1941, 1885, 1856, 1871, 1922, 1972, 2024, 2008, 1948, 1791, 1461, 1698, 1951, 2048, 2059, 2004, 1918, 1819, 1729, 1705, 1722, 1778, 1890, 1956, 2006, 1992, 1884, 1642, 1826, 2004, 2058, 2043, 1927, 1798, 1677, 1574, 1551, 1569, 1646, 1766, 1880, 1966, 2016, 1936, 1742, 1902, 2027, 2057, 1984, 1841, 1681, 1537, 1430, 1388, 1415, 1505, 1647, 1791, 1914, 1988, 1960, 1803, 1919, 2044, 2038, 1922, 1747, 1572, 1407, 1291, 1246, 1277, 1374, 1522, 1697, 1866, 1977, 1972, 1849, 1955, 2047, 2006, 1877, 1668, 1474, 1308, 1184, 1133, 1164, 1277, 1434, 1602, 1807, 1947, 1981, 1862, 1973, 2043, 1983, 1830, 1611, 1410, 1231, 1110, 1061, 1090, 1202, 1369, 1555, 1764, 1932, 1979, 1879, 1962, 2036, 1981, 1811, 1586, 1377, 1199, 1075, 1024, 1058, 1168, 1335, 1536, 1739, 1915, 1967, 1881, 1960, 2031, 1978, 1801, 1601, 1388, 1217, 1088, 1043, 1073, 1181, 1349, 1538, 1752, 1917, 1973, 1874, 1930, 2017, 1995, 1841, 1628, 1432, 1272, 1146, 1100, 1130, 1231, 1395, 1584, 1783, 1922, 1970, 1857, 1907, 2013, 2010, 1884, 1705, 1518, 1365, 1242, 1201, 1228, 1324, 1483, 1655, 1813, 1951, 1961, 1833, 1877, 1990, 2022, 1943, 1791, 1630, 1477, 1372, 1327, 1361, 1444, 1582, 1735, 1885, 1971, 1949, 1798, 1779, 1954, 2022, 1988, 1875, 1739, 1613, 1516, 1480, 1501, 1587, 1706, 1839, 1930, 1976, 1913, 1722, 1677, 1896, 2004, 2023, 1956, 1862, 1758, 1665, 1642, 1658, 1720, 1823, 1907, 1967, 1957, 1856, 1619, 1485, 1808, 1948, 2008, 2001, 1952, 1875, 1814, 1784, 1793, 1838, 1917, 1974, 1973, 1913, 1775, 1433, 1075, 1660, 1869, 1959, 2002, 1988, 1978, 1950, 1930, 1911, 1946, 1971, 1973, 1948, 1841, 1616, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1089, 1614, 1821, 1888, 1927, 1923, 1897, 1871, 1848, 1856, 1874, 1923, 1927, 1888, 1795, 1614, 1074, 1427, 1741, 1867, 1926, 1914, 1869, 1806, 1767, 1741, 1749, 1793, 1855, 1898, 1917, 1851, 1725, 1438, 1625, 1813, 1907, 1935, 1874, 1792, 1707, 1628, 1594, 1628, 1684, 1780, 1859, 1903, 1890, 1797, 1590, 1747, 1853, 1928, 1895, 1816, 1695, 1581, 1498, 1469, 1494, 1552, 1678, 1783, 1872, 1904, 1829, 1685, 1786, 1873, 1907, 1859, 1736, 1586, 1462, 1381, 1330, 1363, 1438, 1552, 1700, 1831, 1868, 1857, 1739, 1809, 1890, 1889, 1803, 1640, 1490, 1348, 1254, 1213, 1241, 1327, 1460, 1614, 1764, 1852, 1866, 1786, 1833, 1899, 1861, 1738, 1580, 1402, 1263, 1163, 1125, 1145, 1232, 1372, 1542, 1702, 1826, 1860, 1793, 1853, 1880, 1848, 1707, 1520, 1343, 1200, 1098, 1051, 1085, 1170, 1315, 1481, 1656, 1800, 1850, 1805, 1849, 1867, 1820, 1683, 1497, 1320, 1170, 1055, 1024, 1053, 1141, 1287, 1458, 1634, 1793, 1859, 1802, 1813, 1873, 1820, 1689, 1497, 1332, 1189, 1076, 1039, 1066, 1158, 1301, 1464, 1645, 1787, 1850, 1798, 1809, 1860, 1833, 1708, 1537, 1368, 1226, 1121, 1080, 1111, 1199, 1333, 1496, 1674, 1805, 1860, 1764, 1778, 1858, 1844, 1751, 1594, 1432, 1303, 1200, 1163, 1183, 1271, 1393, 1555, 1716, 1824, 1843, 1770, 1732, 1834, 1861, 1790, 1666, 1521, 1390, 1296, 1258, 1290, 1369, 1498, 1629, 1777, 1853, 1841, 1739, 1685, 1821, 1857, 1836, 1745, 1619, 1497, 1416, 1382, 1404, 1472, 1584, 1709, 1815, 1850, 1805, 1685, 1590, 1766, 1827, 1864, 1804, 1712, 1610, 1549, 1519, 1526, 1599, 1683, 1783, 1857, 1850, 1766, 1583, 1417, 1681, 1796, 1846, 1831, 1780, 1718, 1651, 1638, 1656, 1695, 1767, 1831, 1861, 1803, 1688, 1407, 1068, 1573, 1741, 1839, 1863, 1861, 1817, 1794, 1793, 1788, 1803, 1861, 1871, 1855, 1748, 1566, 1068]
| }
| }, {
| "name": "4096x3072_A_100",
| "resolution": "4096x3072",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 6116, 4895, 4221, 3729, 3449, 3167, 3036, 2987, 3024, 3180, 3370, 3691, 4103, 4863, 5826, 7337, 6611, 5244, 4346, 3806, 3385, 3011, 2762, 2569, 2517, 2587, 2722, 2987, 3309, 3710, 4197, 5029, 6552, 6017, 4737, 3970, 3482, 3011, 2653, 2371, 2194, 2130, 2168, 2340, 2587, 2939, 3339, 3886, 4561, 5691, 5398, 4346, 3710, 3167, 2711, 2311, 2047, 1866, 1810, 1847, 2008, 2261, 2624, 3100, 3566, 4173, 5244, 4995, 4058, 3433, 2916, 2441, 2047, 1775, 1598, 1535, 1588, 1730, 1992, 2348, 2805, 3354, 3928, 4768, 4707, 3826, 3251, 2682, 2207, 1819, 1554, 1390, 1325, 1369, 1522, 1771, 2136, 2615, 3126, 3748, 4561, 4451, 3729, 3087, 2534, 2036, 1667, 1400, 1240, 1169, 1215, 1361, 1616, 1965, 2450, 3011, 3583, 4346, 4397, 3619, 2987, 2409, 1919, 1561, 1301, 1135, 1072, 1114, 1268, 1513, 1851, 2340, 2916, 3532, 4295, 4371, 3583, 2951, 2386, 1890, 1509, 1252, 1089, 1024, 1075, 1219, 1456, 1802, 2289, 2859, 3498, 4221, 4397, 3583, 2987, 2402, 1899, 1538, 1272, 1111, 1055, 1091, 1240, 1491, 1828, 2311, 2904, 3532, 4221, 4505, 3673, 3049, 2474, 1981, 1616, 1351, 1197, 1128, 1171, 1315, 1564, 1914, 2394, 2975, 3619, 4320, 4618, 3786, 3180, 2615, 2136, 1767, 1491, 1322, 1263, 1306, 1456, 1706, 2065, 2534, 3126, 3729, 4424, 4863, 4013, 3370, 2815, 2348, 1970, 1682, 1516, 1453, 1503, 1644, 1914, 2268, 2752, 3309, 3866, 4737, 5171, 4173, 3583, 3074, 2587, 2220, 1929, 1759, 1713, 1750, 1899, 2162, 2525, 3011, 3515, 4126, 5029, 5826, 4533, 3826, 3354, 2893, 2534, 2254, 2070, 2014, 2053, 2227, 2474, 2837, 3251, 3748, 4397, 5561, 6672, 4961, 4126, 3637, 3208, 2893, 2624, 2450, 2394, 2425, 2578, 2815, 3194, 3583, 4036, 4928, 6273, 7055, 5826, 4648, 4036, 3655, 3280, 3061, 2927, 2859, 2893, 3036, 3251, 3601, 3992, 4648, 5691, 7055]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7748, 5166, 4358, 3690, 3305, 3045, 2812, 2682, 2631, 2652, 2756, 2993, 3244, 3595, 4126, 5090, 6340, 5716, 4588, 3831, 3337, 2967, 2672, 2447, 2325, 2264, 2301, 2413, 2631, 2918, 3259, 3729, 4386, 5669, 5204, 4151, 3504, 3045, 2652, 2356, 2146, 1987, 1926, 1981, 2113, 2317, 2602, 2967, 3418, 3940, 4981, 4744, 3811, 3274, 2801, 2413, 2100, 1875, 1722, 1680, 1722, 1830, 2063, 2356, 2724, 3155, 3632, 4470, 4358, 3540, 3032, 2573, 2179, 1880, 1649, 1506, 1453, 1487, 1626, 1830, 2133, 2500, 2918, 3435, 4078, 4126, 3385, 2858, 2405, 2010, 1705, 1474, 1326, 1277, 1311, 1444, 1660, 1953, 2332, 2767, 3259, 3853, 3985, 3274, 2735, 2294, 1880, 1571, 1344, 1198, 1145, 1188, 1316, 1526, 1816, 2193, 2652, 3155, 3670, 3853, 3155, 2662, 2193, 1788, 1477, 1261, 1114, 1063, 1105, 1217, 1432, 1726, 2113, 2564, 3072, 3651, 3770, 3155, 2631, 2152, 1748, 1444, 1223, 1081, 1024, 1061, 1190, 1409, 1697, 2082, 2545, 3032, 3632, 3770, 3141, 2642, 2166, 1770, 1465, 1243, 1098, 1049, 1086, 1204, 1412, 1709, 2094, 2564, 3072, 3613, 3874, 3214, 2682, 2242, 1835, 1533, 1301, 1160, 1110, 1149, 1273, 1484, 1788, 2159, 2622, 3141, 3690, 4008, 3337, 2812, 2364, 1953, 1652, 1423, 1284, 1226, 1266, 1386, 1607, 1895, 2279, 2735, 3244, 3811, 4226, 3504, 2955, 2517, 2133, 1821, 1589, 1447, 1395, 1426, 1550, 1761, 2075, 2438, 2906, 3385, 3985, 4588, 3709, 3155, 2713, 2332, 2027, 1793, 1652, 1603, 1637, 1765, 1981, 2279, 2682, 3099, 3595, 4331, 5053, 3962, 3369, 2980, 2592, 2301, 2051, 1916, 1860, 1890, 2027, 2249, 2536, 2906, 3353, 3874, 4776, 5811, 4442, 3690, 3244, 2894, 2583, 2372, 2221, 2172, 2207, 2325, 2554, 2812, 3170, 3613, 4252, 5364, 6226, 5166, 4151, 3613, 3214, 2993, 2735, 2602, 2573, 2631, 2703, 2930, 3199, 3576, 4151, 4877, 5910]
| },
| "lsc_samples_greenB": {
| "uCoeff": [8039, 5259, 4371, 3720, 3330, 3002, 2786, 2639, 2581, 2629, 2732, 2926, 3238, 3605, 4138, 5032, 6135, 5828, 4663, 3886, 3363, 2976, 2669, 2454, 2324, 2249, 2286, 2420, 2639, 2890, 3238, 3701, 4427, 5595, 5219, 4188, 3515, 3054, 2669, 2371, 2152, 1993, 1932, 1970, 2100, 2316, 2600, 2951, 3395, 3951, 4857, 4758, 3822, 3268, 2820, 2412, 2107, 1870, 1723, 1677, 1706, 1836, 2057, 2355, 2721, 3150, 3643, 4371, 4371, 3550, 3041, 2581, 2192, 1880, 1646, 1498, 1448, 1488, 1611, 1826, 2119, 2498, 2926, 3395, 4066, 4188, 3395, 2890, 2420, 2004, 1706, 1472, 1325, 1274, 1315, 1439, 1650, 1948, 2316, 2775, 3268, 3822, 4020, 3283, 2764, 2301, 1885, 1575, 1345, 1206, 1143, 1181, 1307, 1520, 1798, 2192, 2649, 3136, 3720, 3907, 3179, 2680, 2199, 1793, 1485, 1267, 1117, 1066, 1100, 1218, 1430, 1731, 2113, 2562, 3067, 3662, 3801, 3179, 2649, 2145, 1753, 1445, 1223, 1084, 1024, 1065, 1187, 1396, 1689, 2075, 2534, 3028, 3550, 3822, 3179, 2669, 2179, 1775, 1463, 1242, 1100, 1047, 1081, 1206, 1410, 1706, 2081, 2553, 3067, 3605, 3886, 3238, 2690, 2242, 1845, 1530, 1300, 1162, 1112, 1150, 1272, 1479, 1771, 2152, 2619, 3108, 3681, 4090, 3346, 2832, 2363, 1970, 1650, 1424, 1274, 1227, 1262, 1385, 1590, 1890, 2286, 2732, 3223, 3801, 4291, 3515, 2964, 2525, 2139, 1807, 1586, 1436, 1396, 1424, 1547, 1757, 2075, 2445, 2890, 3395, 3996, 4542, 3720, 3179, 2732, 2331, 2033, 1798, 1650, 1593, 1630, 1753, 1981, 2271, 2639, 3095, 3587, 4291, 5219, 3974, 3412, 2976, 2590, 2278, 2045, 1906, 1860, 1890, 2015, 2235, 2516, 2890, 3299, 3822, 4726, 5686, 4427, 3720, 3238, 2878, 2581, 2347, 2206, 2159, 2192, 2308, 2534, 2798, 3165, 3605, 4264, 5299, 6476, 5105, 4188, 3624, 3194, 2939, 2690, 2581, 2516, 2534, 2690, 2866, 3194, 3515, 4066, 4857, 6029]
| },
| "lsc_samples_blue": {
| "uCoeff": [7750, 4986, 4008, 3528, 3114, 2975, 2675, 2547, 2499, 2571, 2622, 2847, 3114, 3482, 4069, 4720, 6000, 5502, 4265, 3624, 3151, 2817, 2522, 2344, 2172, 2154, 2172, 2324, 2522, 2787, 3078, 3482, 4132, 5391, 4893, 3834, 3350, 2878, 2547, 2264, 2038, 1893, 1853, 1880, 2023, 2264, 2475, 2817, 3189, 3674, 4637, 4335, 3528, 3043, 2597, 2264, 2023, 1803, 1657, 1626, 1657, 1779, 1963, 2245, 2597, 2942, 3393, 4197, 4008, 3268, 2817, 2430, 2103, 1803, 1616, 1465, 1418, 1465, 1578, 1767, 2054, 2365, 2702, 3151, 3779, 3834, 3114, 2675, 2245, 1906, 1636, 1433, 1313, 1257, 1300, 1403, 1607, 1853, 2226, 2571, 3043, 3624, 3674, 3008, 2547, 2120, 1791, 1524, 1306, 1189, 1153, 1179, 1287, 1473, 1721, 2086, 2475, 2909, 3482, 3528, 2942, 2475, 2054, 1688, 1441, 1239, 1114, 1069, 1096, 1200, 1388, 1646, 2007, 2408, 2817, 3393, 3482, 2878, 2430, 2023, 1667, 1403, 1200, 1078, 1024, 1065, 1168, 1353, 1597, 1948, 2344, 2817, 3350, 3482, 2909, 2430, 2007, 1678, 1410, 1216, 1087, 1044, 1069, 1184, 1367, 1616, 1963, 2365, 2817, 3350, 3576, 2942, 2499, 2070, 1744, 1473, 1269, 1143, 1096, 1128, 1233, 1425, 1667, 2023, 2430, 2909, 3350, 3726, 3043, 2597, 2190, 1853, 1578, 1374, 1245, 1211, 1233, 1339, 1532, 1791, 2137, 2547, 2975, 3576, 3890, 3189, 2730, 2365, 2007, 1721, 1515, 1374, 1326, 1367, 1489, 1699, 1934, 2284, 2702, 3114, 3726, 4197, 3393, 2909, 2547, 2190, 1906, 1678, 1550, 1515, 1532, 1667, 1866, 2137, 2475, 2878, 3350, 4069, 4720, 3624, 3114, 2730, 2408, 2137, 1906, 1779, 1721, 1767, 1866, 2086, 2386, 2702, 3043, 3576, 4480, 5282, 4008, 3350, 2975, 2622, 2365, 2172, 2038, 1992, 2007, 2137, 2365, 2597, 2942, 3308, 3947, 4986, 6000, 4720, 3834, 3350, 3008, 2730, 2499, 2386, 2386, 2408, 2522, 2675, 3008, 3350, 3779, 4637, 5867]
| }
| }, {
| "name": "4096x3072_A_1",
| "resolution": "4096x3072",
| "illumination": "A",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1103, 1860, 2129, 2265, 2305, 2335, 2287, 2269, 2258, 2261, 2295, 2292, 2287, 2220, 2120, 1812, 1087, 1590, 2050, 2234, 2326, 2333, 2262, 2193, 2109, 2088, 2122, 2166, 2247, 2291, 2281, 2180, 1998, 1584, 1879, 2179, 2300, 2347, 2268, 2157, 2029, 1933, 1894, 1912, 2006, 2111, 2223, 2270, 2264, 2124, 1823, 2026, 2250, 2346, 2307, 2184, 2000, 1852, 1732, 1693, 1716, 1820, 1962, 2124, 2266, 2275, 2186, 1991, 2121, 2288, 2327, 2251, 2070, 1853, 1671, 1537, 1486, 1528, 1632, 1808, 2002, 2179, 2284, 2234, 2058, 2176, 2296, 2313, 2164, 1945, 1700, 1503, 1366, 1309, 1347, 1474, 1660, 1890, 2118, 2241, 2260, 2131, 2186, 2324, 2275, 2105, 1841, 1590, 1375, 1232, 1165, 1208, 1338, 1545, 1784, 2045, 2229, 2254, 2151, 2221, 2313, 2247, 2039, 1762, 1506, 1287, 1133, 1072, 1112, 1256, 1463, 1706, 1988, 2203, 2270, 2185, 2229, 2309, 2235, 2030, 1743, 1462, 1242, 1088, 1024, 1074, 1211, 1414, 1670, 1958, 2177, 2266, 2175, 2221, 2295, 2247, 2034, 1746, 1486, 1260, 1110, 1055, 1090, 1229, 1443, 1687, 1967, 2195, 2270, 2159, 2204, 2297, 2252, 2062, 1797, 1545, 1329, 1191, 1125, 1166, 1296, 1499, 1743, 2005, 2207, 2271, 2142, 2148, 2278, 2272, 2118, 1890, 1656, 1446, 1303, 1250, 1288, 1414, 1604, 1834, 2062, 2241, 2252, 2088, 2084, 2269, 2292, 2185, 2002, 1790, 1591, 1464, 1412, 1452, 1558, 1745, 1943, 2144, 2259, 2208, 2050, 1974, 2186, 2283, 2251, 2099, 1931, 1756, 1642, 1610, 1634, 1732, 1887, 2056, 2213, 2250, 2168, 1942, 1846, 2116, 2238, 2278, 2194, 2074, 1942, 1836, 1803, 1823, 1922, 2033, 2159, 2223, 2204, 2073, 1801, 1596, 1981, 2154, 2247, 2235, 2188, 2100, 2026, 2000, 2008, 2069, 2140, 2228, 2222, 2121, 1973, 1556, 1084, 1812, 2059, 2194, 2270, 2244, 2224, 2201, 2177, 2180, 2210, 2228, 2244, 2176, 2059, 1790, 1084]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1091, 1704, 1976, 2059, 2104, 2117, 2078, 2050, 2034, 2031, 2045, 2089, 2075, 2022, 1910, 1691, 1077, 1499, 1890, 2046, 2107, 2102, 2051, 1981, 1938, 1908, 1921, 1958, 2025, 2074, 2070, 2009, 1841, 1495, 1740, 1997, 2098, 2112, 2043, 1951, 1861, 1772, 1734, 1767, 1837, 1924, 2012, 2070, 2061, 1931, 1702, 1876, 2052, 2131, 2087, 1979, 1840, 1713, 1611, 1582, 1611, 1676, 1812, 1940, 2041, 2072, 1986, 1814, 1945, 2072, 2110, 2028, 1877, 1717, 1563, 1455, 1412, 1438, 1543, 1677, 1843, 1981, 2048, 2028, 1868, 1995, 2096, 2086, 1974, 1792, 1603, 1430, 1306, 1263, 1292, 1403, 1565, 1747, 1923, 2033, 2038, 1909, 2028, 2105, 2062, 1933, 1715, 1505, 1323, 1192, 1142, 1182, 1296, 1466, 1663, 1861, 2011, 2048, 1921, 2028, 2083, 2045, 1881, 1654, 1431, 1249, 1112, 1063, 1104, 1208, 1390, 1603, 1822, 1983, 2041, 1956, 2013, 2094, 2034, 1857, 1625, 1404, 1214, 1080, 1024, 1061, 1183, 1372, 1583, 1805, 1980, 2032, 1963, 1999, 2076, 2032, 1861, 1639, 1420, 1232, 1097, 1049, 1085, 1195, 1372, 1589, 1808, 1983, 2041, 1943, 1990, 2077, 2029, 1896, 1679, 1472, 1282, 1155, 1108, 1145, 1256, 1429, 1641, 1836, 1993, 2042, 1928, 1958, 2074, 2059, 1945, 1747, 1558, 1384, 1267, 1215, 1250, 1351, 1520, 1702, 1887, 2015, 2032, 1896, 1908, 2057, 2068, 1992, 1843, 1670, 1511, 1402, 1359, 1383, 1477, 1621, 1800, 1941, 2042, 2008, 1842, 1841, 2015, 2072, 2035, 1923, 1784, 1646, 1552, 1517, 1539, 1624, 1750, 1887, 2016, 2045, 1973, 1782, 1714, 1938, 2040, 2077, 2006, 1912, 1790, 1717, 1682, 1697, 1772, 1876, 1971, 2037, 2033, 1911, 1666, 1509, 1855, 1995, 2063, 2061, 1995, 1931, 1865, 1842, 1855, 1899, 1977, 2016, 2029, 1967, 1809, 1464, 1076, 1704, 1917, 2029, 2061, 2089, 2032, 2000, 1998, 2018, 2013, 2055, 2054, 2015, 1917, 1657, 1073]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1094, 1719, 1980, 2071, 2116, 2094, 2062, 2023, 2003, 2017, 2031, 2052, 2072, 2026, 1913, 1682, 1075, 1511, 1909, 2067, 2119, 2107, 2049, 1986, 1937, 1897, 1911, 1963, 2030, 2059, 2060, 1999, 1851, 1487, 1742, 2008, 2103, 2117, 2054, 1961, 1866, 1777, 1738, 1759, 1827, 1923, 2011, 2061, 2051, 1935, 1680, 1879, 2056, 2128, 2099, 1978, 1845, 1709, 1611, 1580, 1597, 1681, 1807, 1939, 2040, 2070, 1990, 1791, 1949, 2076, 2115, 2033, 1887, 1717, 1560, 1447, 1407, 1439, 1530, 1674, 1833, 1980, 2052, 2012, 1864, 2014, 2100, 2104, 1984, 1787, 1604, 1429, 1305, 1260, 1296, 1399, 1557, 1743, 1912, 2038, 2042, 1899, 2040, 2110, 2079, 1938, 1719, 1509, 1323, 1200, 1140, 1176, 1288, 1461, 1649, 1860, 2009, 2039, 1938, 2047, 2095, 2056, 1885, 1658, 1438, 1255, 1115, 1066, 1099, 1208, 1389, 1607, 1822, 1982, 2039, 1960, 2024, 2106, 2045, 1852, 1630, 1405, 1214, 1083, 1024, 1065, 1180, 1360, 1576, 1800, 1973, 2030, 1934, 2017, 2095, 2049, 1870, 1643, 1418, 1231, 1099, 1047, 1080, 1197, 1371, 1587, 1799, 1977, 2039, 1940, 1995, 2088, 2034, 1896, 1687, 1469, 1282, 1157, 1110, 1146, 1255, 1424, 1627, 1831, 1991, 2026, 1925, 1983, 2078, 2071, 1945, 1761, 1557, 1385, 1258, 1216, 1247, 1350, 1506, 1698, 1892, 2013, 2022, 1893, 1926, 2062, 2073, 1997, 1847, 1658, 1508, 1392, 1360, 1381, 1475, 1618, 1800, 1945, 2033, 2012, 1845, 1830, 2019, 2084, 2046, 1923, 1789, 1650, 1550, 1508, 1533, 1614, 1750, 1881, 1991, 2043, 1970, 1772, 1742, 1942, 2058, 2075, 2004, 1896, 1786, 1709, 1682, 1697, 1763, 1866, 1958, 2028, 2009, 1895, 1658, 1496, 1851, 2006, 2060, 2052, 1994, 1914, 1854, 1833, 1845, 1888, 1965, 2008, 2026, 1964, 1812, 1457, 1079, 1694, 1927, 2034, 2051, 2059, 2006, 1987, 1962, 1958, 2006, 2020, 2051, 1991, 1893, 1653, 1074]
| },
| "lsc_samples_blue": {
| "uCoeff": [1091, 1674, 1876, 1996, 2014, 2079, 1997, 1966, 1951, 1981, 1966, 2010, 2014, 1978, 1893, 1631, 1074, 1478, 1812, 1971, 2020, 2018, 1957, 1912, 1831, 1829, 1831, 1898, 1957, 2002, 1986, 1919, 1779, 1466, 1686, 1898, 2031, 2022, 1978, 1887, 1781, 1699, 1676, 1689, 1769, 1887, 1932, 1989, 1962, 1849, 1643, 1783, 1948, 2017, 1965, 1877, 1781, 1655, 1556, 1536, 1556, 1635, 1736, 1863, 1965, 1968, 1898, 1751, 1848, 1959, 1993, 1936, 1821, 1655, 1534, 1418, 1380, 1418, 1501, 1626, 1785, 1893, 1931, 1910, 1785, 1903, 1973, 1980, 1863, 1711, 1545, 1393, 1294, 1244, 1282, 1366, 1520, 1669, 1850, 1920, 1940, 1837, 1923, 1978, 1948, 1808, 1643, 1464, 1287, 1183, 1150, 1174, 1269, 1419, 1587, 1784, 1904, 1930, 1858, 1913, 1977, 1928, 1779, 1572, 1398, 1228, 1112, 1069, 1095, 1191, 1351, 1537, 1744, 1886, 1915, 1865, 1909, 1955, 1908, 1762, 1558, 1367, 1192, 1077, 1024, 1065, 1162, 1321, 1500, 1706, 1854, 1924, 1862, 1896, 1960, 1900, 1744, 1563, 1371, 1207, 1086, 1044, 1068, 1176, 1332, 1512, 1712, 1859, 1915, 1849, 1889, 1946, 1919, 1773, 1605, 1419, 1253, 1139, 1094, 1124, 1219, 1377, 1543, 1739, 1877, 1930, 1813, 1869, 1940, 1935, 1826, 1669, 1495, 1340, 1231, 1201, 1219, 1309, 1456, 1621, 1789, 1906, 1909, 1822, 1816, 1926, 1946, 1893, 1750, 1589, 1447, 1337, 1297, 1330, 1425, 1571, 1696, 1841, 1931, 1895, 1770, 1751, 1898, 1951, 1935, 1826, 1693, 1553, 1466, 1442, 1451, 1544, 1662, 1789, 1892, 1936, 1882, 1722, 1657, 1833, 1929, 1942, 1891, 1798, 1682, 1610, 1572, 1601, 1652, 1763, 1877, 1927, 1898, 1818, 1616, 1455, 1749, 1871, 1937, 1910, 1859, 1796, 1736, 1714, 1715, 1773, 1859, 1896, 1922, 1856, 1735, 1425, 1074, 1631, 1826, 1927, 1963, 1946, 1893, 1867, 1880, 1880, 1907, 1917, 1963, 1927, 1811, 1617, 1072]
| }
| }, {
| "name": "4096x3072_CWF_100",
| "resolution": "4096x3072",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [7147, 4969, 4037, 3442, 3105, 2812, 2583, 2499, 2442, 2476, 2595, 2783, 3001, 3377, 3891, 4834, 6027, 5475, 4329, 3580, 3141, 2741, 2499, 2296, 2158, 2116, 2149, 2286, 2453, 2699, 3018, 3464, 4098, 5312, 5015, 3862, 3235, 2812, 2476, 2211, 2013, 1879, 1828, 1853, 1990, 2175, 2453, 2727, 3141, 3703, 4627, 4473, 3556, 3018, 2583, 2258, 1976, 1768, 1644, 1595, 1629, 1751, 1940, 2193, 2534, 2888, 3420, 4161, 4067, 3295, 2783, 2409, 2051, 1774, 1576, 1449, 1403, 1430, 1558, 1739, 1990, 2326, 2741, 3216, 3808, 3781, 3123, 2659, 2248, 1886, 1619, 1433, 1298, 1253, 1280, 1400, 1576, 1822, 2193, 2570, 3035, 3604, 3653, 3035, 2522, 2141, 1774, 1510, 1314, 1192, 1137, 1166, 1280, 1465, 1706, 2067, 2476, 2903, 3487, 3533, 2935, 2453, 2051, 1674, 1418, 1230, 1115, 1060, 1095, 1200, 1389, 1634, 1976, 2377, 2842, 3399, 3510, 2888, 2420, 1983, 1644, 1385, 1195, 1077, 1024, 1062, 1166, 1354, 1600, 1926, 2367, 2798, 3336, 3510, 2888, 2431, 2020, 1669, 1414, 1216, 1090, 1044, 1069, 1184, 1364, 1614, 1954, 2388, 2812, 3377, 3604, 2984, 2476, 2091, 1728, 1457, 1277, 1149, 1099, 1132, 1241, 1422, 1674, 2013, 2420, 2888, 3442, 3755, 3069, 2595, 2175, 1847, 1567, 1371, 1244, 1211, 1233, 1347, 1527, 1780, 2124, 2534, 3018, 3580, 4007, 3216, 2727, 2326, 1998, 1701, 1514, 1393, 1344, 1375, 1489, 1659, 1919, 2267, 2673, 3105, 3781, 4227, 3399, 2888, 2499, 2158, 1886, 1679, 1567, 1523, 1544, 1659, 1853, 2107, 2442, 2842, 3315, 4007, 4708, 3653, 3105, 2727, 2377, 2124, 1912, 1780, 1745, 1751, 1892, 2075, 2336, 2621, 3052, 3556, 4549, 5419, 4067, 3356, 2968, 2608, 2367, 2175, 2051, 1990, 2035, 2149, 2336, 2595, 2903, 3315, 4007, 5110, 5894, 4792, 3755, 3295, 2919, 2699, 2476, 2367, 2346, 2398, 2499, 2659, 2919, 3197, 3678, 4549, 5647]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7465, 5113, 4218, 3572, 3204, 2916, 2705, 2574, 2513, 2565, 2666, 2893, 3110, 3472, 4035, 4911, 6069, 5613, 4470, 3714, 3218, 2860, 2592, 2377, 2242, 2196, 2242, 2355, 2539, 2817, 3163, 3589, 4266, 5370, 5078, 4013, 3378, 2927, 2574, 2276, 2085, 1944, 1885, 1934, 2051, 2262, 2513, 2860, 3288, 3828, 4816, 4608, 3659, 3137, 2705, 2325, 2034, 1825, 1693, 1652, 1670, 1794, 2007, 2283, 2628, 3022, 3538, 4315, 4241, 3424, 2905, 2488, 2133, 1834, 1616, 1475, 1433, 1469, 1592, 1786, 2074, 2432, 2849, 3332, 4013, 3992, 3260, 2744, 2325, 1959, 1670, 1452, 1317, 1267, 1307, 1430, 1626, 1914, 2276, 2685, 3163, 3714, 3809, 3150, 2647, 2215, 1839, 1539, 1326, 1191, 1143, 1179, 1294, 1499, 1786, 2127, 2592, 3059, 3606, 3733, 3085, 2565, 2139, 1744, 1461, 1242, 1108, 1060, 1096, 1218, 1416, 1704, 2062, 2497, 2974, 3538, 3641, 3047, 2539, 2097, 1712, 1425, 1216, 1076, 1024, 1062, 1183, 1393, 1663, 2023, 2464, 2962, 3505, 3677, 3047, 2556, 2097, 1732, 1441, 1226, 1091, 1041, 1080, 1192, 1398, 1674, 2056, 2480, 2974, 3472, 3733, 3098, 2601, 2170, 1794, 1502, 1296, 1159, 1114, 1147, 1263, 1467, 1748, 2109, 2548, 3022, 3589, 3929, 3204, 2724, 2283, 1899, 1612, 1403, 1267, 1218, 1259, 1380, 1575, 1857, 2215, 2657, 3137, 3770, 4057, 3348, 2871, 2432, 2074, 1773, 1562, 1419, 1370, 1403, 1527, 1724, 2023, 2362, 2796, 3260, 3950, 4417, 3572, 3047, 2638, 2269, 1970, 1756, 1619, 1578, 1605, 1728, 1929, 2196, 2556, 2986, 3472, 4218, 4977, 3828, 3274, 2871, 2505, 2215, 2001, 1866, 1821, 1857, 1970, 2176, 2456, 2817, 3204, 3751, 4608, 5530, 4241, 3555, 3110, 2775, 2488, 2297, 2164, 2109, 2151, 2262, 2464, 2724, 3059, 3472, 4147, 5184, 6118, 4944, 3971, 3456, 3110, 2838, 2638, 2497, 2448, 2505, 2610, 2838, 3047, 3440, 3971, 4879, 5878]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7391, 5078, 4170, 3589, 3204, 2838, 2705, 2574, 2522, 2556, 2657, 2838, 3085, 3472, 4035, 4879, 5972, 5571, 4497, 3714, 3231, 2871, 2592, 2385, 2242, 2196, 2228, 2347, 2539, 2785, 3123, 3572, 4241, 5370, 5044, 3992, 3363, 2916, 2574, 2283, 2068, 1944, 1890, 1924, 2051, 2255, 2505, 2849, 3260, 3809, 4665, 4524, 3659, 3137, 2705, 2325, 2023, 1834, 1677, 1637, 1677, 1799, 1996, 2262, 2619, 3034, 3505, 4194, 4241, 3409, 2927, 2488, 2121, 1825, 1609, 1472, 1427, 1461, 1578, 1773, 2056, 2408, 2828, 3274, 3908, 3971, 3246, 2755, 2325, 1949, 1655, 1447, 1310, 1261, 1298, 1408, 1612, 1895, 2242, 2657, 3137, 3714, 3828, 3163, 2676, 2222, 1825, 1536, 1324, 1185, 1140, 1174, 1294, 1490, 1761, 2127, 2548, 3022, 3521, 3733, 3059, 2583, 2127, 1744, 1458, 1244, 1114, 1060, 1090, 1212, 1406, 1693, 2051, 2472, 2951, 3488, 3659, 3034, 2539, 2085, 1708, 1425, 1214, 1077, 1024, 1060, 1177, 1372, 1648, 2012, 2439, 2927, 3424, 3659, 3034, 2556, 2109, 1728, 1438, 1226, 1090, 1041, 1077, 1194, 1388, 1670, 2029, 2456, 2962, 3472, 3733, 3110, 2601, 2164, 1782, 1496, 1294, 1152, 1106, 1140, 1255, 1458, 1724, 2091, 2530, 2998, 3505, 3828, 3218, 2715, 2276, 1899, 1605, 1398, 1261, 1216, 1248, 1365, 1562, 1852, 2202, 2638, 3110, 3641, 4124, 3348, 2860, 2424, 2062, 1777, 1562, 1425, 1372, 1403, 1523, 1724, 1996, 2347, 2765, 3260, 3848, 4417, 3555, 3072, 2610, 2262, 1975, 1748, 1619, 1568, 1602, 1716, 1919, 2196, 2539, 2962, 3440, 4101, 4911, 3828, 3260, 2860, 2505, 2215, 2007, 1862, 1821, 1852, 1964, 2170, 2439, 2796, 3204, 3733, 4552, 5530, 4266, 3589, 3110, 2755, 2488, 2276, 2133, 2097, 2133, 2242, 2439, 2734, 3047, 3488, 4079, 5148, 6118, 4911, 4035, 3440, 3123, 2817, 2628, 2488, 2448, 2472, 2601, 2775, 3034, 3378, 3868, 4665, 5571]
| },
| "lsc_samples_blue": {
| "uCoeff": [7319, 4545, 3712, 3230, 2911, 2649, 2449, 2343, 2293, 2343, 2449, 2565, 2860, 3167, 3670, 4482, 5657, 4815, 3938, 3263, 2885, 2565, 2326, 2141, 2033, 2008, 2021, 2141, 2277, 2565, 2835, 3199, 3844, 4889, 4545, 3549, 2964, 2606, 2326, 2086, 1902, 1767, 1748, 1767, 1869, 2046, 2293, 2586, 2911, 3400, 4247, 4035, 3230, 2786, 2430, 2113, 1880, 1693, 1570, 1533, 1555, 1676, 1837, 2086, 2377, 2716, 3136, 3890, 3755, 2992, 2606, 2261, 1948, 1693, 1526, 1407, 1359, 1388, 1491, 1650, 1891, 2214, 2525, 2964, 3549, 3473, 2835, 2467, 2086, 1797, 1555, 1377, 1269, 1226, 1254, 1348, 1512, 1739, 2046, 2360, 2810, 3365, 3365, 2786, 2360, 1996, 1693, 1438, 1284, 1164, 1131, 1143, 1244, 1407, 1625, 1925, 2293, 2693, 3167, 3263, 2671, 2277, 1913, 1593, 1377, 1212, 1108, 1061, 1082, 1177, 1331, 1555, 1869, 2230, 2606, 3167, 3230, 2627, 2245, 1902, 1586, 1342, 1181, 1068, 1024, 1051, 1139, 1304, 1519, 1807, 2184, 2586, 3048, 3199, 2693, 2245, 1891, 1578, 1348, 1185, 1079, 1040, 1064, 1160, 1310, 1533, 1817, 2184, 2606, 3167, 3263, 2693, 2277, 1936, 1642, 1407, 1230, 1127, 1079, 1108, 1207, 1365, 1586, 1891, 2245, 2693, 3199, 3365, 2810, 2377, 2008, 1729, 1491, 1331, 1203, 1160, 1194, 1289, 1438, 1667, 1984, 2360, 2739, 3296, 3629, 2911, 2506, 2155, 1837, 1617, 1431, 1315, 1289, 1310, 1400, 1578, 1807, 2113, 2506, 2911, 3549, 3799, 3077, 2671, 2293, 2008, 1777, 1570, 1470, 1444, 1464, 1570, 1748, 1984, 2293, 2649, 3077, 3755, 4247, 3330, 2860, 2506, 2184, 1972, 1767, 1650, 1634, 1650, 1758, 1925, 2199, 2486, 2860, 3296, 4192, 4745, 3712, 3048, 2693, 2394, 2170, 1996, 1880, 1848, 1891, 1984, 2170, 2394, 2716, 3077, 3629, 4610, 5375, 4303, 3473, 3048, 2739, 2506, 2309, 2199, 2199, 2214, 2309, 2525, 2739, 3106, 3473, 4303, 5288]
| }
| }, {
| "name": "4096x3072_CWF_1",
| "resolution": "4096x3072",
| "illumination": "CWF",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1085, 1672, 1884, 1963, 2009, 1991, 1943, 1937, 1915, 1922, 1950, 1975, 1960, 1938, 1843, 1649, 1074, 1475, 1827, 1955, 2015, 1976, 1943, 1880, 1821, 1802, 1814, 1873, 1914, 1953, 1957, 1913, 1771, 1458, 1707, 1907, 1982, 1986, 1933, 1850, 1762, 1688, 1657, 1668, 1745, 1825, 1919, 1941, 1941, 1858, 1641, 1814, 1958, 2005, 1957, 1872, 1746, 1626, 1545, 1510, 1532, 1612, 1718, 1828, 1928, 1941, 1908, 1743, 1865, 1970, 1975, 1922, 1782, 1632, 1500, 1404, 1367, 1387, 1484, 1603, 1737, 1868, 1952, 1937, 1793, 1887, 1977, 1971, 1866, 1695, 1530, 1393, 1280, 1241, 1263, 1364, 1494, 1645, 1828, 1919, 1937, 1831, 1916, 1991, 1932, 1824, 1630, 1452, 1295, 1186, 1134, 1161, 1263, 1412, 1575, 1771, 1905, 1927, 1859, 1914, 1973, 1914, 1777, 1560, 1378, 1220, 1113, 1060, 1094, 1191, 1352, 1527, 1722, 1867, 1927, 1867, 1919, 1960, 1901, 1732, 1539, 1350, 1188, 1076, 1024, 1062, 1160, 1322, 1502, 1690, 1868, 1915, 1857, 1906, 1950, 1901, 1754, 1556, 1374, 1207, 1089, 1044, 1068, 1176, 1329, 1511, 1706, 1874, 1912, 1859, 1899, 1966, 1905, 1788, 1592, 1405, 1260, 1145, 1097, 1128, 1226, 1374, 1549, 1732, 1871, 1920, 1844, 1878, 1952, 1934, 1815, 1665, 1486, 1337, 1230, 1201, 1219, 1316, 1452, 1613, 1780, 1898, 1929, 1824, 1848, 1937, 1945, 1868, 1743, 1572, 1446, 1354, 1313, 1338, 1425, 1538, 1685, 1830, 1916, 1891, 1786, 1758, 1900, 1941, 1907, 1804, 1678, 1554, 1480, 1449, 1461, 1538, 1653, 1769, 1873, 1918, 1869, 1707, 1655, 1842, 1925, 1941, 1871, 1789, 1687, 1611, 1591, 1589, 1672, 1755, 1845, 1884, 1902, 1812, 1628, 1469, 1764, 1873, 1934, 1903, 1861, 1798, 1746, 1712, 1734, 1781, 1841, 1895, 1904, 1859, 1749, 1438, 1073, 1643, 1804, 1906, 1921, 1930, 1880, 1855, 1855, 1874, 1893, 1908, 1921, 1868, 1782, 1603, 1070]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1088, 1695, 1936, 2013, 2056, 2047, 2015, 1983, 1960, 1977, 1992, 2035, 2012, 1975, 1884, 1662, 1074, 1489, 1862, 2004, 2051, 2042, 2001, 1934, 1880, 1859, 1880, 1919, 1968, 2018, 2025, 1958, 1812, 1464, 1718, 1954, 2044, 2048, 1994, 1895, 1816, 1739, 1702, 1731, 1790, 1885, 1956, 2012, 2005, 1896, 1673, 1845, 1996, 2064, 2030, 1919, 1790, 1672, 1586, 1558, 1567, 1647, 1769, 1890, 1984, 2007, 1952, 1778, 1913, 2024, 2041, 1973, 1843, 1680, 1534, 1427, 1394, 1422, 1514, 1641, 1799, 1937, 2011, 1985, 1850, 1953, 2039, 2020, 1919, 1752, 1574, 1411, 1298, 1254, 1289, 1391, 1536, 1717, 1885, 1986, 1995, 1866, 1968, 2046, 2008, 1876, 1682, 1477, 1306, 1185, 1140, 1174, 1276, 1442, 1639, 1814, 1975, 2002, 1900, 1985, 2048, 1984, 1841, 1618, 1416, 1231, 1107, 1060, 1095, 1208, 1376, 1585, 1785, 1942, 1993, 1916, 1967, 2040, 1976, 1816, 1596, 1386, 1208, 1075, 1024, 1062, 1176, 1358, 1555, 1762, 1929, 1997, 1918, 1966, 2029, 1978, 1810, 1608, 1398, 1216, 1090, 1041, 1079, 1184, 1360, 1560, 1780, 1931, 1993, 1893, 1943, 2021, 1980, 1844, 1646, 1445, 1278, 1154, 1112, 1143, 1247, 1414, 1609, 1801, 1948, 1984, 1894, 1933, 2013, 2008, 1890, 1705, 1524, 1366, 1251, 1207, 1244, 1346, 1493, 1673, 1843, 1969, 1983, 1883, 1862, 1992, 2023, 1937, 1799, 1631, 1488, 1377, 1337, 1363, 1458, 1591, 1762, 1891, 1982, 1955, 1832, 1801, 1964, 2019, 1990, 1880, 1741, 1616, 1524, 1495, 1512, 1594, 1710, 1830, 1941, 1989, 1927, 1756, 1701, 1896, 1998, 2018, 1951, 1853, 1753, 1678, 1651, 1671, 1730, 1825, 1921, 1989, 1968, 1872, 1638, 1481, 1806, 1946, 2001, 1995, 1936, 1880, 1825, 1797, 1816, 1857, 1921, 1967, 1977, 1916, 1783, 1445, 1075, 1667, 1865, 1968, 2012, 2005, 1975, 1935, 1919, 1940, 1959, 2005, 1982, 1962, 1865, 1657, 1073]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1088, 1689, 1922, 2020, 2056, 2005, 2015, 1983, 1966, 1972, 1986, 2005, 2000, 1975, 1884, 1657, 1073, 1485, 1868, 2004, 2057, 2048, 2001, 1939, 1880, 1859, 1870, 1914, 1968, 2001, 2007, 1952, 1806, 1464, 1712, 1947, 2037, 2042, 1994, 1900, 1803, 1739, 1705, 1723, 1790, 1880, 1951, 2006, 1992, 1891, 1647, 1826, 1996, 2064, 2030, 1919, 1781, 1680, 1573, 1546, 1573, 1651, 1761, 1875, 1979, 2013, 1939, 1750, 1913, 2018, 2053, 1973, 1834, 1673, 1528, 1424, 1388, 1414, 1501, 1631, 1786, 1921, 1999, 1961, 1821, 1946, 2032, 2026, 1919, 1744, 1561, 1406, 1291, 1248, 1280, 1371, 1524, 1702, 1861, 1969, 1983, 1866, 1975, 2052, 2026, 1882, 1671, 1475, 1304, 1179, 1137, 1169, 1276, 1434, 1619, 1814, 1948, 1984, 1871, 1985, 2035, 1995, 1832, 1618, 1414, 1233, 1112, 1060, 1089, 1203, 1367, 1576, 1777, 1926, 1981, 1898, 1973, 2033, 1976, 1808, 1592, 1386, 1206, 1076, 1024, 1060, 1170, 1339, 1542, 1754, 1913, 1980, 1888, 1959, 2023, 1978, 1819, 1605, 1396, 1216, 1089, 1041, 1076, 1186, 1351, 1557, 1760, 1916, 1987, 1893, 1943, 2027, 1980, 1840, 1636, 1439, 1276, 1148, 1104, 1136, 1240, 1406, 1589, 1788, 1937, 1973, 1865, 1901, 2020, 2003, 1885, 1705, 1518, 1362, 1246, 1206, 1233, 1332, 1482, 1669, 1834, 1958, 1971, 1843, 1880, 1992, 2017, 1932, 1791, 1634, 1488, 1382, 1339, 1363, 1454, 1591, 1742, 1882, 1965, 1955, 1804, 1801, 1958, 2032, 1973, 1875, 1745, 1610, 1524, 1487, 1510, 1584, 1703, 1830, 1931, 1977, 1915, 1729, 1690, 1896, 1992, 2012, 1951, 1853, 1757, 1675, 1651, 1667, 1725, 1821, 1910, 1978, 1968, 1867, 1628, 1481, 1812, 1958, 2001, 1984, 1936, 1866, 1803, 1789, 1803, 1843, 1906, 1972, 1971, 1922, 1767, 1442, 1075, 1662, 1884, 1962, 2018, 1993, 1969, 1930, 1919, 1920, 1953, 1971, 1976, 1938, 1836, 1622, 1069]
| },
| "lsc_samples_blue": {
| "uCoeff": [1087, 1602, 1791, 1881, 1917, 1903, 1864, 1840, 1822, 1840, 1864, 1857, 1893, 1856, 1780, 1592, 1070, 1408, 1732, 1840, 1895, 1879, 1835, 1775, 1733, 1725, 1724, 1775, 1805, 1879, 1872, 1816, 1709, 1416, 1627, 1810, 1864, 1876, 1839, 1763, 1679, 1601, 1594, 1601, 1654, 1735, 1819, 1865, 1841, 1763, 1576, 1714, 1838, 1891, 1865, 1773, 1673, 1565, 1483, 1457, 1470, 1552, 1640, 1754, 1834, 1856, 1803, 1681, 1778, 1844, 1879, 1826, 1706, 1566, 1457, 1366, 1327, 1349, 1427, 1531, 1664, 1796, 1836, 1832, 1721, 1790, 1846, 1859, 1754, 1626, 1476, 1343, 1253, 1215, 1239, 1317, 1439, 1581, 1727, 1797, 1835, 1756, 1818, 1871, 1834, 1720, 1564, 1388, 1267, 1159, 1128, 1139, 1229, 1361, 1509, 1669, 1794, 1826, 1751, 1819, 1842, 1805, 1675, 1493, 1341, 1203, 1107, 1061, 1081, 1170, 1300, 1462, 1643, 1775, 1810, 1785, 1819, 1829, 1791, 1672, 1491, 1311, 1174, 1068, 1024, 1051, 1134, 1277, 1435, 1602, 1753, 1808, 1753, 1796, 1853, 1785, 1659, 1481, 1315, 1177, 1078, 1040, 1063, 1153, 1281, 1444, 1605, 1747, 1810, 1785, 1783, 1826, 1784, 1677, 1523, 1361, 1216, 1123, 1078, 1105, 1195, 1324, 1478, 1645, 1764, 1826, 1762, 1756, 1835, 1807, 1701, 1573, 1421, 1301, 1191, 1153, 1183, 1263, 1376, 1525, 1684, 1797, 1802, 1735, 1744, 1810, 1825, 1757, 1624, 1504, 1375, 1284, 1264, 1279, 1348, 1473, 1602, 1730, 1825, 1810, 1721, 1660, 1781, 1834, 1783, 1701, 1595, 1466, 1399, 1381, 1394, 1466, 1573, 1684, 1783, 1823, 1781, 1650, 1576, 1741, 1819, 1822, 1750, 1684, 1578, 1510, 1504, 1510, 1572, 1651, 1760, 1811, 1819, 1731, 1566, 1401, 1677, 1761, 1805, 1784, 1738, 1678, 1625, 1611, 1633, 1670, 1738, 1784, 1816, 1772, 1657, 1387, 1068, 1562, 1723, 1810, 1836, 1825, 1781, 1751, 1763, 1760, 1781, 1836, 1836, 1832, 1723, 1562, 1067]
| }
| }, {
| "name": "4096x3072_D50_100",
| "resolution": "4096x3072",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 5654, 4505, 3887, 3489, 3164, 2911, 2784, 2754, 2769, 2878, 3125, 3419, 3801, 4427, 5356, 6521, 6128, 4802, 3978, 3537, 3125, 2784, 2574, 2393, 2348, 2404, 2535, 2769, 3050, 3442, 3858, 4670, 5985, 5531, 4389, 3664, 3184, 2769, 2450, 2216, 2047, 1991, 2047, 2178, 2427, 2725, 3088, 3513, 4139, 5193, 4990, 3978, 3396, 2911, 2523, 2169, 1931, 1770, 1716, 1758, 1902, 2142, 2450, 2846, 3286, 3829, 4670, 4586, 3717, 3164, 2682, 2275, 1931, 1694, 1540, 1482, 1517, 1661, 1888, 2197, 2613, 3069, 3587, 4315, 4315, 3562, 2997, 2523, 2072, 1740, 1504, 1352, 1284, 1331, 1478, 1694, 2015, 2404, 2895, 3442, 4106, 4139, 3419, 2846, 2370, 1931, 1593, 1363, 1208, 1156, 1191, 1331, 1559, 1867, 2285, 2769, 3265, 3917, 4041, 3308, 2769, 2245, 1821, 1499, 1268, 1116, 1060, 1092, 1229, 1453, 1758, 2197, 2682, 3224, 3801, 3978, 3265, 2725, 2206, 1776, 1457, 1232, 1078, 1024, 1058, 1194, 1412, 1722, 2124, 2668, 3184, 3858, 4041, 3286, 2754, 2226, 1801, 1478, 1241, 1099, 1047, 1080, 1211, 1436, 1746, 2142, 2668, 3224, 3829, 4041, 3396, 2800, 2306, 1881, 1554, 1318, 1167, 1109, 1141, 1278, 1499, 1801, 2235, 2725, 3286, 3917, 4243, 3465, 2895, 2438, 2023, 1683, 1444, 1284, 1232, 1275, 1408, 1634, 1946, 2359, 2831, 3396, 4106, 4389, 3638, 3069, 2613, 2197, 1860, 1618, 1465, 1401, 1436, 1578, 1795, 2132, 2535, 3032, 3513, 4278, 4757, 3858, 3286, 2815, 2415, 2072, 1814, 1683, 1624, 1650, 1801, 2023, 2348, 2754, 3224, 3717, 4586, 5356, 4139, 3489, 3069, 2682, 2338, 2097, 1931, 1895, 1924, 2080, 2285, 2613, 2997, 3442, 4041, 4990, 5985, 4586, 3772, 3308, 2962, 2654, 2427, 2275, 2226, 2255, 2393, 2613, 2911, 3265, 3745, 4466, 5654, 6521, 5301, 4243, 3691, 3308, 3050, 2800, 2668, 2640, 2654, 2784, 2979, 3286, 3717, 4243, 5089, 6438]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7778, 5149, 4178, 3656, 3207, 2924, 2718, 2584, 2530, 2565, 2678, 2878, 3138, 3449, 4017, 5008, 6144, 5539, 4513, 3769, 3279, 2901, 2611, 2405, 2264, 2216, 2236, 2366, 2565, 2856, 3179, 3619, 4326, 5498, 5149, 4039, 3417, 2996, 2630, 2328, 2101, 1939, 1899, 1939, 2059, 2278, 2539, 2890, 3308, 3869, 4874, 4657, 3730, 3193, 2749, 2358, 2059, 1842, 1700, 1654, 1689, 1805, 2020, 2314, 2649, 3072, 3584, 4326, 4275, 3482, 2960, 2530, 2163, 1851, 1621, 1492, 1436, 1477, 1603, 1788, 2089, 2462, 2867, 3369, 3974, 3995, 3323, 2812, 2366, 1976, 1681, 1462, 1320, 1274, 1308, 1428, 1632, 1914, 2292, 2718, 3179, 3769, 3869, 3193, 2698, 2243, 1856, 1546, 1337, 1193, 1144, 1181, 1303, 1501, 1783, 2157, 2593, 3098, 3584, 3769, 3098, 2602, 2157, 1758, 1462, 1250, 1111, 1067, 1099, 1221, 1425, 1704, 2071, 2512, 3021, 3549, 3711, 3072, 2574, 2125, 1724, 1428, 1217, 1082, 1024, 1066, 1189, 1387, 1665, 2042, 2504, 2984, 3482, 3730, 3098, 2621, 2119, 1741, 1448, 1229, 1093, 1047, 1085, 1201, 1403, 1681, 2059, 2512, 3021, 3566, 3808, 3179, 2659, 2209, 1805, 1507, 1296, 1155, 1111, 1141, 1258, 1468, 1749, 2119, 2584, 3059, 3619, 3931, 3235, 2769, 2328, 1919, 1632, 1409, 1269, 1223, 1256, 1374, 1583, 1856, 2236, 2678, 3165, 3730, 4178, 3417, 2924, 2478, 2089, 1783, 1566, 1422, 1367, 1406, 1530, 1728, 2025, 2397, 2834, 3323, 3952, 4486, 3602, 3085, 2668, 2285, 1987, 1770, 1625, 1572, 1610, 1728, 1939, 2222, 2602, 3034, 3515, 4202, 4974, 3910, 3323, 2913, 2539, 2250, 2009, 1870, 1828, 1842, 1976, 2189, 2470, 2823, 3235, 3769, 4598, 5581, 4301, 3637, 3165, 2801, 2530, 2299, 2170, 2132, 2157, 2278, 2487, 2738, 3085, 3532, 4178, 5223, 6249, 5008, 3974, 3498, 3125, 2834, 2659, 2512, 2470, 2530, 2611, 2834, 3085, 3465, 3995, 4779, 5802]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7707, 5085, 4208, 3661, 3240, 2940, 2732, 2606, 2551, 2551, 2712, 2882, 3129, 3470, 3979, 4947, 5858, 5632, 4464, 3755, 3269, 2894, 2615, 2408, 2267, 2219, 2260, 2377, 2578, 2827, 3156, 3589, 4257, 5423, 5156, 4023, 3390, 2964, 2606, 2317, 2104, 1963, 1902, 1947, 2062, 2281, 2533, 2871, 3283, 3833, 4663, 4663, 3716, 3183, 2763, 2370, 2068, 1840, 1703, 1645, 1691, 1812, 2017, 2302, 2643, 3063, 3554, 4232, 4257, 3470, 2964, 2525, 2160, 1840, 1634, 1485, 1438, 1473, 1592, 1799, 2074, 2424, 2860, 3343, 3915, 4001, 3313, 2805, 2347, 1984, 1683, 1458, 1312, 1267, 1305, 1422, 1627, 1912, 2260, 2682, 3156, 3736, 3833, 3169, 2682, 2232, 1844, 1548, 1339, 1196, 1140, 1173, 1300, 1500, 1769, 2141, 2578, 3063, 3520, 3755, 3076, 2606, 2147, 1752, 1464, 1249, 1114, 1067, 1099, 1212, 1422, 1683, 2062, 2499, 2976, 3453, 3679, 3063, 2578, 2116, 1719, 1422, 1220, 1081, 1024, 1066, 1183, 1381, 1656, 2011, 2457, 2952, 3453, 3716, 3089, 2569, 2135, 1731, 1438, 1233, 1096, 1046, 1078, 1198, 1400, 1672, 2045, 2465, 2976, 3421, 3774, 3142, 2653, 2205, 1799, 1500, 1294, 1160, 1104, 1140, 1262, 1467, 1735, 2098, 2542, 3013, 3520, 3874, 3240, 2763, 2302, 1917, 1627, 1408, 1265, 1222, 1249, 1371, 1578, 1844, 2219, 2653, 3142, 3698, 4113, 3405, 2894, 2474, 2080, 1781, 1564, 1424, 1371, 1400, 1522, 1727, 2011, 2377, 2805, 3298, 3874, 4492, 3589, 3102, 2653, 2295, 1984, 1773, 1627, 1568, 1609, 1731, 1942, 2219, 2569, 3001, 3503, 4137, 4914, 3874, 3328, 2894, 2533, 2239, 2028, 1868, 1826, 1854, 1984, 2179, 2474, 2805, 3211, 3716, 4548, 5589, 4307, 3625, 3169, 2827, 2516, 2302, 2166, 2122, 2147, 2274, 2474, 2752, 3076, 3503, 4137, 5085, 5952, 4914, 4023, 3487, 3129, 2838, 2634, 2542, 2482, 2465, 2624, 2805, 3051, 3453, 3915, 4693, 5765]
| },
| "lsc_samples_blue": {
| "uCoeff": [7344, 4760, 3892, 3347, 2978, 2737, 2516, 2412, 2397, 2397, 2501, 2719, 2978, 3319, 3819, 4598, 6125, 5056, 4048, 3374, 2978, 2683, 2397, 2226, 2111, 2047, 2078, 2202, 2397, 2648, 2956, 3319, 3969, 5120, 4650, 3615, 3115, 2719, 2397, 2144, 1967, 1826, 1785, 1809, 1948, 2133, 2369, 2701, 3068, 3583, 4447, 4216, 3319, 2893, 2516, 2179, 1939, 1718, 1615, 1565, 1590, 1710, 1903, 2167, 2485, 2813, 3266, 4008, 3783, 3139, 2683, 2315, 2006, 1732, 1553, 1427, 1384, 1403, 1518, 1703, 1958, 2276, 2648, 3068, 3714, 3714, 2956, 2532, 2167, 1842, 1596, 1403, 1279, 1229, 1267, 1361, 1553, 1778, 2111, 2470, 2914, 3461, 3432, 2873, 2426, 2047, 1725, 1469, 1287, 1169, 1129, 1165, 1251, 1432, 1668, 1987, 2356, 2794, 3292, 3403, 2775, 2342, 1977, 1641, 1398, 1221, 1117, 1070, 1090, 1182, 1361, 1583, 1912, 2315, 2719, 3319, 3347, 2737, 2315, 1939, 1615, 1361, 1186, 1070, 1024, 1062, 1159, 1304, 1565, 1868, 2276, 2683, 3266, 3347, 2756, 2315, 1958, 1609, 1384, 1200, 1084, 1053, 1073, 1165, 1329, 1571, 1885, 2276, 2719, 3214, 3403, 2794, 2397, 1996, 1661, 1427, 1244, 1133, 1096, 1123, 1229, 1384, 1621, 1921, 2356, 2794, 3292, 3521, 2893, 2470, 2100, 1778, 1530, 1338, 1221, 1175, 1207, 1304, 1485, 1725, 2057, 2441, 2873, 3403, 3681, 3045, 2580, 2226, 1921, 1661, 1464, 1347, 1299, 1334, 1432, 1634, 1859, 2190, 2580, 2978, 3647, 3930, 3189, 2775, 2412, 2100, 1817, 1615, 1496, 1464, 1496, 1602, 1793, 2036, 2383, 2756, 3189, 3930, 4399, 3403, 2956, 2614, 2289, 2026, 1817, 1710, 1661, 1696, 1809, 2006, 2276, 2580, 2956, 3432, 4260, 4994, 3783, 3214, 2813, 2501, 2251, 2100, 1939, 1903, 1939, 2057, 2264, 2516, 2794, 3240, 3819, 4994, 5616, 4496, 3615, 3164, 2813, 2631, 2383, 2264, 2264, 2276, 2397, 2580, 2832, 3139, 3647, 4447, 5392]
| }
| }, {
| "name": "4096x3072_D50_1",
| "resolution": "4096x3072",
| "illumination": "D50",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1097, 1784, 2018, 2136, 2191, 2181, 2136, 2113, 2111, 2104, 2117, 2160, 2158, 2102, 1996, 1735, 1079, 1541, 1942, 2100, 2200, 2189, 2121, 2066, 1986, 1968, 1994, 2040, 2111, 2148, 2156, 2056, 1910, 1527, 1796, 2071, 2167, 2187, 2117, 2016, 1913, 1819, 1785, 1819, 1885, 2000, 2089, 2135, 2102, 1993, 1738, 1933, 2114, 2191, 2153, 2055, 1892, 1758, 1651, 1613, 1641, 1735, 1872, 2004, 2114, 2137, 2059, 1859, 2008, 2146, 2181, 2099, 1948, 1759, 1601, 1485, 1438, 1464, 1573, 1724, 1890, 2054, 2130, 2092, 1933, 2054, 2176, 2166, 2055, 1840, 1633, 1458, 1331, 1270, 1311, 1434, 1594, 1796, 1973, 2107, 2121, 1988, 2080, 2175, 2129, 1987, 1756, 1525, 1340, 1202, 1153, 1185, 1310, 1495, 1705, 1927, 2082, 2101, 2005, 2095, 2159, 2111, 1919, 1681, 1451, 1256, 1114, 1060, 1091, 1219, 1409, 1629, 1884, 2057, 2117, 2010, 2088, 2149, 2093, 1897, 1649, 1415, 1223, 1077, 1024, 1058, 1187, 1375, 1604, 1836, 2057, 2109, 2045, 2095, 2148, 2102, 1905, 1665, 1432, 1230, 1098, 1047, 1079, 1202, 1394, 1620, 1843, 2048, 2117, 2019, 2047, 2164, 2101, 1942, 1716, 1491, 1298, 1162, 1107, 1137, 1261, 1442, 1651, 1891, 2056, 2111, 2005, 2031, 2132, 2107, 1996, 1802, 1585, 1403, 1267, 1221, 1259, 1371, 1543, 1742, 1942, 2070, 2101, 1988, 1953, 2113, 2130, 2054, 1890, 1701, 1536, 1418, 1365, 1392, 1501, 1649, 1842, 2004, 2110, 2061, 1923, 1879, 2070, 2137, 2096, 1980, 1819, 1663, 1578, 1534, 1550, 1653, 1781, 1934, 2059, 2106, 2018, 1840, 1766, 1993, 2092, 2125, 2062, 1938, 1825, 1728, 1709, 1723, 1812, 1901, 2019, 2086, 2071, 1963, 1703, 1527, 1890, 2025, 2093, 2099, 2040, 1968, 1903, 1881, 1889, 1945, 2014, 2071, 2073, 2015, 1861, 1493, 1079, 1726, 1943, 2060, 2105, 2119, 2071, 2041, 2040, 2033, 2061, 2081, 2095, 2070, 1943, 1691, 1078]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1092, 1701, 1925, 2046, 2058, 2051, 2022, 1989, 1971, 1977, 1999, 2026, 2025, 1966, 1879, 1678, 1075, 1481, 1872, 2024, 2080, 2065, 2013, 1953, 1895, 1873, 1876, 1927, 1984, 2040, 2033, 1969, 1827, 1477, 1730, 1962, 2060, 2085, 2030, 1931, 1828, 1735, 1713, 1735, 1796, 1896, 1973, 2028, 2013, 1909, 1683, 1856, 2022, 2091, 2056, 1941, 1809, 1686, 1592, 1560, 1583, 1656, 1779, 1911, 1997, 2032, 1969, 1781, 1922, 2048, 2071, 2000, 1865, 1694, 1539, 1442, 1396, 1429, 1523, 1643, 1811, 1956, 2021, 2001, 1839, 1954, 2067, 2059, 1947, 1765, 1583, 1420, 1301, 1260, 1290, 1389, 1541, 1717, 1896, 2005, 2002, 1883, 1989, 2067, 2039, 1897, 1696, 1483, 1316, 1187, 1141, 1176, 1284, 1444, 1637, 1835, 1976, 2021, 1892, 1998, 2054, 2007, 1854, 1629, 1417, 1239, 1110, 1067, 1098, 1211, 1384, 1585, 1791, 1951, 2016, 1920, 1992, 2052, 1998, 1837, 1605, 1389, 1209, 1081, 1024, 1066, 1182, 1352, 1556, 1776, 1954, 2008, 1909, 1984, 2054, 2019, 1826, 1615, 1405, 1219, 1092, 1047, 1084, 1192, 1364, 1566, 1782, 1951, 2016, 1926, 1968, 2060, 2016, 1872, 1655, 1449, 1278, 1150, 1109, 1137, 1242, 1415, 1609, 1808, 1970, 2002, 1904, 1934, 2027, 2034, 1921, 1721, 1541, 1372, 1253, 1212, 1241, 1340, 1500, 1672, 1857, 1982, 1996, 1871, 1895, 2021, 2051, 1967, 1811, 1639, 1491, 1380, 1334, 1365, 1460, 1594, 1763, 1914, 2003, 1982, 1833, 1817, 1975, 2038, 2008, 1891, 1754, 1628, 1529, 1490, 1516, 1594, 1718, 1848, 1968, 2013, 1943, 1752, 1700, 1922, 2020, 2041, 1973, 1877, 1759, 1681, 1657, 1659, 1734, 1834, 1929, 1992, 1982, 1878, 1636, 1486, 1821, 1976, 2026, 2010, 1962, 1882, 1829, 1814, 1820, 1867, 1935, 1975, 1989, 1938, 1791, 1449, 1076, 1678, 1866, 1985, 2019, 2003, 1988, 1945, 1933, 1956, 1959, 2003, 2000, 1972, 1872, 1640, 1072]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1091, 1691, 1933, 2048, 2073, 2060, 2031, 2003, 1984, 1969, 2019, 2029, 2021, 1974, 1868, 1668, 1072, 1491, 1860, 2019, 2075, 2061, 2015, 1955, 1897, 1876, 1892, 1934, 1992, 2024, 2022, 1958, 1810, 1470, 1732, 1957, 2049, 2068, 2015, 1924, 1830, 1753, 1715, 1741, 1798, 1898, 1969, 2018, 2002, 1898, 1647, 1858, 2017, 2086, 2065, 1949, 1816, 1684, 1595, 1552, 1585, 1662, 1777, 1903, 1993, 2027, 1957, 1759, 1917, 2043, 2073, 1997, 1863, 1685, 1550, 1436, 1398, 1425, 1514, 1652, 1799, 1932, 2017, 1990, 1823, 1955, 2063, 2055, 1934, 1771, 1585, 1416, 1293, 1254, 1287, 1383, 1537, 1715, 1874, 1984, 1992, 1873, 1977, 2055, 2029, 1889, 1686, 1485, 1318, 1190, 1137, 1168, 1282, 1443, 1626, 1824, 1966, 2004, 1870, 1993, 2043, 2010, 1847, 1625, 1419, 1238, 1112, 1067, 1098, 1203, 1381, 1568, 1785, 1943, 1994, 1886, 1980, 2048, 2001, 1830, 1601, 1384, 1212, 1080, 1024, 1066, 1176, 1347, 1549, 1753, 1925, 1992, 1899, 1979, 2050, 1987, 1838, 1607, 1396, 1223, 1095, 1046, 1077, 1189, 1362, 1559, 1772, 1922, 1994, 1875, 1957, 2042, 2012, 1869, 1650, 1443, 1276, 1155, 1102, 1136, 1246, 1414, 1598, 1793, 1945, 1980, 1870, 1916, 2030, 2031, 1903, 1719, 1537, 1371, 1249, 1211, 1234, 1337, 1495, 1662, 1846, 1967, 1985, 1861, 1877, 2016, 2035, 1964, 1804, 1637, 1489, 1381, 1338, 1360, 1453, 1593, 1753, 1901, 1987, 1971, 1811, 1819, 1970, 2046, 1999, 1898, 1752, 1630, 1531, 1487, 1516, 1596, 1720, 1846, 1949, 1997, 1939, 1737, 1690, 1911, 2022, 2031, 1969, 1869, 1773, 1679, 1655, 1669, 1740, 1828, 1932, 1983, 1971, 1862, 1627, 1487, 1822, 1971, 2028, 2024, 1954, 1884, 1826, 1806, 1813, 1865, 1927, 1982, 1985, 1927, 1781, 1435, 1073, 1663, 1880, 1980, 2021, 2005, 1973, 1963, 1940, 1916, 1967, 1987, 1984, 1967, 1849, 1626, 1071]
| },
| "lsc_samples_blue": {
| "uCoeff": [1087, 1637, 1843, 1926, 1949, 1950, 1903, 1883, 1887, 1874, 1894, 1940, 1949, 1915, 1822, 1611, 1075, 1433, 1759, 1880, 1939, 1944, 1879, 1832, 1788, 1753, 1765, 1816, 1879, 1925, 1928, 1860, 1740, 1439, 1645, 1830, 1930, 1936, 1884, 1803, 1728, 1647, 1623, 1634, 1713, 1796, 1866, 1927, 1909, 1820, 1610, 1755, 1871, 1944, 1917, 1818, 1718, 1586, 1521, 1484, 1500, 1579, 1690, 1810, 1898, 1904, 1851, 1708, 1786, 1905, 1921, 1861, 1749, 1597, 1480, 1384, 1349, 1363, 1450, 1574, 1714, 1836, 1902, 1875, 1767, 1866, 1901, 1897, 1810, 1661, 1511, 1366, 1262, 1218, 1251, 1328, 1474, 1611, 1771, 1861, 1882, 1786, 1841, 1913, 1874, 1756, 1590, 1416, 1269, 1164, 1126, 1160, 1236, 1383, 1544, 1713, 1832, 1875, 1793, 1868, 1894, 1845, 1722, 1533, 1360, 1211, 1115, 1070, 1089, 1174, 1327, 1485, 1675, 1828, 1866, 1838, 1861, 1884, 1835, 1700, 1515, 1329, 1179, 1070, 1024, 1062, 1153, 1277, 1473, 1647, 1811, 1857, 1831, 1848, 1884, 1828, 1708, 1507, 1347, 1191, 1083, 1053, 1072, 1158, 1298, 1475, 1655, 1804, 1866, 1801, 1831, 1875, 1857, 1720, 1538, 1379, 1229, 1129, 1094, 1120, 1215, 1341, 1506, 1666, 1832, 1875, 1793, 1805, 1872, 1861, 1764, 1611, 1455, 1308, 1208, 1167, 1195, 1277, 1416, 1570, 1734, 1844, 1863, 1768, 1758, 1866, 1865, 1803, 1686, 1540, 1403, 1313, 1273, 1301, 1376, 1518, 1641, 1780, 1865, 1838, 1749, 1690, 1823, 1885, 1855, 1764, 1625, 1502, 1421, 1398, 1421, 1492, 1607, 1720, 1837, 1876, 1823, 1690, 1602, 1764, 1861, 1880, 1816, 1721, 1616, 1557, 1525, 1546, 1610, 1707, 1808, 1862, 1861, 1773, 1578, 1426, 1695, 1822, 1861, 1843, 1788, 1748, 1667, 1650, 1667, 1719, 1797, 1851, 1853, 1831, 1703, 1426, 1070, 1594, 1764, 1855, 1871, 1893, 1825, 1791, 1803, 1799, 1833, 1865, 1880, 1845, 1773, 1586, 1068]
| }
| }, {
| "name": "4096x3072_D75_100",
| "resolution": "4096x3072",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8017, 5319, 4360, 3761, 3361, 3038, 2848, 2735, 2664, 2664, 2848, 3016, 3307, 3660, 4182, 5120, 6395, 5849, 4604, 3904, 3361, 2972, 2699, 2472, 2318, 2305, 2318, 2472, 2681, 2951, 3281, 3761, 4454, 5610, 5389, 4182, 3534, 3084, 2664, 2399, 2160, 2002, 1945, 2002, 2126, 2358, 2613, 2972, 3475, 3979, 5120, 4764, 3796, 3281, 2848, 2442, 2126, 1874, 1739, 1689, 1725, 1866, 2083, 2385, 2735, 3179, 3693, 4406, 4360, 3565, 3038, 2597, 2230, 1891, 1675, 1532, 1466, 1509, 1642, 1866, 2148, 2517, 2951, 3445, 4099, 4182, 3417, 2848, 2428, 2032, 1717, 1493, 1346, 1295, 1333, 1466, 1669, 1954, 2372, 2772, 3307, 3867, 3941, 3281, 2753, 2305, 1874, 1573, 1355, 1218, 1163, 1197, 1324, 1543, 1808, 2206, 2681, 3130, 3727, 3867, 3179, 2681, 2194, 1792, 1487, 1263, 1131, 1067, 1101, 1233, 1440, 1732, 2126, 2564, 3084, 3693, 3831, 3155, 2613, 2148, 1754, 1445, 1229, 1092, 1024, 1072, 1194, 1392, 1696, 2073, 2548, 3038, 3628, 3867, 3179, 2597, 2171, 1777, 1456, 1248, 1098, 1053, 1089, 1215, 1425, 1696, 2094, 2564, 3084, 3660, 3867, 3204, 2699, 2255, 1832, 1537, 1316, 1176, 1122, 1160, 1283, 1493, 1769, 2171, 2630, 3155, 3693, 4058, 3361, 2829, 2399, 1982, 1655, 1430, 1287, 1237, 1267, 1396, 1610, 1909, 2279, 2753, 3255, 3867, 4269, 3475, 2951, 2517, 2126, 1824, 1585, 1445, 1392, 1430, 1549, 1769, 2062, 2442, 2909, 3417, 4019, 4604, 3693, 3179, 2735, 2344, 2032, 1800, 1662, 1597, 1635, 1754, 1982, 2279, 2646, 3061, 3597, 4314, 5120, 4019, 3389, 2951, 2580, 2279, 2032, 1874, 1840, 1883, 2012, 2242, 2532, 2889, 3334, 3867, 4820, 5766, 4406, 3660, 3229, 2848, 2564, 2344, 2183, 2137, 2194, 2318, 2532, 2829, 3155, 3597, 4269, 5389, 6203, 5057, 4019, 3534, 3179, 2930, 2716, 2564, 2532, 2564, 2699, 2889, 3179, 3534, 4019, 4996, 5849]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7663, 5164, 4268, 3599, 3182, 2933, 2669, 2601, 2483, 2536, 2649, 2851, 3099, 3410, 4027, 4915, 6040, 5568, 4483, 3751, 3240, 2885, 2592, 2368, 2241, 2193, 2220, 2352, 2564, 2817, 3154, 3599, 4242, 5482, 5091, 4027, 3410, 2945, 2592, 2299, 2084, 1937, 1890, 1906, 2048, 2255, 2518, 2839, 3299, 3832, 4751, 4628, 3674, 3154, 2731, 2337, 2054, 1823, 1689, 1638, 1669, 1795, 2008, 2284, 2630, 3046, 3546, 4294, 4294, 3460, 2945, 2518, 2134, 1837, 1623, 1485, 1437, 1470, 1587, 1791, 2066, 2432, 2851, 3346, 3960, 3982, 3299, 2773, 2352, 1969, 1673, 1458, 1313, 1259, 1305, 1428, 1620, 1901, 2299, 2700, 3168, 3771, 3811, 3182, 2669, 2220, 1837, 1543, 1340, 1192, 1148, 1180, 1296, 1500, 1773, 2140, 2592, 3072, 3636, 3751, 3085, 2582, 2160, 1760, 1460, 1248, 1114, 1065, 1098, 1214, 1423, 1697, 2066, 2501, 2970, 3511, 3693, 3059, 2573, 2109, 1717, 1425, 1214, 1083, 1024, 1065, 1182, 1387, 1654, 2019, 2466, 2945, 3443, 3655, 3085, 2564, 2121, 1730, 1446, 1233, 1096, 1047, 1078, 1196, 1397, 1673, 2042, 2492, 2970, 3494, 3731, 3126, 2630, 2193, 1786, 1500, 1286, 1157, 1110, 1139, 1261, 1454, 1738, 2109, 2545, 3020, 3581, 3895, 3254, 2752, 2292, 1916, 1620, 1409, 1273, 1214, 1246, 1368, 1570, 1846, 2213, 2669, 3126, 3693, 4120, 3378, 2874, 2458, 2060, 1773, 1549, 1425, 1365, 1397, 1520, 1726, 2013, 2368, 2795, 3269, 3873, 4454, 3581, 3072, 2640, 2270, 1969, 1747, 1609, 1566, 1598, 1713, 1921, 2213, 2564, 2970, 3477, 4168, 4950, 3853, 3299, 2885, 2527, 2220, 1991, 1846, 1800, 1842, 1969, 2180, 2441, 2806, 3210, 3731, 4658, 5482, 4242, 3581, 3140, 2762, 2501, 2292, 2153, 2090, 2121, 2255, 2458, 2741, 3059, 3494, 4120, 5127, 5989, 4984, 3938, 3477, 3099, 2795, 2611, 2466, 2458, 2449, 2564, 2795, 3033, 3427, 3938, 4720, 5842]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7630, 5069, 4150, 3530, 3211, 2908, 2709, 2581, 2525, 2562, 2678, 2838, 3085, 3412, 3942, 4860, 5865, 5501, 4435, 3677, 3226, 2873, 2599, 2373, 2253, 2190, 2218, 2365, 2553, 2794, 3112, 3548, 4224, 5296, 4963, 4009, 3379, 2932, 2581, 2297, 2087, 1934, 1887, 1913, 2051, 2246, 2508, 2816, 3255, 3795, 4638, 4491, 3658, 3126, 2698, 2342, 2039, 1824, 1674, 1639, 1666, 1792, 1988, 2267, 2609, 3020, 3496, 4150, 4126, 3395, 2920, 2499, 2131, 1820, 1616, 1475, 1425, 1463, 1580, 1774, 2051, 2389, 2816, 3240, 3899, 3942, 3270, 2750, 2312, 1950, 1654, 1439, 1309, 1256, 1297, 1411, 1609, 1882, 2246, 2638, 3112, 3639, 3775, 3126, 2648, 2197, 1815, 1526, 1324, 1189, 1139, 1171, 1290, 1478, 1752, 2106, 2534, 3020, 3479, 3677, 3020, 2562, 2112, 1731, 1448, 1243, 1111, 1061, 1092, 1205, 1408, 1670, 2033, 2447, 2932, 3412, 3566, 3007, 2516, 2075, 1686, 1414, 1201, 1077, 1024, 1058, 1171, 1370, 1631, 1993, 2414, 2908, 3347, 3621, 3046, 2544, 2075, 1710, 1428, 1215, 1090, 1039, 1069, 1187, 1378, 1643, 1999, 2447, 2908, 3395, 3677, 3099, 2590, 2170, 1770, 1488, 1279, 1148, 1099, 1132, 1249, 1442, 1702, 2069, 2490, 2982, 3462, 3775, 3197, 2719, 2260, 1892, 1606, 1394, 1258, 1211, 1241, 1352, 1553, 1820, 2183, 2609, 3072, 3621, 4032, 3316, 2838, 2414, 2057, 1752, 1553, 1414, 1359, 1391, 1503, 1702, 1982, 2334, 2750, 3240, 3836, 4354, 3530, 3046, 2619, 2267, 1971, 1748, 1606, 1567, 1595, 1710, 1903, 2177, 2534, 2932, 3395, 4055, 4860, 3815, 3255, 2850, 2508, 2218, 1988, 1843, 1801, 1829, 1960, 2150, 2439, 2750, 3154, 3677, 4520, 5376, 4199, 3530, 3126, 2750, 2490, 2274, 2144, 2081, 2118, 2253, 2447, 2709, 3033, 3462, 4055, 5033, 6065, 4828, 3964, 3462, 3072, 2805, 2619, 2473, 2439, 2455, 2581, 2783, 3033, 3363, 3857, 4638, 5632]
| },
| "lsc_samples_blue": {
| "uCoeff": [6855, 4490, 3755, 3205, 2897, 2657, 2441, 2335, 2335, 2369, 2441, 2628, 2879, 3205, 3669, 4490, 5716, 4952, 3907, 3270, 2897, 2585, 2335, 2167, 2030, 1996, 2021, 2128, 2323, 2558, 2862, 3248, 3876, 4901, 4448, 3483, 2986, 2657, 2323, 2082, 1901, 1782, 1724, 1762, 1886, 2056, 2301, 2628, 2968, 3433, 4328, 4038, 3248, 2812, 2441, 2128, 1872, 1700, 1567, 1532, 1562, 1665, 1843, 2100, 2405, 2748, 3205, 3907, 3697, 3005, 2599, 2258, 1956, 1700, 1513, 1399, 1352, 1387, 1485, 1665, 1901, 2206, 2585, 2968, 3614, 3458, 2862, 2441, 2100, 1795, 1547, 1371, 1266, 1215, 1243, 1344, 1518, 1762, 2064, 2405, 2812, 3385, 3338, 2748, 2346, 1971, 1676, 1436, 1270, 1160, 1119, 1140, 1240, 1403, 1625, 1940, 2312, 2717, 3248, 3270, 2702, 2290, 1917, 1598, 1367, 1206, 1094, 1053, 1077, 1165, 1329, 1562, 1865, 2237, 2657, 3184, 3205, 2671, 2248, 1886, 1562, 1337, 1174, 1065, 1024, 1046, 1143, 1294, 1518, 1836, 2206, 2613, 3163, 3226, 2657, 2258, 1886, 1593, 1344, 1185, 1077, 1039, 1062, 1151, 1301, 1537, 1850, 2227, 2657, 3142, 3270, 2702, 2312, 1956, 1642, 1395, 1224, 1124, 1074, 1111, 1203, 1363, 1583, 1886, 2279, 2702, 3226, 3433, 2796, 2405, 2038, 1724, 1485, 1318, 1209, 1162, 1185, 1287, 1441, 1682, 1996, 2369, 2779, 3361, 3560, 2932, 2544, 2176, 1865, 1615, 1432, 1318, 1273, 1304, 1403, 1567, 1815, 2157, 2492, 2932, 3534, 3814, 3082, 2671, 2346, 2038, 1788, 1583, 1467, 1436, 1458, 1562, 1737, 1996, 2301, 2671, 3102, 3814, 4215, 3315, 2862, 2531, 2227, 1980, 1775, 1671, 1620, 1653, 1762, 1948, 2206, 2505, 2879, 3361, 4142, 4756, 3669, 3062, 2748, 2429, 2217, 2030, 1901, 1843, 1886, 2004, 2196, 2441, 2748, 3122, 3669, 4664, 5277, 4290, 3509, 3062, 2732, 2518, 2301, 2206, 2196, 2206, 2335, 2505, 2764, 3122, 3433, 4368, 5396]
| }
| }, {
| "name": "4096x3072_D75_1",
| "resolution": "4096x3072",
| "illumination": "D75",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1094, 1729, 1977, 2087, 2131, 2113, 2099, 2083, 2055, 2039, 2099, 2101, 2105, 2048, 1926, 1696, 1078, 1513, 1894, 2073, 2118, 2104, 2068, 1998, 1933, 1937, 1933, 1998, 2056, 2093, 2081, 2021, 1858, 1489, 1771, 2007, 2111, 2133, 2051, 1981, 1872, 1784, 1749, 1784, 1846, 1952, 2019, 2073, 2086, 1943, 1725, 1881, 2047, 2134, 2116, 1999, 1860, 1712, 1625, 1590, 1613, 1705, 1827, 1960, 2048, 2084, 2009, 1799, 1945, 2082, 2113, 2044, 1915, 1726, 1585, 1478, 1424, 1457, 1557, 1706, 1854, 1992, 2066, 2032, 1873, 2012, 2110, 2080, 1989, 1809, 1614, 1448, 1325, 1280, 1313, 1423, 1573, 1748, 1951, 2036, 2060, 1914, 2013, 2109, 2073, 1941, 1710, 1507, 1333, 1211, 1160, 1191, 1304, 1481, 1657, 1870, 2029, 2036, 1941, 2033, 2095, 2056, 1881, 1657, 1440, 1251, 1129, 1067, 1100, 1223, 1398, 1608, 1832, 1983, 2047, 1971, 2035, 2094, 2023, 1854, 1630, 1405, 1220, 1091, 1024, 1071, 1187, 1357, 1582, 1799, 1982, 2035, 1962, 2033, 2095, 2004, 1865, 1645, 1412, 1237, 1097, 1053, 1088, 1206, 1384, 1578, 1808, 1983, 2047, 1960, 1988, 2072, 2040, 1905, 1676, 1476, 1296, 1171, 1120, 1155, 1266, 1437, 1626, 1845, 1998, 2048, 1929, 1973, 2085, 2069, 1969, 1770, 1561, 1391, 1270, 1225, 1251, 1360, 1523, 1713, 1887, 2025, 2037, 1914, 1920, 2045, 2066, 1992, 1838, 1672, 1508, 1400, 1357, 1387, 1476, 1627, 1791, 1943, 2043, 2021, 1851, 1844, 2009, 2084, 2048, 1932, 1788, 1652, 1560, 1512, 1537, 1615, 1750, 1887, 1995, 2026, 1973, 1778, 1725, 1956, 2048, 2061, 1998, 1897, 1776, 1684, 1666, 1691, 1761, 1871, 1968, 2028, 2024, 1909, 1674, 1504, 1846, 1984, 2056, 2036, 1983, 1912, 1838, 1817, 1846, 1894, 1964, 2025, 2022, 1961, 1813, 1466, 1076, 1686, 1879, 1999, 2044, 2055, 2021, 1977, 1972, 1977, 2011, 2032, 2044, 1999, 1879, 1676, 1072]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1090, 1704, 1950, 2024, 2046, 2056, 1993, 2000, 1941, 1960, 1982, 2012, 2006, 1950, 1881, 1663, 1074, 1484, 1865, 2017, 2061, 2056, 2001, 1928, 1879, 1857, 1864, 1917, 1983, 2018, 2021, 1962, 1806, 1476, 1720, 1958, 2057, 2058, 2006, 1911, 1815, 1733, 1705, 1709, 1788, 1880, 1959, 2001, 2009, 1898, 1662, 1850, 2002, 2072, 2046, 1927, 1805, 1671, 1583, 1546, 1566, 1648, 1770, 1890, 1985, 2019, 1954, 1773, 1927, 2039, 2063, 1993, 1844, 1683, 1540, 1436, 1397, 1422, 1509, 1645, 1794, 1937, 2012, 1991, 1835, 1949, 2057, 2037, 1937, 1760, 1576, 1416, 1294, 1246, 1287, 1389, 1531, 1707, 1901, 1994, 1997, 1883, 1969, 2061, 2022, 1880, 1680, 1481, 1319, 1186, 1145, 1175, 1278, 1443, 1629, 1823, 1975, 2008, 1910, 1992, 2048, 1995, 1856, 1631, 1416, 1237, 1112, 1065, 1097, 1205, 1382, 1579, 1788, 1944, 1991, 1907, 1985, 2046, 1998, 1825, 1600, 1386, 1206, 1082, 1024, 1065, 1175, 1352, 1547, 1759, 1930, 1989, 1895, 1958, 2048, 1983, 1828, 1606, 1403, 1223, 1095, 1047, 1077, 1188, 1359, 1559, 1770, 1939, 1991, 1901, 1942, 2034, 1998, 1861, 1639, 1443, 1268, 1152, 1108, 1135, 1245, 1402, 1601, 1801, 1946, 1983, 1891, 1922, 2036, 2024, 1896, 1718, 1531, 1372, 1257, 1204, 1232, 1335, 1489, 1664, 1841, 1976, 1978, 1859, 1879, 2005, 2024, 1954, 1789, 1631, 1476, 1382, 1332, 1357, 1451, 1593, 1754, 1895, 1982, 1959, 1811, 1810, 1967, 2032, 1991, 1881, 1740, 1609, 1516, 1485, 1506, 1582, 1704, 1841, 1946, 1981, 1929, 1744, 1696, 1904, 2009, 2026, 1965, 1856, 1745, 1662, 1635, 1659, 1729, 1828, 1911, 1983, 1971, 1866, 1646, 1476, 1806, 1955, 2015, 1988, 1944, 1877, 1817, 1784, 1795, 1852, 1917, 1976, 1977, 1924, 1777, 1440, 1074, 1674, 1856, 1977, 2006, 1982, 1959, 1916, 1925, 1906, 1932, 1982, 1975, 1957, 1856, 1631, 1072]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1090, 1688, 1917, 1997, 2060, 2043, 2017, 1987, 1967, 1976, 1999, 2005, 2000, 1951, 1857, 1654, 1072, 1478, 1853, 1990, 2055, 2049, 2005, 1931, 1887, 1855, 1863, 1926, 1977, 2006, 2001, 1943, 1802, 1457, 1698, 1953, 2044, 2051, 1999, 1910, 1817, 1731, 1703, 1714, 1790, 1874, 1953, 1989, 1990, 1886, 1643, 1818, 1996, 2058, 2026, 1930, 1794, 1671, 1570, 1547, 1564, 1646, 1755, 1879, 1973, 2006, 1936, 1740, 1881, 2012, 2049, 1980, 1842, 1669, 1534, 1427, 1386, 1416, 1503, 1632, 1782, 1909, 1993, 1947, 1818, 1937, 2043, 2023, 1910, 1745, 1560, 1399, 1290, 1243, 1279, 1374, 1522, 1692, 1864, 1958, 1972, 1842, 1957, 2034, 2009, 1864, 1663, 1466, 1304, 1183, 1136, 1166, 1272, 1424, 1612, 1798, 1940, 1983, 1857, 1966, 2016, 1982, 1821, 1607, 1405, 1232, 1110, 1061, 1091, 1196, 1369, 1557, 1763, 1911, 1972, 1871, 1940, 2020, 1962, 1800, 1574, 1377, 1193, 1076, 1024, 1058, 1165, 1337, 1528, 1740, 1898, 1970, 1861, 1946, 2028, 1971, 1794, 1590, 1387, 1206, 1089, 1039, 1068, 1179, 1342, 1535, 1738, 1911, 1960, 1865, 1924, 2021, 1974, 1844, 1626, 1432, 1262, 1144, 1097, 1128, 1234, 1392, 1571, 1772, 1913, 1965, 1851, 1885, 2010, 2005, 1874, 1700, 1519, 1358, 1243, 1201, 1227, 1320, 1474, 1644, 1821, 1942, 1953, 1837, 1855, 1979, 2005, 1925, 1787, 1614, 1480, 1372, 1327, 1352, 1437, 1573, 1731, 1873, 1957, 1947, 1801, 1787, 1949, 2019, 1979, 1879, 1742, 1610, 1513, 1486, 1504, 1579, 1690, 1817, 1928, 1963, 1899, 1718, 1681, 1892, 1990, 2007, 1953, 1855, 1743, 1660, 1635, 1649, 1722, 1807, 1910, 1953, 1947, 1849, 1623, 1465, 1796, 1937, 2008, 1981, 1937, 1865, 1811, 1777, 1793, 1851, 1911, 1959, 1964, 1912, 1761, 1430, 1074, 1648, 1863, 1971, 1994, 1987, 1964, 1921, 1913, 1909, 1942, 1975, 1975, 1932, 1833, 1617, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1082, 1593, 1804, 1871, 1911, 1907, 1859, 1835, 1848, 1856, 1859, 1891, 1902, 1871, 1779, 1593, 1071, 1422, 1725, 1842, 1901, 1890, 1841, 1793, 1731, 1717, 1724, 1767, 1833, 1875, 1884, 1834, 1717, 1417, 1610, 1789, 1874, 1903, 1837, 1760, 1678, 1613, 1575, 1597, 1667, 1742, 1824, 1887, 1866, 1774, 1590, 1715, 1845, 1904, 1872, 1783, 1667, 1571, 1480, 1456, 1476, 1543, 1645, 1764, 1850, 1872, 1829, 1685, 1762, 1849, 1876, 1824, 1712, 1572, 1445, 1359, 1320, 1348, 1421, 1543, 1672, 1790, 1868, 1834, 1739, 1786, 1858, 1844, 1764, 1624, 1469, 1337, 1250, 1205, 1229, 1313, 1444, 1599, 1739, 1824, 1835, 1763, 1809, 1853, 1826, 1702, 1550, 1387, 1254, 1155, 1117, 1136, 1226, 1358, 1509, 1680, 1805, 1838, 1778, 1821, 1858, 1813, 1678, 1497, 1332, 1197, 1093, 1053, 1076, 1158, 1298, 1468, 1640, 1780, 1835, 1791, 1810, 1851, 1793, 1661, 1471, 1307, 1168, 1065, 1024, 1046, 1138, 1268, 1434, 1624, 1767, 1822, 1794, 1805, 1835, 1793, 1656, 1493, 1311, 1177, 1076, 1039, 1061, 1145, 1273, 1447, 1629, 1774, 1835, 1776, 1786, 1831, 1805, 1691, 1523, 1351, 1211, 1121, 1073, 1108, 1191, 1322, 1475, 1641, 1785, 1831, 1771, 1778, 1828, 1824, 1721, 1569, 1416, 1290, 1197, 1154, 1175, 1262, 1379, 1536, 1692, 1803, 1821, 1755, 1724, 1819, 1846, 1771, 1645, 1503, 1376, 1287, 1249, 1274, 1351, 1464, 1608, 1759, 1818, 1819, 1717, 1663, 1783, 1834, 1815, 1721, 1603, 1476, 1396, 1375, 1389, 1459, 1565, 1692, 1788, 1834, 1791, 1663, 1570, 1737, 1820, 1835, 1777, 1689, 1584, 1526, 1493, 1513, 1575, 1667, 1764, 1821, 1827, 1751, 1558, 1402, 1667, 1766, 1831, 1803, 1767, 1701, 1640, 1608, 1630, 1683, 1754, 1810, 1831, 1788, 1667, 1393, 1067, 1560, 1734, 1815, 1833, 1832, 1777, 1755, 1761, 1755, 1797, 1825, 1848, 1839, 1712, 1573, 1068]
| }
| }, {
| "name": "4096x3072_HZ_100",
| "resolution": "4096x3072",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [8191, 6289, 5208, 4394, 3934, 3593, 3292, 3160, 3110, 3160, 3279, 3576, 3783, 4252, 4946, 6142, 7704, 6895, 5461, 4547, 3953, 3528, 3110, 2872, 2695, 2606, 2668, 2821, 3074, 3392, 3857, 4394, 5243, 6895, 6240, 4916, 4141, 3576, 3110, 2733, 2452, 2249, 2193, 2255, 2407, 2668, 3027, 3513, 3994, 4654, 5912, 5739, 4495, 3819, 3306, 2781, 2400, 2088, 1902, 1839, 1892, 2072, 2336, 2714, 3199, 3765, 4370, 5349, 5208, 4229, 3576, 3015, 2531, 2105, 1814, 1620, 1559, 1607, 1769, 2050, 2422, 2904, 3497, 4141, 4978, 4916, 4014, 3406, 2791, 2282, 1870, 1587, 1401, 1332, 1384, 1541, 1818, 2205, 2714, 3279, 3934, 4767, 4710, 3857, 3238, 2632, 2094, 1693, 1414, 1238, 1175, 1219, 1377, 1633, 2008, 2539, 3098, 3747, 4573, 4627, 3747, 3110, 2507, 1973, 1575, 1312, 1130, 1060, 1111, 1262, 1523, 1888, 2414, 3038, 3694, 4521, 4547, 3729, 3074, 2452, 1925, 1532, 1262, 1092, 1024, 1071, 1223, 1486, 1848, 2378, 2981, 3677, 4419, 4573, 3747, 3123, 2475, 1944, 1559, 1276, 1108, 1050, 1100, 1248, 1505, 1888, 2385, 3004, 3694, 4419, 4627, 3819, 3173, 2572, 2034, 1647, 1369, 1186, 1125, 1170, 1335, 1587, 1963, 2483, 3098, 3729, 4469, 4796, 3953, 3320, 2714, 2199, 1789, 1511, 1335, 1266, 1312, 1469, 1746, 2122, 2641, 3252, 3895, 4710, 5041, 4141, 3482, 2936, 2437, 2008, 1711, 1532, 1474, 1517, 1668, 1963, 2322, 2841, 3436, 4076, 4916, 5423, 4370, 3729, 3173, 2686, 2288, 1988, 1802, 1742, 1785, 1944, 2230, 2615, 3110, 3677, 4298, 5278, 6048, 4682, 3973, 3466, 3015, 2615, 2322, 2116, 2072, 2116, 2302, 2555, 2959, 3406, 3934, 4627, 5781, 6776, 5174, 4298, 3783, 3348, 2992, 2723, 2531, 2475, 2523, 2668, 2959, 3292, 3765, 4252, 5107, 6605, 7210, 6001, 4825, 4184, 3819, 3451, 3212, 3004, 2992, 3015, 3186, 3421, 3729, 4229, 4796, 5868, 7277]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7896, 5406, 4445, 3822, 3409, 3077, 2871, 2740, 2679, 2703, 2830, 3031, 3352, 3704, 4286, 5129, 6522, 5826, 4725, 3922, 3409, 3000, 2703, 2480, 2362, 2308, 2344, 2469, 2691, 2971, 3315, 3774, 4478, 5608, 5406, 4196, 3551, 3125, 2727, 2420, 2182, 2020, 1967, 2014, 2151, 2381, 2655, 3015, 3449, 4000, 5001, 4839, 3871, 3279, 2830, 2459, 2135, 1905, 1749, 1705, 1739, 1869, 2105, 2391, 2753, 3209, 3727, 4512, 4478, 3615, 3093, 2632, 2231, 1899, 1667, 1527, 1471, 1511, 1644, 1864, 2166, 2553, 2971, 3489, 4226, 4196, 3429, 2913, 2439, 2034, 1734, 1482, 1336, 1288, 1322, 1464, 1676, 1980, 2372, 2804, 3315, 3897, 3974, 3279, 2791, 2308, 1905, 1575, 1348, 1198, 1147, 1184, 1313, 1535, 1835, 2214, 2691, 3192, 3750, 3897, 3261, 2691, 2222, 1807, 1489, 1263, 1117, 1064, 1103, 1232, 1446, 1755, 2143, 2609, 3125, 3704, 3822, 3192, 2655, 2182, 1765, 1453, 1227, 1083, 1024, 1062, 1195, 1419, 1710, 2105, 2586, 3109, 3659, 3846, 3209, 2679, 2198, 1786, 1482, 1245, 1097, 1045, 1083, 1215, 1429, 1734, 2120, 2598, 3142, 3682, 3922, 3279, 2727, 2282, 1852, 1539, 1307, 1165, 1113, 1152, 1282, 1500, 1802, 2198, 2667, 3175, 3798, 4027, 3390, 2844, 2391, 1987, 1662, 1432, 1279, 1232, 1274, 1402, 1626, 1923, 2308, 2778, 3315, 3897, 4256, 3509, 3015, 2564, 2151, 1835, 1604, 1460, 1405, 1442, 1575, 1781, 2098, 2490, 2971, 3469, 4082, 4688, 3750, 3226, 2753, 2362, 2055, 1824, 1681, 1626, 1667, 1791, 2007, 2317, 2715, 3142, 3659, 4445, 5173, 4082, 3429, 3046, 2667, 2344, 2091, 1948, 1905, 1923, 2076, 2290, 2575, 2985, 3390, 3948, 4878, 5883, 4512, 3774, 3297, 2927, 2643, 2420, 2247, 2231, 2247, 2381, 2609, 2899, 3244, 3659, 4380, 5505, 6594, 5264, 4286, 3704, 3297, 3000, 2817, 2679, 2609, 2620, 2804, 3000, 3261, 3615, 4167, 5086, 6250]
| },
| "lsc_samples_greenB": {
| "uCoeff": [8015, 5465, 4453, 3781, 3377, 3021, 2835, 2672, 2636, 2660, 2757, 3021, 3267, 3643, 4233, 5094, 6328, 5893, 4733, 3954, 3396, 3006, 2708, 2474, 2330, 2268, 2312, 2434, 2683, 2947, 3303, 3757, 4486, 5725, 5415, 4233, 3578, 3115, 2683, 2414, 2162, 2017, 1952, 1997, 2139, 2357, 2625, 2990, 3435, 4034, 4968, 4887, 3853, 3303, 2849, 2453, 2132, 1890, 1742, 1693, 1722, 1867, 2080, 2385, 2757, 3232, 3733, 4624, 4486, 3621, 3115, 2648, 2226, 1902, 1665, 1507, 1462, 1499, 1647, 1855, 2162, 2536, 2976, 3455, 4174, 4204, 3455, 2947, 2453, 2052, 1727, 1481, 1339, 1279, 1318, 1452, 1670, 1977, 2366, 2809, 3303, 3954, 4034, 3377, 2796, 2330, 1908, 1582, 1348, 1200, 1143, 1186, 1310, 1533, 1822, 2235, 2708, 3197, 3757, 3954, 3267, 2720, 2226, 1816, 1495, 1268, 1119, 1056, 1101, 1227, 1441, 1752, 2162, 2625, 3147, 3688, 3903, 3214, 2696, 2202, 1773, 1455, 1224, 1085, 1024, 1066, 1195, 1408, 1717, 2109, 2591, 3115, 3688, 3929, 3249, 2708, 2218, 1800, 1477, 1244, 1099, 1047, 1083, 1209, 1424, 1737, 2124, 2602, 3131, 3688, 3981, 3285, 2757, 2286, 1861, 1541, 1315, 1158, 1109, 1147, 1268, 1488, 1784, 2194, 2683, 3180, 3711, 4145, 3396, 2890, 2395, 1990, 1665, 1438, 1268, 1229, 1260, 1395, 1616, 1920, 2312, 2796, 3303, 3929, 4387, 3578, 3036, 2591, 2155, 1833, 1599, 1441, 1395, 1435, 1565, 1773, 2087, 2484, 2947, 3455, 4089, 4733, 3781, 3249, 2783, 2376, 2059, 1822, 1660, 1616, 1642, 1778, 1997, 2312, 2683, 3147, 3643, 4387, 5182, 4089, 3435, 3021, 2648, 2312, 2080, 1920, 1878, 1908, 2045, 2268, 2569, 2947, 3358, 3954, 4848, 5893, 4520, 3757, 3303, 2918, 2614, 2385, 2235, 2170, 2218, 2339, 2591, 2849, 3232, 3665, 4356, 5367, 6395, 5227, 4204, 3665, 3232, 2976, 2732, 2591, 2536, 2591, 2720, 2932, 3232, 3643, 4117, 4887, 6072]
| },
| "lsc_samples_blue": {
| "uCoeff": [7879, 5199, 4300, 3600, 3301, 3003, 2753, 2679, 2609, 2609, 2716, 3003, 3301, 3600, 4122, 4942, 6168, 5642, 4495, 3736, 3196, 2872, 2575, 2419, 2254, 2204, 2254, 2361, 2609, 2872, 3145, 3536, 4300, 5487, 5199, 3958, 3414, 2958, 2575, 2306, 2111, 1965, 1890, 1945, 2088, 2306, 2575, 2914, 3248, 3736, 4822, 4495, 3666, 3096, 2716, 2361, 2088, 1855, 1711, 1654, 1726, 1821, 2025, 2306, 2643, 3049, 3475, 4300, 4209, 3357, 2872, 2479, 2156, 1872, 1627, 1504, 1449, 1493, 1627, 1821, 2111, 2419, 2792, 3301, 3958, 3958, 3248, 2716, 2333, 1965, 1682, 1460, 1342, 1273, 1315, 1428, 1641, 1890, 2254, 2643, 3145, 3666, 3736, 3049, 2609, 2204, 1837, 1551, 1342, 1196, 1148, 1182, 1306, 1493, 1772, 2088, 2542, 2958, 3536, 3600, 3003, 2510, 2111, 1726, 1471, 1249, 1116, 1068, 1085, 1218, 1418, 1696, 2025, 2479, 2914, 3475, 3666, 3049, 2510, 2111, 1696, 1428, 1211, 1074, 1024, 1062, 1168, 1369, 1654, 2025, 2419, 2872, 3414, 3600, 3049, 2542, 2088, 1726, 1428, 1211, 1080, 1046, 1074, 1175, 1388, 1668, 2004, 2448, 2914, 3475, 3736, 3049, 2542, 2156, 1772, 1504, 1281, 1148, 1097, 1135, 1241, 1449, 1711, 2067, 2479, 2958, 3536, 3881, 3145, 2716, 2254, 1890, 1601, 1398, 1249, 1211, 1241, 1360, 1563, 1837, 2180, 2609, 3096, 3666, 4039, 3301, 2832, 2389, 2067, 1756, 1527, 1388, 1351, 1379, 1515, 1711, 1984, 2333, 2753, 3196, 3881, 4495, 3475, 3003, 2575, 2254, 1945, 1726, 1588, 1551, 1588, 1711, 1908, 2180, 2542, 2914, 3414, 4039, 4822, 3736, 3248, 2832, 2479, 2180, 1945, 1804, 1772, 1788, 1945, 2133, 2448, 2792, 3145, 3666, 4707, 5642, 4122, 3414, 3096, 2716, 2448, 2229, 2088, 2025, 2111, 2180, 2448, 2679, 3003, 3475, 4039, 5067, 5983, 4942, 3958, 3475, 3049, 2792, 2609, 2510, 2419, 2448, 2609, 2832, 3049, 3475, 3881, 4707, 5983]
| }
| }, {
| "name": "4096x3072_HZ_1",
| "resolution": "4096x3072",
| "illumination": "HZ",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1102, 1888, 2219, 2333, 2402, 2413, 2361, 2346, 2335, 2346, 2353, 2404, 2330, 2277, 2144, 1864, 1091, 1619, 2103, 2307, 2395, 2413, 2324, 2267, 2198, 2151, 2179, 2233, 2301, 2337, 2350, 2252, 2050, 1619, 1917, 2235, 2374, 2398, 2330, 2213, 2089, 1975, 1944, 1980, 2056, 2168, 2278, 2364, 2310, 2153, 1861, 2104, 2305, 2399, 2390, 2232, 2067, 1885, 1762, 1717, 1753, 1872, 2019, 2186, 2326, 2373, 2258, 2015, 2180, 2359, 2404, 2315, 2137, 1900, 1705, 1556, 1508, 1545, 1666, 1855, 2056, 2243, 2361, 2322, 2116, 2242, 2381, 2403, 2239, 2003, 1744, 1533, 1376, 1315, 1361, 1491, 1700, 1943, 2186, 2329, 2345, 2195, 2274, 2386, 2367, 2175, 1888, 1613, 1388, 1231, 1171, 1212, 1353, 1560, 1819, 2108, 2282, 2333, 2228, 2303, 2377, 2324, 2111, 1807, 1519, 1298, 1128, 1060, 1110, 1250, 1472, 1737, 2043, 2279, 2350, 2265, 2293, 2382, 2313, 2079, 1772, 1483, 1252, 1091, 1024, 1070, 1214, 1442, 1708, 2024, 2254, 2356, 2247, 2284, 2377, 2332, 2087, 1783, 1504, 1264, 1107, 1050, 1099, 1237, 1456, 1737, 2021, 2258, 2350, 2229, 2246, 2367, 2327, 2132, 1840, 1572, 1346, 1180, 1123, 1165, 1314, 1520, 1782, 2068, 2282, 2324, 2192, 2204, 2353, 2353, 2186, 1939, 1675, 1464, 1315, 1253, 1293, 1426, 1638, 1879, 2136, 2314, 2327, 2177, 2134, 2322, 2353, 2264, 2068, 1821, 1616, 1478, 1431, 1464, 1579, 1785, 1983, 2202, 2328, 2295, 2099, 2032, 2258, 2355, 2310, 2167, 1982, 1804, 1678, 1635, 1664, 1769, 1938, 2118, 2272, 2329, 2232, 1999, 1884, 2162, 2301, 2338, 2271, 2131, 1992, 1872, 1849, 1872, 1978, 2089, 2236, 2306, 2284, 2145, 1839, 1607, 2033, 2217, 2316, 2313, 2250, 2167, 2083, 2058, 2077, 2130, 2230, 2282, 2307, 2200, 2016, 1589, 1086, 1841, 2109, 2251, 2347, 2336, 2313, 2249, 2261, 2256, 2298, 2320, 2305, 2269, 2101, 1819, 1087]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1093, 1743, 2001, 2110, 2153, 2134, 2112, 2086, 2064, 2063, 2088, 2109, 2126, 2065, 1955, 1698, 1079, 1511, 1924, 2080, 2140, 2120, 2070, 2003, 1964, 1939, 1951, 1996, 2063, 2104, 2096, 2026, 1864, 1488, 1774, 2011, 2118, 2155, 2090, 1995, 1888, 1798, 1766, 1793, 1865, 1968, 2045, 2096, 2074, 1950, 1705, 1898, 2074, 2133, 2105, 2011, 1866, 1737, 1633, 1603, 1625, 1708, 1844, 1964, 2059, 2099, 2021, 1823, 1978, 2103, 2143, 2067, 1915, 1733, 1578, 1473, 1428, 1459, 1558, 1704, 1867, 2015, 2077, 2051, 1908, 2016, 2116, 2118, 1997, 1810, 1628, 1438, 1316, 1274, 1303, 1421, 1579, 1768, 1951, 2054, 2064, 1923, 2024, 2108, 2096, 1943, 1735, 1509, 1326, 1192, 1144, 1178, 1294, 1474, 1679, 1876, 2035, 2066, 1948, 2044, 2135, 2063, 1902, 1670, 1442, 1251, 1115, 1064, 1102, 1222, 1403, 1627, 1844, 2012, 2068, 1975, 2032, 2113, 2049, 1879, 1640, 1412, 1218, 1082, 1024, 1062, 1188, 1381, 1594, 1822, 2006, 2071, 1973, 2026, 2109, 2055, 1884, 1653, 1435, 1234, 1096, 1045, 1082, 1206, 1388, 1610, 1827, 2005, 2076, 1967, 2007, 2108, 2057, 1924, 1693, 1477, 1288, 1160, 1111, 1148, 1265, 1443, 1652, 1864, 2020, 2058, 1965, 1964, 2098, 2078, 1964, 1774, 1567, 1393, 1262, 1221, 1258, 1365, 1536, 1724, 1907, 2039, 2064, 1923, 1917, 2059, 2101, 2022, 1856, 1681, 1524, 1413, 1368, 1397, 1499, 1637, 1817, 1974, 2077, 2042, 1869, 1863, 2030, 2107, 2059, 1944, 1806, 1671, 1576, 1536, 1564, 1645, 1769, 1913, 2036, 2066, 1996, 1808, 1734, 1975, 2066, 2112, 2053, 1942, 1820, 1742, 1717, 1722, 1809, 1905, 1995, 2080, 2049, 1934, 1684, 1516, 1872, 2026, 2088, 2079, 2033, 1963, 1883, 1884, 1883, 1937, 2012, 2064, 2063, 1984, 1840, 1478, 1080, 1720, 1955, 2065, 2100, 2092, 2081, 2048, 2020, 2011, 2073, 2092, 2083, 2030, 1921, 1691, 1076]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1094, 1753, 2003, 2095, 2138, 2104, 2091, 2044, 2037, 2036, 2045, 2104, 2086, 2041, 1940, 1692, 1077, 1517, 1926, 2091, 2134, 2123, 2073, 1999, 1942, 1911, 1929, 1972, 2058, 2091, 2091, 2020, 1866, 1500, 1776, 2022, 2130, 2150, 2063, 1991, 1873, 1795, 1754, 1780, 1856, 1951, 2026, 2082, 2068, 1961, 1699, 1909, 2068, 2145, 2116, 2007, 1864, 1725, 1627, 1593, 1611, 1706, 1825, 1960, 2061, 2110, 2023, 1849, 1980, 2106, 2155, 2077, 1912, 1735, 1576, 1455, 1420, 1448, 1561, 1697, 1864, 2004, 2079, 2037, 1894, 2019, 2127, 2137, 2007, 1824, 1622, 1437, 1319, 1265, 1299, 1411, 1574, 1766, 1947, 2057, 2058, 1941, 2045, 2155, 2099, 1959, 1738, 1515, 1326, 1194, 1140, 1180, 1291, 1472, 1668, 1891, 2045, 2068, 1951, 2064, 2138, 2081, 1905, 1677, 1447, 1256, 1117, 1056, 1100, 1217, 1398, 1625, 1858, 2021, 2079, 1969, 2061, 2124, 2075, 1894, 1646, 1414, 1215, 1084, 1024, 1066, 1188, 1371, 1600, 1825, 2009, 2074, 1983, 2055, 2129, 2073, 1899, 1664, 1431, 1233, 1098, 1047, 1082, 1200, 1383, 1612, 1830, 2007, 2071, 1969, 2027, 2111, 2075, 1927, 1700, 1479, 1296, 1153, 1107, 1143, 1252, 1432, 1638, 1861, 2030, 2060, 1935, 2000, 2101, 2104, 1967, 1776, 1569, 1398, 1252, 1218, 1245, 1359, 1528, 1722, 1910, 2050, 2058, 1933, 1953, 2088, 2112, 2040, 1859, 1679, 1520, 1397, 1359, 1391, 1490, 1631, 1809, 1971, 2064, 2037, 1871, 1874, 2041, 2119, 2077, 1954, 1809, 1670, 1559, 1528, 1543, 1634, 1762, 1910, 2017, 2069, 1990, 1794, 1736, 1978, 2068, 2099, 2041, 1920, 1812, 1720, 1696, 1711, 1786, 1889, 1991, 2059, 2035, 1936, 1679, 1517, 1874, 2020, 2091, 2074, 2015, 1939, 1875, 1841, 1863, 1908, 2000, 2036, 2058, 1986, 1834, 1464, 1078, 1714, 1932, 2050, 2069, 2079, 2031, 1994, 1974, 1994, 2023, 2056, 2069, 2041, 1907, 1658, 1074]
| },
| "lsc_samples_blue": {
| "uCoeff": [1093, 1709, 1959, 2024, 2102, 2094, 2043, 2048, 2020, 2005, 2021, 2094, 2102, 2024, 1909, 1667, 1075, 1492, 1868, 2012, 2041, 2049, 1990, 1962, 1888, 1865, 1888, 1923, 2012, 2049, 2017, 1939, 1820, 1476, 1739, 1937, 2059, 2065, 1995, 1916, 1835, 1755, 1705, 1739, 1818, 1916, 1995, 2041, 1987, 1868, 1674, 1819, 1999, 2043, 2037, 1943, 1831, 1697, 1601, 1560, 1614, 1669, 1783, 1905, 1993, 2020, 1928, 1775, 1904, 1996, 2023, 1967, 1860, 1711, 1544, 1453, 1408, 1443, 1544, 1670, 1827, 1928, 1980, 1973, 1834, 1942, 2033, 2004, 1924, 1757, 1584, 1418, 1321, 1259, 1296, 1389, 1549, 1698, 1870, 1961, 1987, 1851, 1944, 1997, 1985, 1869, 1680, 1488, 1321, 1190, 1145, 1176, 1287, 1437, 1628, 1786, 1945, 1954, 1876, 1938, 2007, 1950, 1821, 1603, 1425, 1238, 1114, 1068, 1084, 1208, 1378, 1578, 1758, 1931, 1963, 1894, 1976, 2041, 1958, 1827, 1582, 1389, 1203, 1073, 1024, 1062, 1162, 1336, 1547, 1763, 1901, 1952, 1885, 1938, 2030, 1970, 1804, 1603, 1387, 1202, 1079, 1046, 1073, 1168, 1351, 1555, 1742, 1911, 1963, 1894, 1944, 1997, 1945, 1834, 1628, 1446, 1264, 1144, 1095, 1131, 1226, 1398, 1579, 1771, 1906, 1954, 1876, 1918, 1987, 2004, 1870, 1698, 1515, 1362, 1234, 1201, 1227, 1327, 1483, 1657, 1819, 1942, 1964, 1851, 1857, 1973, 2002, 1909, 1794, 1617, 1458, 1349, 1320, 1341, 1447, 1580, 1733, 1873, 1959, 1929, 1813, 1819, 1928, 1998, 1952, 1870, 1722, 1592, 1498, 1472, 1498, 1580, 1694, 1819, 1932, 1954, 1906, 1715, 1674, 1868, 1987, 1997, 1935, 1828, 1711, 1630, 1613, 1617, 1711, 1796, 1916, 1976, 1943, 1846, 1655, 1492, 1777, 1895, 1994, 1962, 1911, 1834, 1772, 1737, 1788, 1801, 1911, 1942, 1950, 1917, 1757, 1434, 1074, 1667, 1862, 1976, 1983, 1980, 1958, 1943, 1901, 1905, 1958, 2002, 1983, 1976, 1840, 1629, 1074]
| }
| }, {
| "name": "4096x3072_TL84_100",
| "resolution": "4096x3072",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [7226, 4969, 4112, 3487, 3058, 2817, 2624, 2476, 2434, 2487, 2577, 2777, 3026, 3325, 3889, 4843, 6012, 5390, 4330, 3551, 3108, 2737, 2487, 2298, 2167, 2088, 2151, 2270, 2466, 2698, 3010, 3487, 4173, 5390, 4969, 3863, 3231, 2804, 2455, 2200, 1994, 1864, 1811, 1864, 1980, 2167, 2424, 2750, 3177, 3713, 4723, 4431, 3551, 3010, 2588, 2252, 1966, 1761, 1640, 1590, 1621, 1734, 1914, 2192, 2520, 2903, 3404, 4234, 4054, 3305, 2817, 2394, 2051, 1766, 1581, 1449, 1406, 1434, 1551, 1729, 1987, 2326, 2698, 3195, 3863, 3837, 3125, 2636, 2226, 1870, 1617, 1424, 1298, 1252, 1286, 1393, 1555, 1834, 2175, 2588, 3058, 3689, 3665, 2994, 2554, 2135, 1766, 1498, 1307, 1190, 1142, 1166, 1275, 1456, 1713, 2051, 2445, 2948, 3487, 3551, 2918, 2455, 2043, 1678, 1417, 1231, 1111, 1054, 1084, 1195, 1376, 1626, 1966, 2404, 2860, 3424, 3551, 2874, 2455, 2008, 1640, 1376, 1195, 1070, 1024, 1052, 1161, 1334, 1581, 1933, 2374, 2832, 3445, 3508, 2903, 2445, 2022, 1664, 1399, 1202, 1088, 1041, 1068, 1178, 1359, 1603, 1953, 2354, 2874, 3466, 3619, 2963, 2476, 2088, 1713, 1456, 1269, 1142, 1090, 1129, 1228, 1410, 1654, 2022, 2445, 2918, 3445, 3713, 3075, 2612, 2175, 1822, 1559, 1369, 1242, 1192, 1223, 1334, 1526, 1766, 2119, 2542, 3010, 3619, 3970, 3213, 2750, 2316, 1973, 1703, 1498, 1379, 1331, 1366, 1467, 1654, 1907, 2252, 2698, 3160, 3786, 4203, 3384, 2889, 2498, 2159, 1882, 1673, 1559, 1510, 1543, 1654, 1834, 2096, 2466, 2832, 3344, 4112, 4723, 3642, 3125, 2737, 2384, 2111, 1888, 1777, 1734, 1777, 1876, 2043, 2326, 2648, 3058, 3574, 4536, 5242, 4083, 3325, 2948, 2624, 2374, 2167, 2051, 1994, 2058, 2151, 2335, 2577, 2903, 3325, 3998, 5057, 5829, 4723, 3713, 3231, 2948, 2698, 2520, 2374, 2326, 2364, 2455, 2624, 2933, 3213, 3713, 4609, 5656]
| },
| "lsc_samples_greenR": {
| "uCoeff": [7367, 5127, 4146, 3529, 3175, 2907, 2681, 2572, 2512, 2563, 2617, 2831, 3110, 3418, 4015, 4927, 6022, 5538, 4464, 3701, 3202, 2853, 2572, 2379, 2225, 2193, 2225, 2349, 2546, 2810, 3123, 3546, 4263, 5459, 5092, 3973, 3372, 2907, 2555, 2272, 2085, 1936, 1888, 1931, 2040, 2252, 2480, 2831, 3257, 3813, 4772, 4599, 3648, 3135, 2681, 2335, 2034, 1824, 1682, 1639, 1668, 1798, 1997, 2272, 2607, 3023, 3529, 4287, 4263, 3418, 2918, 2488, 2125, 1828, 1611, 1471, 1429, 1468, 1587, 1798, 2068, 2409, 2831, 3285, 3911, 3952, 3271, 2759, 2320, 1961, 1671, 1454, 1311, 1263, 1308, 1424, 1628, 1902, 2245, 2662, 3123, 3683, 3720, 3135, 2635, 2219, 1837, 1552, 1329, 1193, 1146, 1176, 1299, 1497, 1769, 2125, 2555, 3011, 3596, 3738, 3035, 2555, 2125, 1748, 1459, 1252, 1109, 1061, 1098, 1216, 1416, 1694, 2045, 2480, 2941, 3497, 3648, 3023, 2529, 2090, 1713, 1421, 1216, 1078, 1024, 1060, 1187, 1387, 1657, 2007, 2448, 2896, 3433, 3631, 3035, 2529, 2096, 1725, 1443, 1230, 1095, 1042, 1081, 1197, 1400, 1679, 2034, 2464, 2918, 3433, 3720, 3097, 2607, 2187, 1794, 1506, 1290, 1155, 1108, 1146, 1260, 1468, 1748, 2096, 2529, 2999, 3529, 3891, 3229, 2700, 2272, 1902, 1614, 1403, 1269, 1220, 1260, 1372, 1568, 1842, 2199, 2653, 3110, 3666, 4124, 3343, 2842, 2424, 2068, 1777, 1552, 1416, 1365, 1405, 1527, 1717, 2007, 2349, 2769, 3285, 3891, 4437, 3579, 3035, 2617, 2258, 1966, 1752, 1611, 1571, 1601, 1721, 1921, 2193, 2555, 2952, 3449, 4192, 4864, 3794, 3243, 2842, 2496, 2212, 2002, 1860, 1820, 1842, 1961, 2162, 2424, 2779, 3188, 3720, 4627, 5538, 4216, 3513, 3110, 2759, 2488, 2272, 2137, 2090, 2144, 2245, 2448, 2720, 3023, 3449, 4124, 5197, 6119, 4927, 3952, 3433, 3060, 2810, 2617, 2504, 2448, 2464, 2581, 2759, 3035, 3387, 3852, 4742, 5749]
| },
| "lsc_samples_greenB": {
| "uCoeff": [7665, 5127, 4124, 3513, 3162, 2907, 2691, 2555, 2504, 2504, 2644, 2831, 3084, 3403, 3973, 4833, 5975, 5579, 4464, 3683, 3188, 2831, 2581, 2371, 2219, 2187, 2219, 2342, 2529, 2769, 3097, 3546, 4239, 5306, 4992, 3994, 3358, 2907, 2555, 2279, 2073, 1931, 1874, 1916, 2040, 2238, 2480, 2810, 3202, 3794, 4655, 4517, 3648, 3123, 2691, 2328, 2029, 1815, 1679, 1635, 1664, 1794, 1976, 2258, 2590, 2999, 3449, 4169, 4169, 3403, 2907, 2480, 2120, 1815, 1611, 1473, 1429, 1459, 1584, 1785, 2045, 2386, 2800, 3257, 3891, 3973, 3271, 2739, 2313, 1956, 1660, 1451, 1311, 1260, 1297, 1416, 1611, 1888, 2245, 2635, 3097, 3648, 3756, 3123, 2644, 2193, 1828, 1539, 1329, 1189, 1136, 1171, 1288, 1482, 1752, 2096, 2521, 2999, 3497, 3683, 3047, 2563, 2125, 1740, 1456, 1244, 1114, 1060, 1092, 1212, 1405, 1675, 2018, 2448, 2930, 3433, 3631, 2987, 2529, 2085, 1698, 1418, 1216, 1076, 1024, 1061, 1178, 1377, 1642, 1997, 2409, 2874, 3358, 3683, 3023, 2538, 2096, 1728, 1443, 1230, 1090, 1041, 1072, 1191, 1390, 1668, 2007, 2448, 2918, 3433, 3738, 3097, 2607, 2162, 1790, 1494, 1286, 1151, 1105, 1138, 1256, 1448, 1717, 2079, 2512, 2976, 3481, 3871, 3188, 2729, 2258, 1902, 1611, 1397, 1256, 1212, 1246, 1365, 1565, 1828, 2193, 2626, 3060, 3596, 4036, 3328, 2842, 2424, 2051, 1761, 1549, 1413, 1365, 1408, 1521, 1713, 1986, 2342, 2749, 3229, 3813, 4412, 3562, 3035, 2607, 2252, 1961, 1761, 1614, 1571, 1597, 1717, 1916, 2180, 2538, 2930, 3403, 4124, 4896, 3832, 3257, 2842, 2496, 2206, 1986, 1842, 1811, 1842, 1956, 2150, 2416, 2739, 3162, 3701, 4517, 5498, 4216, 3529, 3097, 2749, 2488, 2272, 2131, 2085, 2125, 2232, 2440, 2710, 2999, 3403, 4102, 5059, 6119, 4833, 3973, 3418, 3060, 2779, 2607, 2472, 2424, 2448, 2538, 2759, 2999, 3328, 3891, 4627, 5662]
| },
| "lsc_samples_blue": {
| "uCoeff": [7527, 4674, 3774, 3226, 2941, 2659, 2462, 2392, 2309, 2358, 2462, 2638, 2890, 3226, 3691, 4610, 5621, 4952, 3953, 3356, 2941, 2617, 2375, 2188, 2053, 2015, 2028, 2145, 2341, 2577, 2865, 3257, 3862, 4880, 4610, 3534, 3049, 2681, 2341, 2118, 1922, 1788, 1769, 1788, 1900, 2091, 2341, 2617, 2941, 3460, 4368, 4150, 3290, 2841, 2462, 2145, 1900, 1697, 1584, 1555, 1584, 1680, 1858, 2132, 2409, 2770, 3195, 3862, 3817, 3049, 2617, 2262, 1980, 1723, 1540, 1416, 1369, 1404, 1505, 1680, 1911, 2232, 2577, 2994, 3650, 3534, 2890, 2481, 2132, 1817, 1562, 1381, 1270, 1223, 1256, 1358, 1533, 1751, 2065, 2409, 2817, 3390, 3425, 2817, 2409, 2028, 1697, 1459, 1290, 1168, 1132, 1155, 1251, 1422, 1631, 1945, 2325, 2725, 3226, 3322, 2702, 2309, 1922, 1631, 1386, 1214, 1106, 1057, 1084, 1176, 1336, 1569, 1869, 2247, 2659, 3165, 3290, 2702, 2277, 1900, 1599, 1347, 1180, 1067, 1024, 1050, 1155, 1310, 1526, 1817, 2217, 2617, 3165, 3257, 2681, 2293, 1922, 1599, 1364, 1184, 1074, 1034, 1057, 1159, 1320, 1547, 1838, 2217, 2638, 3135, 3290, 2725, 2325, 1956, 1647, 1410, 1228, 1120, 1088, 1117, 1206, 1364, 1599, 1890, 2277, 2702, 3226, 3497, 2817, 2409, 2065, 1741, 1499, 1326, 1210, 1176, 1193, 1290, 1472, 1697, 1991, 2375, 2793, 3322, 3650, 2967, 2557, 2188, 1879, 1623, 1447, 1331, 1285, 1315, 1416, 1592, 1828, 2145, 2500, 2915, 3460, 3953, 3105, 2702, 2341, 2040, 1808, 1599, 1492, 1472, 1472, 1592, 1741, 1991, 2293, 2659, 3105, 3817, 4368, 3390, 2915, 2518, 2247, 1991, 1817, 1663, 1615, 1663, 1769, 1968, 2217, 2518, 2865, 3356, 4150, 4742, 3732, 3135, 2747, 2444, 2217, 2028, 1900, 1869, 1911, 2015, 2202, 2427, 2747, 3135, 3650, 4810, 5351, 4368, 3572, 3077, 2770, 2577, 2375, 2232, 2202, 2247, 2358, 2518, 2770, 3105, 3497, 4312, 5105]
| }
| }, {
| "name": "4096x3072_TL84_1",
| "resolution": "4096x3072",
| "illumination": "TL84",
| "vignetting": 1,
| "lsc_samples_red": {
| "uCoeff": [1086, 1672, 1906, 1980, 1987, 1993, 1967, 1922, 1910, 1929, 1939, 1972, 1972, 1917, 1842, 1651, 1074, 1466, 1828, 1944, 2000, 1974, 1935, 1881, 1827, 1782, 1816, 1862, 1922, 1952, 1954, 1921, 1789, 1466, 1699, 1907, 1980, 1982, 1920, 1842, 1748, 1676, 1643, 1676, 1737, 1819, 1901, 1953, 1956, 1861, 1657, 1805, 1956, 2001, 1960, 1868, 1738, 1621, 1542, 1506, 1526, 1599, 1699, 1827, 1919, 1948, 1902, 1759, 1861, 1974, 1993, 1912, 1782, 1625, 1504, 1404, 1369, 1390, 1478, 1595, 1735, 1868, 1929, 1928, 1808, 1904, 1978, 1957, 1850, 1683, 1529, 1385, 1280, 1240, 1269, 1357, 1476, 1655, 1815, 1929, 1947, 1858, 1920, 1971, 1952, 1819, 1623, 1441, 1288, 1184, 1139, 1161, 1258, 1404, 1580, 1759, 1886, 1949, 1859, 1921, 1965, 1916, 1771, 1563, 1377, 1221, 1110, 1054, 1083, 1187, 1340, 1521, 1714, 1884, 1936, 1876, 1934, 1953, 1923, 1751, 1536, 1342, 1188, 1070, 1024, 1052, 1155, 1304, 1487, 1695, 1873, 1932, 1896, 1906, 1957, 1909, 1755, 1552, 1361, 1193, 1087, 1041, 1067, 1170, 1325, 1502, 1705, 1853, 1943, 1891, 1904, 1956, 1905, 1786, 1580, 1404, 1253, 1138, 1088, 1125, 1214, 1364, 1533, 1738, 1886, 1934, 1845, 1865, 1955, 1943, 1815, 1645, 1479, 1336, 1228, 1183, 1210, 1304, 1451, 1602, 1777, 1903, 1925, 1836, 1838, 1936, 1957, 1862, 1725, 1574, 1433, 1341, 1301, 1330, 1406, 1534, 1676, 1820, 1929, 1914, 1787, 1752, 1895, 1942, 1906, 1804, 1675, 1549, 1474, 1437, 1460, 1534, 1638, 1761, 1887, 1914, 1880, 1731, 1657, 1839, 1934, 1946, 1876, 1780, 1669, 1609, 1583, 1609, 1660, 1733, 1839, 1898, 1905, 1817, 1625, 1451, 1768, 1862, 1925, 1911, 1865, 1793, 1746, 1715, 1750, 1782, 1841, 1885, 1904, 1862, 1747, 1433, 1072, 1631, 1792, 1881, 1935, 1929, 1906, 1859, 1842, 1853, 1867, 1889, 1928, 1874, 1792, 1613, 1070]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1087, 1698, 1915, 1997, 2042, 2042, 2000, 1982, 1959, 1976, 1963, 2001, 2012, 1954, 1878, 1665, 1074, 1481, 1860, 1999, 2044, 2038, 1988, 1935, 1868, 1857, 1868, 1915, 1972, 2015, 2007, 1943, 1811, 1473, 1721, 1942, 2041, 2038, 1983, 1892, 1816, 1732, 1704, 1728, 1782, 1878, 1936, 1997, 1991, 1892, 1666, 1843, 1992, 2063, 2016, 1925, 1790, 1671, 1577, 1547, 1565, 1650, 1762, 1882, 1971, 2008, 1948, 1772, 1919, 2021, 2048, 1973, 1837, 1675, 1530, 1423, 1390, 1421, 1509, 1651, 1795, 1922, 2001, 1966, 1821, 1940, 2044, 2028, 1915, 1754, 1574, 1412, 1292, 1250, 1290, 1385, 1538, 1708, 1863, 1972, 1977, 1856, 1938, 2039, 2001, 1879, 1680, 1489, 1309, 1187, 1143, 1171, 1281, 1440, 1626, 1812, 1952, 1979, 1896, 1987, 2023, 1978, 1831, 1621, 1415, 1241, 1108, 1061, 1097, 1207, 1376, 1577, 1772, 1931, 1976, 1902, 1969, 2028, 1970, 1811, 1596, 1383, 1208, 1077, 1024, 1060, 1180, 1352, 1550, 1750, 1919, 1964, 1892, 1949, 2023, 1962, 1810, 1602, 1400, 1220, 1094, 1042, 1080, 1189, 1362, 1564, 1764, 1921, 1965, 1879, 1938, 2020, 1984, 1856, 1646, 1448, 1272, 1150, 1106, 1142, 1244, 1415, 1609, 1791, 1937, 1973, 1873, 1921, 2025, 1994, 1882, 1708, 1526, 1366, 1253, 1209, 1245, 1338, 1487, 1661, 1832, 1967, 1971, 1851, 1880, 1990, 2007, 1932, 1795, 1634, 1479, 1374, 1332, 1364, 1458, 1585, 1750, 1883, 1968, 1966, 1816, 1806, 1967, 2013, 1977, 1872, 1738, 1613, 1517, 1489, 1509, 1588, 1704, 1828, 1940, 1973, 1919, 1750, 1682, 1886, 1985, 2003, 1946, 1850, 1754, 1673, 1650, 1659, 1723, 1816, 1901, 1969, 1961, 1863, 1641, 1481, 1800, 1931, 2001, 1986, 1936, 1863, 1806, 1784, 1811, 1845, 1911, 1965, 1960, 1907, 1778, 1447, 1075, 1665, 1860, 1959, 1988, 1990, 1963, 1940, 1919, 1915, 1942, 1962, 1976, 1942, 1831, 1634, 1071]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1090, 1698, 1909, 1990, 2036, 2042, 2006, 1971, 1954, 1940, 1979, 2001, 1999, 1948, 1866, 1649, 1074, 1486, 1860, 1993, 2037, 2026, 1994, 1930, 1864, 1853, 1864, 1910, 1962, 1992, 1994, 1943, 1805, 1458, 1703, 1948, 2035, 2038, 1983, 1897, 1807, 1728, 1693, 1717, 1782, 1869, 1936, 1985, 1967, 1886, 1646, 1824, 1992, 2057, 2022, 1921, 1786, 1664, 1574, 1544, 1562, 1647, 1746, 1872, 1961, 1996, 1919, 1745, 1893, 2015, 2042, 1968, 1833, 1665, 1530, 1425, 1390, 1413, 1507, 1640, 1778, 1907, 1984, 1954, 1816, 1947, 2044, 2017, 1910, 1750, 1565, 1410, 1292, 1247, 1279, 1378, 1523, 1697, 1863, 1957, 1965, 1845, 1950, 2033, 2006, 1861, 1673, 1477, 1309, 1183, 1133, 1166, 1270, 1427, 1612, 1791, 1932, 1973, 1863, 1968, 2029, 1983, 1831, 1615, 1412, 1233, 1112, 1060, 1091, 1203, 1366, 1561, 1752, 1911, 1971, 1879, 1963, 2010, 1970, 1808, 1584, 1380, 1208, 1075, 1024, 1061, 1171, 1343, 1537, 1743, 1895, 1953, 1865, 1968, 2017, 1967, 1810, 1605, 1400, 1220, 1089, 1041, 1071, 1183, 1353, 1555, 1744, 1911, 1965, 1879, 1944, 2020, 1984, 1839, 1643, 1438, 1268, 1147, 1103, 1134, 1240, 1397, 1584, 1779, 1926, 1962, 1857, 1915, 2006, 2011, 1872, 1708, 1523, 1361, 1241, 1202, 1232, 1332, 1484, 1650, 1828, 1951, 1948, 1829, 1856, 1984, 2007, 1932, 1782, 1621, 1476, 1372, 1332, 1367, 1452, 1582, 1734, 1879, 1957, 1943, 1794, 1800, 1960, 2013, 1971, 1868, 1734, 1621, 1520, 1489, 1506, 1585, 1700, 1819, 1930, 1962, 1902, 1734, 1687, 1898, 1991, 2003, 1946, 1846, 1742, 1659, 1643, 1659, 1719, 1807, 1896, 1947, 1950, 1857, 1622, 1477, 1800, 1936, 1994, 1981, 1936, 1863, 1802, 1780, 1798, 1836, 1906, 1959, 1949, 1891, 1772, 1433, 1075, 1649, 1866, 1954, 1988, 1973, 1957, 1920, 1904, 1905, 1916, 1962, 1959, 1919, 1843, 1615, 1070]
| },
| "lsc_samples_blue": {
| "uCoeff": [1089, 1623, 1809, 1879, 1932, 1908, 1871, 1870, 1832, 1849, 1871, 1897, 1908, 1879, 1785, 1613, 1070, 1422, 1736, 1873, 1921, 1908, 1866, 1807, 1747, 1730, 1729, 1778, 1845, 1885, 1886, 1837, 1714, 1415, 1638, 1805, 1901, 1916, 1849, 1785, 1694, 1617, 1610, 1617, 1678, 1766, 1849, 1881, 1854, 1782, 1597, 1740, 1860, 1918, 1885, 1795, 1688, 1569, 1495, 1476, 1495, 1555, 1656, 1786, 1853, 1883, 1825, 1674, 1795, 1868, 1885, 1827, 1730, 1590, 1469, 1374, 1336, 1363, 1439, 1555, 1679, 1807, 1864, 1845, 1749, 1809, 1871, 1868, 1786, 1641, 1482, 1346, 1254, 1212, 1241, 1326, 1457, 1590, 1740, 1826, 1838, 1764, 1838, 1886, 1864, 1743, 1567, 1407, 1272, 1163, 1129, 1150, 1236, 1374, 1514, 1683, 1813, 1842, 1771, 1840, 1858, 1825, 1682, 1525, 1349, 1205, 1105, 1057, 1083, 1169, 1304, 1474, 1643, 1786, 1836, 1784, 1840, 1867, 1812, 1671, 1502, 1316, 1173, 1067, 1024, 1050, 1149, 1283, 1441, 1610, 1774, 1824, 1795, 1816, 1847, 1815, 1682, 1498, 1329, 1176, 1073, 1034, 1056, 1152, 1290, 1455, 1621, 1767, 1826, 1773, 1792, 1842, 1813, 1691, 1527, 1364, 1214, 1117, 1086, 1114, 1194, 1323, 1488, 1644, 1784, 1831, 1771, 1798, 1838, 1826, 1740, 1582, 1428, 1297, 1198, 1168, 1182, 1264, 1405, 1548, 1689, 1806, 1827, 1743, 1749, 1833, 1853, 1779, 1655, 1509, 1389, 1298, 1260, 1284, 1362, 1484, 1618, 1751, 1822, 1812, 1697, 1695, 1792, 1850, 1812, 1723, 1618, 1489, 1417, 1405, 1401, 1484, 1568, 1689, 1783, 1828, 1792, 1664, 1597, 1760, 1843, 1828, 1790, 1697, 1616, 1520, 1489, 1520, 1580, 1681, 1771, 1828, 1821, 1750, 1559, 1401, 1682, 1793, 1831, 1812, 1767, 1699, 1639, 1626, 1647, 1691, 1758, 1802, 1831, 1793, 1662, 1408, 1067, 1573, 1752, 1821, 1851, 1864, 1820, 1771, 1764, 1781, 1810, 1832, 1851, 1832, 1730, 1564, 1065]
| }
| }],
| "tableAll_len": 28
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-007, 1.27247e-010]
| }
| },
| "ccm_calib": {
| "control": {
| "enable": 1,
| "mode": "CALIB_CCM_MODE_AUTO",
| "wbgain_tolerance": 0.1,
| "gain_tolerance": 0.2
| },
| "lumaCCM": {
| "rgb2y_para": [38, 75, 15],
| "low_bound_pos_bit": 8,
| "y_alpha_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
| "gain_alphaScale_curve": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "scale": [1, 1, 0.8, 0.6, 0.4, 0.1, 0.1, 0.1, 0.1]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [1.0031, 2.51617],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.44759, 2.14826],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.52055, 1.67516],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.75002, 1.48736],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.84142, 1.372],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.799961, 2.95283],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.39753, 2.211],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 8, 16, 64],
| "sat": [100, 100, 80, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.89221, -0.688161, -0.204051, -0.336929, 1.68177, -0.344839, -0.229553, -1.00236, 2.23192],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.48915, -0.336645, -0.152501, -0.160242, 1.41806, -0.257821, -0.0817668, -0.567464, 1.64923],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.25024, -1.13282, -0.11742, -0.390896, 1.67101, -0.28011, -0.0906264, -0.6758, 1.76643],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.77787, -0.692118, -0.0857496, -0.176445, 1.38348, -0.207038, 0.044611, -0.352188, 1.30758],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.0226, -0.886232, -0.13637, -0.287816, 1.71998, -0.432168, -0.100303, -0.542299, 1.6426],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.60712, -0.47901, -0.128114, -0.102437, 1.45034, -0.347902, 0.0353135, -0.222864, 1.18755],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [2.05221, -0.921284, -0.130924, -0.247799, 1.65851, -0.410715, -0.0694517, -0.477374, 1.54683],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.63835, -0.51509, -0.123262, -0.0635004, 1.39465, -0.331154, 0.0674702, -0.185011, 1.11754],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [2.11104, -0.95816, -0.152883, -0.245995, 1.67203, -0.426034, -0.0689937, -0.422324, 1.49132],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.68675, -0.541537, -0.145216, -0.0572974, 1.40547, -0.348177, 0.072652, -0.143429, 1.07078],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.78903, -0.476385, -0.312649, -0.390382, 1.72737, -0.33699, -0.421678, -1.46397, 2.88564],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.39088, -0.170354, -0.220522, -0.221658, 1.46163, -0.239972, -0.245796, -0.899367, 2.14516],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [2.00808, -0.812976, -0.195106, -0.320769, 1.67788, -0.357109, -0.117101, -0.672145, 1.78925],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.58973, -0.429409, -0.160319, -0.133478, 1.41462, -0.281144, 0.0162207, -0.32357, 1.30735],
| "ccOffsets": [0, 0, 0]
| }],
| "matrixAll_len": 14
| }
| },
| "lut3d_calib": {
| "common": {
| "enable": 0,
| "mode": "CALIB_Lut3D_MODE_AUTO",
| "gain_tolerance": 0.1,
| "wbgain_tolerance": 1
| },
| "MLut3D": {
| "Table": {
| "look_up_table_r": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "ALut3D": {
| "damp_en": 1,
| "lutAll": [{
| "name": "Normal",
| "awbGain": [1, 1],
| "gain_alpha": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "alpha": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "Table": {
| "look_up_table_r": [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
| "look_up_table_g": [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }],
| "lutAll_len": 1
| }
| },
| "adehaze_calib_v30": {
| "DehazeTuningPara": {
| "Enable": 1,
| "cfg_alpha": 0,
| "ByPassThr": 0,
| "dehaze_setting": {
| "en": 0,
| "air_lc_en": 1,
| "stab_fnum": 8,
| "sigma": 6,
| "wt_sigma": 8,
| "air_sigma": 120,
| "tmax_sigma": 0.01,
| "pre_wet": 0.01,
| "DehazeData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "dc_min_th": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "dc_min_th_len": 9,
| "dc_max_th": [192, 192, 192, 192, 192, 192, 192, 192, 192],
| "dc_max_th_len": 9,
| "yhist_th": [249, 249, 249, 249, 249, 249, 249, 249, 249],
| "yhist_th_len": 9,
| "yblk_th": [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
| "yblk_th_len": 9,
| "dark_th": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "dark_th_len": 9,
| "bright_min": [180, 180, 180, 180, 180, 180, 180, 180, 180],
| "bright_min_len": 9,
| "bright_max": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "bright_max_len": 9,
| "wt_max": [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
| "wt_max_len": 9,
| "air_min": [200, 200, 200, 200, 200, 200, 200, 200, 200],
| "air_min_len": 9,
| "air_max": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "air_max_len": 9,
| "tmax_base": [125, 125, 125, 125, 125, 125, 125, 125, 125],
| "tmax_base_len": 9,
| "tmax_off": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
| "tmax_off_len": 9,
| "tmax_max": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "tmax_max_len": 9,
| "cfg_wt": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "cfg_wt_len": 9,
| "cfg_air": [210, 210, 210, 210, 210, 210, 210, 210, 210],
| "cfg_air_len": 9,
| "cfg_tmax": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "cfg_tmax_len": 9,
| "dc_weitcur": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "dc_weitcur_len": 9,
| "bf_weight": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
| "bf_weight_len": 9,
| "range_sigma": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "range_sigma_len": 9,
| "space_sigma_pre": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_pre_len": 9,
| "space_sigma_cur": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_cur_len": 9
| }
| },
| "enhance_setting": {
| "en": 1,
| "enhance_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
| "EnhanceData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "enhance_value": [1.25, 1.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.3, 1.3, 1.2, 1.1, 1, 1, 1, 1, 1],
| "enhance_chroma_len": 9
| }
| },
| "hist_setting": {
| "en": 0,
| "hist_para_en": 1,
| "HistData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "hist_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_gratio_len": 9,
| "hist_th_off": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "hist_th_off_len": 9,
| "hist_k": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_k_len": 9,
| "hist_min": [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
| "hist_min_len": 9,
| "hist_scale": [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
| "hist_scale_len": 9,
| "cfg_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "cfg_gratio_len": 9
| }
| }
| }
| },
| "adrc_calib_V2": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalSetting": {
| "LocalData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "LocalAutoEnable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalAutoEnable_len": 13,
| "LocalAutoWeit": [0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477],
| "LocalAutoWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
| },
| "Scale_y": [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
| "ByPassThr": 0,
| "Edge_Weit": 0.0627451,
| "OutPutLongFrame": 0,
| "IIR_frame": 16,
| "Tolerance": 0,
| "damp": 0.9
| }
| },
| "af_v30": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_CONTINUOUS_PICTURE",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "win_v_size": 0,
| "video_win_h_offs": 0,
| "video_win_v_offs": 0,
| "video_win_h_size": 0,
| "video_win_v_size": 0,
| "fixed_mode": {
| "code": 8
| },
| "macro_mode": {
| "code": 32
| },
| "infinity_mode": {
| "code": 32
| },
| "contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "FullRangeTbl_len": 9,
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "AdaptRangeTbl_len": 9,
| "TrigThers": [0.075],
| "TrigThers_len": 1,
| "TrigThersFv": [0],
| "TrigThersFv_len": 1,
| "LumaTrigThers": 1,
| "ExpTrigThers": 1,
| "StableThers": 0.02,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 200,
| "OutFocusPos": 64,
| "WeightEnable": 0,
| "Weight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "SearchPauseLumaEnable": 0,
| "SearchPauseLumaThers": 0,
| "SearchLumaStableFrames": 0,
| "SearchLumaStableThers": 0,
| "Stage1QuickFoundThers": 0.04,
| "Stage2QuickFoundThers": 0.2,
| "FlatValue": 0,
| "PointLightLumaTh": 3000,
| "PointLightCntTh": 300,
| "ZoomCfg": {
| "QuickFoundThersZoomIdx": [0],
| "QuickFoundThersZoomIdx_len": 1,
| "QuickFoundThers": [0],
| "QuickFoundThers_len": 1,
| "SearchStepZoomIdx": [0],
| "SearchStepZoomIdx_len": 1,
| "SearchStep": [0],
| "SearchStep_len": 1,
| "StopStepZoomIdx": [0],
| "StopStepZoomIdx_len": 1,
| "StopStep": [0],
| "StopStep_len": 1,
| "SkipHighPassZoomIdx": 0,
| "SkipHighPassGain": 0
| }
| },
| "video_contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "FullRangeTbl_len": 9,
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "AdaptRangeTbl_len": 9,
| "TrigThers": [0.15],
| "TrigThers_len": 1,
| "TrigThersFv": [0],
| "TrigThersFv_len": 1,
| "LumaTrigThers": 1,
| "ExpTrigThers": 1,
| "StableThers": 0.02,
| "StableFrames": 20,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 200,
| "OutFocusPos": 64,
| "WeightEnable": 0,
| "Weight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "SearchPauseLumaEnable": 0,
| "SearchPauseLumaThers": 0,
| "SearchLumaStableFrames": 0,
| "SearchLumaStableThers": 0,
| "Stage1QuickFoundThers": 0.04,
| "Stage2QuickFoundThers": 0.2,
| "FlatValue": 0,
| "PointLightLumaTh": 3000,
| "PointLightCntTh": 300,
| "ZoomCfg": {
| "QuickFoundThersZoomIdx": [0],
| "QuickFoundThersZoomIdx_len": 1,
| "QuickFoundThers": [0],
| "QuickFoundThers_len": 1,
| "SearchStepZoomIdx": [0],
| "SearchStepZoomIdx_len": 1,
| "SearchStep": [0],
| "SearchStep_len": 1,
| "StopStepZoomIdx": [0],
| "StopStepZoomIdx_len": 1,
| "StopStep": [0],
| "StopStep_len": 1,
| "SkipHighPassZoomIdx": 0,
| "SkipHighPassGain": 0
| }
| },
| "laser_af": {
| "enable": 0,
| "vcmDot": [0, 16, 32, 40, 48, 56, 64],
| "distanceDot": [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
| },
| "pdaf": {
| "enable": 0,
| "pdVsCdDebug": 0,
| "pdDumpDebug": 0,
| "pdDataBit": 10,
| "pdBlkLevel": 64,
| "pdSearchRadius": 3,
| "pdMirrorInCalib": 1,
| "pdVsImgoutMirror": 1,
| "pdWidth": 508,
| "pdHeight": 760,
| "pdConfdMwinFactor": 3,
| "pdStepRatio": [1.0, 1.0, 1.0, 0.9, 0.8, 0.7, 0.7],
| "pdStepDefocus": [32, 64, 96, 128, 160, 192, 224],
| "pdIsoPara":
| [
| {
| "iso": 1600,
| "pdNoiseFactor": 0.315,
| "pdConfdRatio1": 1,
| "pdConfdRatio2": 1,
| "pdNoiseBias": 1.3,
| "pdConfdThresh": 0.4,
| "defocusPdThresh": 12,
| "stablePdRatio": 0.125,
| "stablePdOffset": 8,
| "stableCntRatio": 1.5,
| "noconfCntThresh": 4,
| "fineSearchTbl": [{
| "confidence": 200,
| "range": 0,
| "stepPos": 1
| }, {
| "confidence": 0,
| "range": 4,
| "stepPos": 1
| }],
| "fineSearchTbl_len": 2
| },
| {
| "iso": 204800,
| "pdNoiseFactor": 0.315,
| "pdConfdRatio1": 1,
| "pdConfdRatio2": 1,
| "pdNoiseBias": 1.3,
| "pdConfdThresh": 0.4,
| "defocusPdThresh": 12,
| "stablePdRatio": 0.125,
| "stablePdOffset": 8,
| "stableCntRatio": 1.5,
| "noconfCntThresh": 4,
| "fineSearchTbl": [{
| "confidence": 200,
| "range": 8,
| "stepPos": 2
| }, {
| "confidence": 0,
| "range": 16,
| "stepPos": 2
| }],
| "fineSearchTbl_len": 2
| }
| ],
| "pdIsoPara_len": 2
| },
| "vcmcfg": {
| "start_current": -1,
| "rated_current": -1,
| "step_mode": -1,
| "extra_delay": 0,
| "posture_diff": 0.1
| },
| "zoomfocus_tbl": {
| "widemod_deviate": 10,
| "telemod_deviate": 10,
| "zoom_move_dot": [0],
| "zoom_move_dot_len": 1,
| "zoom_move_step": [16],
| "zoom_move_step_len": 1,
| "focal_length": [0],
| "focal_length_len": 1,
| "zoomcode": [0],
| "zoomcode_len": 1,
| "focuscode": [{
| "pos": 0.5,
| "code": [0],
| "code_len": 1
| }, {
| "pos": -1,
| "code": [0],
| "code_len": 1
| }],
| "focuscode_len": 2,
| "ZoomSearchTbl": [0],
| "ZoomSearchTbl_len": 1,
| "ZoomSearchRefCurveIdx": 0,
| "FocusSearchMargin": 50,
| "FocusSearchPlusRange": [0],
| "FocusSearchPlusRange_len": 1,
| "FocusStage1Step": 1,
| "searchZoomRange": 100,
| "searchFocusRange": 100,
| "searchEmax": 100,
| "searchEavg": 100,
| "IsZoomFocusRec": 0,
| "ZoomInfoDir": "/userdata"
| },
| "zoom_meas": [{
| "zoom_idx": 0,
| "measiso": [{
| "iso": 50,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 100,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 200,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 400,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 800,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 1600,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 3200,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 6400,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 12800,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 25600,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 51200,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 102400,
| "idx": 1,
| "spotlt_scene_idx": 1
| }, {
| "iso": 204800,
| "idx": 1,
| "spotlt_scene_idx": 1
| }]
| }],
| "zoom_meas_len": 1,
| "meascfg_tbl": [{
| "tbl_idx": 0,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "v1_fir_sel": 1,
| "v1_iir_coe": [0, 503, 0, 0, 8, 0, 0, 9, 0],
| "v1_fir_coe": [-1997, 0, 1997],
| "v2_iir_coe": [476, 33, 34],
| "v2_fir_coe": [-985, 0, 985],
| "h1_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h1_iir2_coe": [512, 870, -399, 37, 0, -37],
| "h2_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h2_iir2_coe": [512, 870, -399, 37, 0, -37],
| "ldg_en": 0,
| "ve_ldg_lumth_l": 64,
| "ve_ldg_gain_l": 28,
| "ve_ldg_gslp_l": 1286,
| "ve_ldg_lumth_h": 185,
| "ve_ldg_gain_h": 8,
| "ve_ldg_gslp_h": 1400,
| "ho_ldg_lumth_l": 64,
| "ho_ldg_gain_l": 28,
| "ho_ldg_gslp_l": 1286,
| "ho_ldg_lumth_h": 185,
| "ho_ldg_gain_h": 8,
| "ho_ldg_gslp_h": 1400,
| "v_fv_thresh": 4,
| "h_fv_thresh": 4,
| "highlit_thresh": 912
| },
| {
| "tbl_idx": 1,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "v1_fir_sel": 1,
| "v1_iir_coe": [0, 503, 0, 0, 8, 0, 0, 9, 0],
| "v1_fir_coe": [-1997, 0, 1997],
| "v2_iir_coe": [476, 33, 34],
| "v2_fir_coe": [-985, 0, 985],
| "h1_iir1_coe": [512, 811, -375, 266, 0, -266],
| "h1_iir2_coe": [250, 945, -448, 41, 0, -41],
| "h2_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h2_iir2_coe": [512, 870, -399, 37, 0, -37],
| "ldg_en": 0,
| "ve_ldg_lumth_l": 64,
| "ve_ldg_gain_l": 28,
| "ve_ldg_gslp_l": 1286,
| "ve_ldg_lumth_h": 185,
| "ve_ldg_gain_h": 8,
| "ve_ldg_gslp_h": 1400,
| "ho_ldg_lumth_l": 64,
| "ho_ldg_gain_l": 28,
| "ho_ldg_gslp_l": 1286,
| "ho_ldg_lumth_h": 185,
| "ho_ldg_gain_h": 8,
| "ho_ldg_gslp_h": 1400,
| "v_fv_thresh": 4,
| "h_fv_thresh": 4,
| "highlit_thresh": 912
| }],
| "meascfg_tbl_len": 2
| }
| },
| "amerge_calib_V2": {
| "MergeTuningPara": {
| "BaseFrm": "BASEFRAME_LONG",
| "ByPassThr": 0,
| "LongFrmModeData": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| },
| "ShortFrmModeData": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "Coef": [0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05],
| "Coef_len": 13,
| "ms_thd0": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "ms_thd0_len": 13,
| "lm_thd0": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "lm_thd0_len": 13
| },
| "OECurve_damp": 0.3,
| "MDCurve_damp": 0.3
| }
| }
| },
| "cac_calib": {
| "SettingPara": {
| "enable": 0,
| "psf_path": "/etc/iqfiles/cac/cac_map_64x48x34_br0.bin",
| "psf_shift_bits": 2,
| "center_en": 0,
| "center_x": 0,
| "center_y": 0
| },
| "TuningPara": {
| "SettingByIso": [{
| "iso": 50,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 409600,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "SettingByIso_len": 14
| }
| },
| "bayer2dnr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [185, 166, 148, 131, 104, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [288, 256, 226, 199, 153, 119, 100, 94, 96, 100, 103, 101, 94, 87, 87, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [529, 462, 399, 340, 235, 152, 100, 94, 116, 139, 153, 155, 144, 119, 87, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [871, 748, 632, 521, 319, 129, 87, 87, 133, 204, 240, 246, 223, 170, 87, 87]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1021, 883, 754, 633, 417, 239, 125, 138, 208, 264, 294, 295, 266, 205, 113, 87]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1213, 1065, 926, 798, 576, 408, 312, 295, 324, 359, 377, 371, 337, 275, 194, 139]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1506, 1337, 1181, 1039, 802, 632, 538, 508, 514, 525, 522, 495, 440, 360, 274, 251]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2382, 2134, 1904, 1691, 1324, 1040, 852, 757, 732, 739, 743, 724, 671, 581, 460, 346]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1255, 1216]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.5,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.8,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 0.92
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "bayertnr_v2": {
| "Version": "V2",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [185, 166, 148, 131, 104, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [288, 256, 226, 199, 153, 119, 100, 94, 96, 100, 103, 101, 94, 87, 87, 87],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [288, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [529, 462, 399, 340, 235, 152, 100, 94, 116, 139, 153, 155, 144, 119, 87, 87],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [508, 452, 398, 348, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [871, 748, 632, 521, 319, 129, 87, 87, 133, 204, 240, 246, 223, 170, 87, 87],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [45, 45, 44, 44, 43, 42, 41, 40, 39, 37, 35, 33, 32, 32, 32, 32],
| "hi_sigma": [679, 633, 589, 548, 472, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1021, 883, 754, 633, 417, 239, 125, 138, 208, 264, 294, 295, 266, 205, 113, 87],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [73, 71, 69, 68, 66, 64, 62, 60, 59, 57, 55, 53, 50, 47, 44, 41],
| "hi_sigma": [754, 713, 674, 637, 572, 523, 523, 523, 523, 526, 535, 535, 526, 523, 523, 523]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1213, 1065, 926, 798, 576, 408, 312, 295, 324, 359, 377, 371, 337, 275, 194, 139],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [116, 113, 109, 106, 101, 97, 95, 93, 92, 91, 90, 88, 86, 84, 82, 80],
| "hi_sigma": [850, 814, 781, 750, 696, 656, 633, 629, 636, 644, 648, 647, 639, 624, 619, 619]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1506, 1337, 1181, 1039, 802, 632, 538, 508, 514, 525, 522, 495, 440, 360, 274, 251],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [179, 175, 171, 168, 162, 158, 156, 154, 153, 152, 151, 149, 147, 144, 143, 142],
| "hi_sigma": [996, 965, 936, 910, 866, 835, 818, 812, 814, 816, 815, 810, 800, 785, 769, 766]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2382, 2134, 1904, 1691, 1324, 1040, 852, 757, 732, 739, 743, 724, 671, 581, 460, 346],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [293, 289, 286, 283, 278, 274, 271, 269, 267, 266, 265, 263, 262, 260, 258, 257],
| "hi_sigma": [1479, 1451, 1425, 1401, 1360, 1328, 1306, 1295, 1293, 1293, 1294, 1292, 1286, 1276, 1262, 1249]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [368, 368, 367, 366, 363, 360, 356, 353, 349, 345, 342, 339, 337, 335, 334, 332],
| "hi_sigma": [1897, 1869, 1844, 1820, 1781, 1752, 1735, 1726, 1724, 1724, 1723, 1718, 1710, 1698, 1682, 1667]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [368, 368, 367, 366, 363, 360, 356, 353, 349, 345, 342, 339, 337, 335, 334, 332],
| "hi_sigma": [1897, 1869, 1844, 1820, 1781, 1752, 1735, 1726, 1724, 1724, 1723, 1718, 1710, 1698, 1682, 1667]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [368, 368, 367, 366, 363, 360, 356, 353, 349, 345, 342, 339, 337, 335, 334, 332],
| "hi_sigma": [1897, 1869, 1844, 1820, 1781, 1752, 1735, 1726, 1724, 1724, 1723, 1718, 1710, 1698, 1682, 1667]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [368, 368, 367, 366, 363, 360, 356, 353, 349, 345, 342, 339, 337, 335, 334, 332],
| "hi_sigma": [1897, 1869, 1844, 1820, 1781, 1752, 1735, 1726, 1724, 1724, 1723, 1718, 1710, 1698, 1682, 1667]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3022, 2722, 2446, 2194, 1771, 1462, 1271, 1181, 1156, 1154, 1141, 1096, 1009, 875, 706, 542],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [368, 368, 367, 366, 363, 360, 356, 353, 349, 345, 342, 339, 337, 335, 334, 332],
| "hi_sigma": [1897, 1869, 1844, 1820, 1781, 1752, 1735, 1726, 1724, 1724, 1723, 1718, 1710, 1698, 1682, 1667]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 51, 61, 65, 66, 64, 59, 52, 43, 32, 32, 32, 32],
| "hi_sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [36, 36, 36, 45, 63, 70, 72, 71, 67, 63, 58, 53, 50, 47, 45, 43],
| "hi_sigma": [499, 476, 457, 440, 415, 398, 387, 379, 370, 361, 348, 332, 311, 287, 269, 269]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [34, 38, 47, 53, 61, 66, 69, 70, 71, 71, 71, 70, 68, 65, 61, 53],
| "hi_sigma": [663, 641, 621, 603, 576, 558, 546, 539, 533, 527, 519, 508, 493, 475, 454, 433]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [75, 78, 80, 81, 80, 78, 77, 78, 82, 88, 95, 102, 108, 111, 111, 103],
| "hi_sigma": [973, 945, 919, 897, 862, 840, 828, 824, 822, 821, 817, 810, 799, 783, 763, 743]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [81, 95, 103, 109, 115, 118, 118, 117, 114, 110, 106, 102, 97, 93, 88, 83],
| "hi_sigma": [1438, 1418, 1402, 1389, 1374, 1369, 1369, 1370, 1369, 1363, 1352, 1333, 1307, 1273, 1227, 1208]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1055, 1016],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [228, 232, 235, 237, 237, 236, 233, 229, 225, 221, 218, 216, 213, 211, 207, 200],
| "hi_sigma": [1586, 1615, 1642, 1666, 1706, 1737, 1758, 1770, 1772, 1765, 1749, 1724, 1690, 1647, 1596, 1542]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 3072, 7168, 4096, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 100,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 200,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.3,
| "hi_filter_strength": 1.3,
| "soft_threshold_ratio": 0
| }, {
| "iso": 1600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 3200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 6400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 12800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 25600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 51200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 102400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 204800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 100,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 0.8,
| "soft_threshold_ratio": 0
| }, {
| "iso": 200,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.3,
| "hi_filter_strength": 1.3,
| "soft_threshold_ratio": 0
| }, {
| "iso": 1600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 3200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 6400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 12800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 25600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 51200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 102400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 204800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "lo_med_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v2": {
| "Version": "V2",
| "TuningPara": {
| "enable": 1,
| "Kernel_Coeff": {
| "kernel_5x5": [1, 0.8825, 0.7788, 0.6065, 0.3679]
| },
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 14,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 14,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 20,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v3": {
| "Version": "V3",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.15055e-012, 1.01168e-008, -2.95503e-005, 0.0296286, 12.1512],
| "ynr_lci": 0.369741,
| "ynr_hci": 0.215608
| }, {
| "iso": 100,
| "sigma_curve": [-1.7802e-012, 1.57968e-008, -4.68818e-005, 0.0487306, 13.0347],
| "ynr_lci": 0.374246,
| "ynr_hci": 0.206214
| }, {
| "iso": 200,
| "sigma_curve": [-2.39418e-012, 2.10775e-008, -6.15864e-005, 0.0608484, 22.465],
| "ynr_lci": 0.369978,
| "ynr_hci": 0.197048
| }, {
| "iso": 400,
| "sigma_curve": [-3.63963e-012, 3.20253e-008, -9.33356e-005, 0.0910501, 31.789],
| "ynr_lci": 0.36463,
| "ynr_hci": 0.190618
| }, {
| "iso": 800,
| "sigma_curve": [-4.79446e-012, 4.19604e-008, -0.000119432, 0.105269, 57.7589],
| "ynr_lci": 0.35878,
| "ynr_hci": 0.187374
| }, {
| "iso": 1600,
| "sigma_curve": [-6.95212e-012, 6.02716e-008, -0.000168624, 0.140891, 90.6285],
| "ynr_lci": 0.35538,
| "ynr_hci": 0.184996
| }, {
| "iso": 3200,
| "sigma_curve": [-1.25388e-011, 1.10998e-007, -0.000323076, 0.305516, 94.5135],
| "ynr_lci": 0.34986,
| "ynr_hci": 0.181852
| }, {
| "iso": 6400,
| "sigma_curve": [-2.12495e-011, 1.94594e-007, -0.000600631, 0.647986, 53.5132],
| "ynr_lci": 0.344523,
| "ynr_hci": 0.179135
| }, {
| "iso": 12800,
| "sigma_curve": [-1.25233e-011, 1.23327e-007, -0.000422709, 0.490713, 204.636],
| "ynr_lci": 0.348747,
| "ynr_hci": 0.181688
| }, {
| "iso": 25600,
| "sigma_curve": [-1.25233e-011, 1.23327e-007, -0.000422709, 0.490713, 204.636],
| "ynr_lci": 0.348747,
| "ynr_hci": 0.181688
| }, {
| "iso": 51200,
| "sigma_curve": [-1.25233e-011, 1.23327e-007, -0.000422709, 0.490713, 204.636],
| "ynr_lci": 0.348747,
| "ynr_hci": 0.181688
| }, {
| "iso": 102400,
| "sigma_curve": [-1.25233e-011, 1.23327e-007, -0.000422709, 0.490713, 204.636],
| "ynr_lci": 0.348747,
| "ynr_hci": 0.181688
| }, {
| "iso": 204800,
| "sigma_curve": [-1.25233e-011, 1.23327e-007, -0.000422709, 0.490713, 204.636],
| "ynr_lci": 0.348747,
| "ynr_hci": 0.181688
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 100,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 200,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 400,
| "sigma_curve": [-1.65677e-012, 1.3799e-008, -3.89045e-005, 0.0398789, 31.7414],
| "ynr_lci": 0.261701,
| "ynr_hci": 0.217753
| }, {
| "iso": 800,
| "sigma_curve": [-2.7329e-012, 2.22519e-008, -6.04135e-005, 0.0580665, 46.058],
| "ynr_lci": 0.263882,
| "ynr_hci": 0.21407
| }, {
| "iso": 1600,
| "sigma_curve": [-3.68924e-012, 2.8985e-008, -7.35895e-005, 0.0593183, 78.7866],
| "ynr_lci": 0.253759,
| "ynr_hci": 0.207854
| }, {
| "iso": 3200,
| "sigma_curve": [-6.79955e-012, 5.35954e-008, -0.000136877, 0.113719, 106.702],
| "ynr_lci": 0.261677,
| "ynr_hci": 0.206287
| }, {
| "iso": 6400,
| "sigma_curve": [-1.04235e-011, 8.30699e-008, -0.000214992, 0.174099, 165.13],
| "ynr_lci": 0.238196,
| "ynr_hci": 0.189897
| }, {
| "iso": 12800,
| "sigma_curve": [-1.56028e-011, 1.28796e-007, -0.000360655, 0.360025, 166.39],
| "ynr_lci": 0.248733,
| "ynr_hci": 0.18978
| }, {
| "iso": 25600,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 51200,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 102400,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 204800,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.7,
| "low_bf2": 0.7,
| "low_thred_adj": 0.7,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.7,
| "low_bf2": 0.7,
| "low_thred_adj": 0.7,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1,
| "low_bf2": 1,
| "low_thred_adj": 1,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.25,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.65,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.65,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.3,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.75,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.5,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.5,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.7,
| "low_bf2": 0.7,
| "low_thred_adj": 0.7,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1,
| "low_bf2": 1,
| "low_thred_adj": 1,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.3,
| "high_weight": 0.6,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.45,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "sharp_v4": {
| "Version": "V4",
| "TuningPara": {
| "enable": 1,
| "kernel_sigma_enable": 0,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.3,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [80, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.6,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.6,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 56, 48, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.7,
| "pbf_add": 0,
| "gaus_ratio": 0.2,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.7,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.7,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.4,
| "sharp_ratio": 4,
| "bf_gain": 0.7,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 36, 32],
| "hf_clip": [48, 80, 120, 140, 160, 140, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 3200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 0.8,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 140, 120, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 160, 120, 100, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 86, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.6,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 48, 64, 80, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 1,
| "gaus_ratio": 0.7,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 56, 48, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.3,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [80, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.6,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.6,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 56, 48, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.7,
| "pbf_add": 0,
| "gaus_ratio": 0.2,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.7,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.7,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.4,
| "sharp_ratio": 4,
| "bf_gain": 0.7,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 36, 32],
| "hf_clip": [48, 80, 120, 140, 160, 140, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 3200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 0.8,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 140, 120, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 160, 120, 100, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 86, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.6,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 48, 64, 80, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 1,
| "gaus_ratio": 0.7,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 56, 48, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1.0,
| "GaussianFilter_sigma": 2.0,
| "GaussianFilter_radius": 2.0,
| "hfBilateralFilter_sigma": 1.0
| }
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| }
| }
| }],
| "sub_scene_len": 1
| }],
| "main_scene_len": 1,
| "uapi": [],
| "uapi_len": 0,
| "sys_static_cfg": {
| "algoSwitch": {
| "enable": 0,
| "enable_algos": ["ENABLE_AE"],
| "enable_algos_len": 1
| }
| }
| }
|
|