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
| {
| "sensor_calib": {
| "resolution": {
| "width": 1600,
| "height": 1200
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 15.5, 16, 0, 1, 16, 248],
| "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": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "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": 3.5,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 2
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 2.8,
| "EFL": 2.85,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp21": {
| "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": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 4, 6, 4, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 6, 8, 6, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 0, 0],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.03,
| "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": {
| "DampOver": 0.65,
| "DampUnder": 0.75,
| "DampDark2Bright": 0.25,
| "DampBright2Dark": 0.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 4,
| "WhiteDelay": 4
| },
| "AecFrameRateMode": {
| "isFpsFix": 0,
| "FpsValue": 15
| },
| "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": 10,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.03,
| "InitGainValue": 2,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.03, 0.03, 0.06, 0.06, 0.1],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 2, 2, 8, 15.5],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 1],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.0775, 0.31, 0.62, 0.93, 1.24],
| "ExpLevel_len": 6,
| "DySetpoint": [60, 60, 60, 60, 60, 60],
| "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.124, 0.2635, 0.5425, 0.775, 1.0075, 1.24],
| "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": [35, 35, 30, 25, 20, 15],
| "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, 12, 12],
| "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, 12, 12],
| "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, 12, 12],
| "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.0036, 0.0108, 0.018, 0.036, 0.072],
| "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.018, 0.036, 0.072, 0.18, 0.252, 0.36],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0018, 0.0054, 0.009, 0.0144, 0.0216],
| "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": [0.794242, 1, 1, 1.77658],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
| "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": [6],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [9],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [6],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [9],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333308, 0.333408, 0.333284],
| "rotationMat": [-0.684884, 0.728652, -0.113493, 0.728652, 0.684884, 0.176507, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0625, 0.142578, 0.015625, 17.4375, -0.0898438, 0.0273438, 0.0644531, 126.125, 0.0332031, -0.0742188, 0.0625, 120.875, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1324, -1230, 20, -24]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1014, -953, 32, -11]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-530, -303, -18, -81]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-177, -151, -24, -41]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-171, -101, -94, -105]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-63, -45, -54, -68]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 1,
| "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.05, 0.3, 0.8, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 1,
| "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": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.794242, 1, 1, 1.77658],
| "uvRegion": {
| "u": [124, 67.5, 61.5, 124],
| "v": [131, 182, 145, 128.5]
| },
| "xyRegion": {
| "normal": [-1.05523, -0.609308, 0.024379, -0.0460657],
| "big": [-1.05639, -0.609308, 0.0477019, -0.0589171]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 128.125, 120.75, 186.688, 88.8125, 121.75],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.30034, 1, 1, 1.70842],
| "uvRegion": {
| "u": [62, 67, 125, 124.5],
| "v": [120, 76.5, 125.5, 126.5]
| },
| "xyRegion": {
| "normal": [-0.608922, -0.315698, -0.106549, -0.178898],
| "big": [-0.609074, -0.315698, -0.106549, -0.188889]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 127.062, 121.812, 190.438, 121.688, 108.312],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.3805, 1, 1, 1.41705],
| "uvRegion": {
| "u": [63, 87.5, 127, 124.5],
| "v": [88, 55.5, 125.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.315698, -0.0683205, -0.0220718, -0.134598],
| "big": [-0.315741, -0.0682114, 0.00185048, -0.159973]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 126, 121.375, 190.625, 134.25, 113.375],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.33683, 1, 1, 1.19182],
| "uvRegion": {
| "u": [82.5, 116, 127.5, 127],
| "v": [60.5, 39, 124.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.0698148, 0.103793, 0.0842035, -0.125554],
| "big": [-0.0700568, 0.104949, 0.110531, -0.140309]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 126.375, 121.188, 190.688, 137.688, 121.25],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.45179, 1, 1, 1.11965],
| "uvRegion": {
| "u": [129.5, 127.5, 113, 124],
| "v": [124, 124.5, 40.5, 43.5]
| },
| "xyRegion": {
| "normal": [0.103519, 0.347963, 0.052075, -0.0860776],
| "big": [0.103519, 0.349444, 0.073494, -0.105355]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 126.062, 121.5, 189.938, 145.812, 122.375],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.654896, 1, 1, 1.85947],
| "uvRegion": {
| "u": [124, 72, 66.5, 124],
| "v": [134.5, 203.5, 178, 130.5]
| },
| "xyRegion": {
| "normal": [-1.30124, -1.05754, 0.023903, -0.0679607],
| "big": [-1.30278, -1.05696, 0.0377064, -0.0759719]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 129.312, 120.312, 182.25, 73.9375, 126.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.19565, 1, 1, 1.64804],
| "uvRegion": {
| "u": [124, 62.5, 62.5, 124.5],
| "v": [128, 152.5, 100.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.608922, -0.315698, -0.0217898, -0.100485],
| "big": [-0.609117, -0.315125, 0.00327841, -0.106549]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 127.375, 121.625, 190.5, 118.125, 111.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.30034, 1, 1, 1.70842],
| "defaultDayGainHigh": [1.3805, 1, 1, 1.41705],
| "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.1,
| "dFMin": 0.5,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 1,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500],
| "cct_len": 5,
| "cri_bound_up": [0.091, 0.091, 0.18, 0.12, 0.12],
| "cri_bound_up_len": 5,
| "cri_bound_low": [0.07, 0.07, 0.16, 0.16, 0.16],
| "cri_bound_low_len": 5
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [100],
| "low_len": 1,
| "high": [200],
| "high_len": 1
| }
| },
| "defaultNightGain": [0.794242, 1, 1, 1.77658],
| "lumaValueMatrix": [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 4.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.003,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [200],
| "forBigType_len": 1,
| "forExtraType": [200],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 19.904,
| "meanH": 20.5987
| }, {
| "index": 13,
| "meanC": 17.3806,
| "meanH": -78.9687
| }, {
| "index": 5,
| "meanC": 8.32478,
| "meanH": -64.6089
| }, {
| "index": 10,
| "meanC": 9.24063,
| "meanH": -37.9031
| }, {
| "index": 14,
| "meanC": 14.2597,
| "meanH": 150.98
| }, {
| "index": 16,
| "meanC": 18.9235,
| "meanH": 87.2326
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 0.794242,
| "BGain": 1.77658
| }, {
| "name": "TL84",
| "RGain": 1.3805,
| "BGain": 1.41705
| }, {
| "name": "D50",
| "RGain": 1.19565,
| "BGain": 1.64804
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.2099, 1, 1, 1.6302],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_segnum": "GAMMATYPE_LOG",
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 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": [0, 0.75, 3.3125, 7.125, 13.25, 13, 13, 13, 13, 13, 13, 13, 13],
| "R_Channel_len": 13,
| "Gr_Channel": [0, 0.75, 3.3125, 7.0625, 13.125, 13, 13, 13, 13, 13, 13, 13, 13],
| "Gr_Channel_len": 13,
| "Gb_Channel": [0, 2.5625, 3.0625, 4.625, 12, 13, 13, 13, 13, 13, 13, 13, 13],
| "Gb_Channel_len": 13,
| "B_Channel": [0, 2.5625, 3.0625, 6.5, 12.0625, 13, 13, 13, 13, 13, 13, 13, 13],
| "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],
| "ISO_len": 9,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 9,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 9,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 9,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 9,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 9,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 9,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 9,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 9,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 9,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 9,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 9,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 9,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 9,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 9,
| "noiseCurve_0": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_0_len": 9,
| "noiseCurve_1": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_1_len": 9,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 9,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 9,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 9,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 9
| }
| }
| },
| "adehaze_calib_v21": {
| "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.2, 1.15, 1.1, 1, 1, 1, 1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.3, 1.25, 1.2, 1.15, 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
| }
| }
| }
| },
| "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": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set3": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "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, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_pg_fac": [3, 3, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "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, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_ro_lim": [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [12, 10, 6, 2, 1, 1, 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": [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_line_thr": [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_mad_fac": [10, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_mad_fac": [10, 8, 6, 2, 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": [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [0, 0, 0, 0, 0, 0, 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": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [0, 0, 0, 0, 0, 0, 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": [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| },
| "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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [32, 24, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1],
| "g_line_thr": [32, 24, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_mad_fac": [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_pg_fac": [4, 4, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [3, 3, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [8, 8, 6, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_thr": [6, 6, 5, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "rb_rnd_offs": [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rg_fac": [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| }
| },
| "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
| }
| }
| }
| },
| "amerge_calib": {
| "MergeTuningPara": {
| "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
| },
| "ByPassThr": 0,
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| }
| },
| "adrc_calib": {
| "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
| },
| "LocalTMOSetting": {
| "LocalTMOData": {
| "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,
| "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
| }
| },
| "cpsl": {
| "param": {
| "enable": 0,
| "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
| }
| },
| "orb": {
| "param": {
| "orb_en": 0
| }
| },
| "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": "1600x1200",
| "lsc_sect_size_x": [100, 100, 100, 100, 100, 100, 100, 100],
| "lsc_sect_size_y": [75, 75, 75, 75, 75, 75, 75, 75]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [0.7579, 1.795],
| "tableUsed": [{
| "name": "A_70"
| }, {
| "name": "A_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.2539, 1.752],
| "tableUsed": [{
| "name": "CWF_70"
| }, {
| "name": "CWF_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.5305, 1.3781],
| "tableUsed": [{
| "name": "D50_70"
| }, {
| "name": "D50_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.2745, 1.2332],
| "tableUsed": [{
| "name": "D65_70"
| }, {
| "name": "D65_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.3833, 1.156],
| "tableUsed": [{
| "name": "D75_70"
| }, {
| "name": "D75_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.6293, 1.8515],
| "tableUsed": [{
| "name": "HZ_70"
| }, {
| "name": "HZ_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.1421, 1.707],
| "tableUsed": [{
| "name": "TL84_70"
| }, {
| "name": "TL84_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [0, 0, 0, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "1600x1200_A_70",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3438, 2895, 2657, 2485, 2259, 2149, 2103, 2077, 2029, 2040, 2102, 2154, 2273, 2332, 2475, 2760, 3133, 3110, 2725, 2432, 2257, 2163, 1995, 1899, 1837, 1835, 1821, 1885, 2005, 2091, 2229, 2344, 2542, 2856, 2905, 2557, 2292, 2153, 1976, 1823, 1727, 1665, 1621, 1654, 1711, 1820, 1944, 2103, 2219, 2446, 2716, 2772, 2418, 2178, 2025, 1849, 1693, 1568, 1476, 1431, 1480, 1529, 1662, 1803, 1995, 2140, 2305, 2577, 2634, 2318, 2103, 1897, 1739, 1546, 1421, 1337, 1288, 1315, 1385, 1517, 1686, 1868, 2064, 2219, 2450, 2542, 2241, 2032, 1822, 1649, 1434, 1301, 1208, 1172, 1188, 1262, 1396, 1586, 1792, 2001, 2196, 2371, 2472, 2203, 1957, 1749, 1535, 1358, 1218, 1114, 1086, 1100, 1161, 1296, 1493, 1712, 1923, 2135, 2315, 2442, 2183, 1956, 1711, 1504, 1295, 1165, 1081, 1028, 1048, 1119, 1248, 1466, 1665, 1923, 2129, 2279, 2468, 2198, 1975, 1721, 1503, 1296, 1149, 1064, 1024, 1046, 1110, 1253, 1437, 1657, 1889, 2134, 2302, 2482, 2208, 1991, 1751, 1518, 1309, 1168, 1081, 1034, 1069, 1142, 1277, 1464, 1693, 1941, 2164, 2346, 2556, 2242, 2023, 1815, 1585, 1383, 1237, 1145, 1111, 1134, 1210, 1325, 1511, 1726, 1968, 2190, 2368, 2597, 2304, 2091, 1901, 1656, 1478, 1335, 1230, 1189, 1212, 1292, 1433, 1597, 1850, 2036, 2231, 2494, 2711, 2379, 2209, 1987, 1792, 1597, 1447, 1340, 1314, 1342, 1422, 1540, 1726, 1924, 2139, 2348, 2780, 2837, 2473, 2291, 2060, 1923, 1711, 1618, 1507, 1468, 1491, 1566, 1706, 1861, 2065, 2238, 2494, 3021, 3110, 2595, 2372, 2235, 2053, 1890, 1786, 1697, 1652, 1673, 1756, 1870, 2026, 2192, 2403, 2845, 3598, 3643, 2937, 2488, 2329, 2188, 2059, 1964, 1877, 1846, 1895, 1945, 2031, 2187, 2385, 2783, 3352, 4269, 4474, 3488, 2946, 2544, 2377, 2275, 2183, 2121, 2073, 2084, 2156, 2295, 2515, 2835, 3325, 4142, 5529]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2692, 2287, 2061, 1925, 1830, 1800, 1750, 1714, 1732, 1714, 1755, 1819, 1858, 1900, 2084, 2274, 2654, 2427, 2150, 1958, 1804, 1713, 1636, 1598, 1561, 1549, 1587, 1605, 1668, 1753, 1823, 1904, 2123, 2358, 2292, 2030, 1802, 1711, 1621, 1535, 1476, 1439, 1446, 1472, 1490, 1564, 1657, 1755, 1856, 2005, 2212, 2130, 1894, 1730, 1650, 1535, 1442, 1355, 1333, 1310, 1346, 1363, 1453, 1568, 1706, 1781, 1928, 2102, 2060, 1824, 1693, 1565, 1465, 1360, 1264, 1225, 1216, 1225, 1264, 1349, 1471, 1590, 1749, 1848, 2036, 2013, 1778, 1654, 1518, 1385, 1267, 1186, 1139, 1121, 1137, 1178, 1267, 1407, 1571, 1699, 1830, 1965, 1975, 1763, 1637, 1496, 1345, 1222, 1123, 1088, 1063, 1069, 1134, 1219, 1363, 1494, 1647, 1828, 1922, 1924, 1734, 1595, 1451, 1326, 1187, 1100, 1048, 1029, 1034, 1081, 1193, 1337, 1484, 1647, 1791, 1927, 1945, 1765, 1609, 1467, 1318, 1195, 1102, 1034, 1024, 1029, 1087, 1179, 1338, 1480, 1647, 1801, 1913, 1941, 1768, 1604, 1477, 1337, 1209, 1121, 1063, 1038, 1049, 1107, 1210, 1341, 1496, 1671, 1822, 1951, 1988, 1791, 1664, 1518, 1371, 1255, 1166, 1107, 1087, 1112, 1154, 1254, 1381, 1552, 1693, 1866, 1969, 2010, 1843, 1720, 1602, 1443, 1321, 1239, 1174, 1156, 1172, 1218, 1318, 1457, 1601, 1738, 1910, 2078, 2140, 1904, 1791, 1661, 1544, 1422, 1310, 1274, 1254, 1266, 1331, 1406, 1525, 1691, 1806, 1944, 2270, 2246, 1995, 1839, 1729, 1641, 1521, 1440, 1389, 1369, 1384, 1440, 1503, 1643, 1765, 1861, 2091, 2514, 2482, 2109, 1901, 1798, 1730, 1659, 1570, 1537, 1523, 1528, 1582, 1659, 1737, 1858, 1999, 2381, 2958, 2896, 2384, 2041, 1919, 1824, 1743, 1721, 1661, 1658, 1667, 1721, 1766, 1871, 2034, 2342, 2827, 3650, 3730, 2824, 2388, 2090, 1975, 1862, 1844, 1832, 1796, 1823, 1872, 1932, 2079, 2380, 2785, 3475, 4713]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2926, 2398, 2187, 2022, 1906, 1864, 1829, 1786, 1758, 1775, 1769, 1825, 1935, 1962, 2111, 2342, 2727, 2620, 2249, 2028, 1905, 1805, 1726, 1683, 1624, 1597, 1601, 1641, 1692, 1797, 1872, 1997, 2162, 2415, 2400, 2112, 1932, 1806, 1713, 1616, 1533, 1487, 1466, 1479, 1520, 1596, 1684, 1767, 1889, 2054, 2245, 2243, 2025, 1854, 1732, 1616, 1511, 1406, 1371, 1336, 1360, 1399, 1492, 1596, 1706, 1839, 1961, 2170, 2156, 1935, 1769, 1654, 1529, 1394, 1304, 1251, 1220, 1240, 1297, 1372, 1523, 1643, 1788, 1913, 2056, 2107, 1865, 1748, 1615, 1462, 1327, 1220, 1165, 1144, 1149, 1188, 1298, 1445, 1583, 1730, 1864, 1988, 2018, 1831, 1678, 1545, 1408, 1267, 1163, 1091, 1065, 1071, 1132, 1233, 1375, 1540, 1687, 1835, 1941, 2017, 1824, 1676, 1518, 1372, 1241, 1128, 1066, 1031, 1038, 1102, 1200, 1347, 1502, 1677, 1829, 1942, 2003, 1809, 1656, 1495, 1348, 1225, 1123, 1052, 1024, 1038, 1093, 1199, 1340, 1514, 1648, 1827, 1964, 1973, 1798, 1662, 1511, 1359, 1230, 1116, 1064, 1034, 1047, 1106, 1211, 1356, 1510, 1690, 1840, 1978, 2026, 1814, 1700, 1539, 1390, 1258, 1157, 1097, 1071, 1096, 1144, 1270, 1383, 1532, 1722, 1849, 2004, 2094, 1836, 1710, 1565, 1425, 1307, 1220, 1153, 1133, 1151, 1206, 1298, 1448, 1604, 1725, 1892, 2082, 2136, 1902, 1734, 1627, 1509, 1385, 1286, 1228, 1225, 1240, 1289, 1391, 1512, 1661, 1778, 1942, 2272, 2269, 1931, 1824, 1689, 1562, 1481, 1396, 1319, 1316, 1335, 1406, 1501, 1631, 1728, 1856, 2091, 2552, 2495, 2076, 1866, 1766, 1653, 1570, 1501, 1466, 1450, 1465, 1531, 1606, 1698, 1820, 2009, 2349, 2953, 2931, 2324, 1976, 1859, 1767, 1677, 1610, 1588, 1565, 1596, 1644, 1706, 1803, 1988, 2249, 2766, 3617, 3601, 2771, 2350, 2037, 1886, 1819, 1770, 1743, 1712, 1756, 1802, 1880, 2031, 2285, 2725, 3424, 4846]
| },
| "lsc_samples_blue": {
| "uCoeff": [2804, 2296, 2080, 1964, 1798, 1722, 1718, 1700, 1671, 1640, 1717, 1757, 1799, 1904, 2003, 2246, 2590, 2412, 2081, 1885, 1756, 1655, 1647, 1576, 1542, 1499, 1544, 1595, 1644, 1684, 1770, 1839, 2012, 2308, 2319, 1997, 1809, 1686, 1597, 1527, 1463, 1420, 1404, 1428, 1479, 1510, 1606, 1689, 1797, 1940, 2180, 2108, 1897, 1722, 1657, 1523, 1438, 1341, 1334, 1295, 1335, 1374, 1423, 1518, 1625, 1692, 1870, 2075, 2081, 1781, 1701, 1584, 1472, 1351, 1271, 1248, 1207, 1221, 1273, 1358, 1455, 1584, 1685, 1816, 2041, 1993, 1802, 1624, 1497, 1398, 1291, 1195, 1154, 1117, 1136, 1182, 1258, 1390, 1537, 1655, 1792, 1960, 1909, 1756, 1612, 1477, 1355, 1219, 1149, 1083, 1061, 1078, 1127, 1241, 1351, 1501, 1633, 1787, 1936, 1924, 1724, 1571, 1438, 1330, 1207, 1117, 1048, 1024, 1047, 1108, 1191, 1320, 1455, 1614, 1772, 1924, 1919, 1708, 1596, 1429, 1299, 1174, 1115, 1042, 1024, 1035, 1102, 1196, 1326, 1472, 1606, 1758, 1918, 1936, 1748, 1594, 1430, 1299, 1194, 1105, 1057, 1030, 1044, 1123, 1185, 1324, 1453, 1618, 1755, 1914, 1970, 1703, 1595, 1451, 1339, 1211, 1131, 1089, 1081, 1090, 1141, 1232, 1365, 1499, 1662, 1785, 1920, 1952, 1743, 1615, 1494, 1355, 1271, 1204, 1136, 1125, 1174, 1215, 1302, 1403, 1543, 1655, 1828, 2080, 2047, 1771, 1669, 1547, 1427, 1336, 1274, 1209, 1225, 1236, 1285, 1369, 1479, 1618, 1713, 1846, 2200, 2144, 1871, 1693, 1599, 1502, 1416, 1360, 1309, 1315, 1328, 1370, 1465, 1561, 1692, 1789, 2007, 2487, 2394, 1954, 1774, 1658, 1591, 1505, 1462, 1432, 1432, 1450, 1503, 1542, 1665, 1731, 1915, 2265, 2955, 2705, 2153, 1825, 1702, 1653, 1603, 1548, 1525, 1522, 1537, 1609, 1657, 1736, 1850, 2170, 2599, 3524, 3405, 2609, 2203, 1884, 1801, 1753, 1682, 1684, 1659, 1703, 1719, 1833, 1952, 2222, 2533, 3270, 4543]
| }
| }, {
| "name": "1600x1200_A_100",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3435, 2980, 2828, 2563, 2582, 2446, 2413, 2378, 2437, 2547, 2645, 2761, 2869, 3083, 3304, 3681, 4506, 3114, 2731, 2536, 2405, 2296, 2204, 2128, 2125, 2163, 2207, 2383, 2544, 2622, 2759, 2995, 3291, 3888, 2823, 2550, 2391, 2219, 2083, 1946, 1839, 1803, 1812, 1928, 2041, 2246, 2472, 2660, 2866, 3046, 3566, 2631, 2409, 2233, 2011, 1812, 1691, 1604, 1569, 1572, 1646, 1771, 2017, 2188, 2490, 2655, 2783, 3306, 2537, 2278, 2052, 1837, 1644, 1498, 1403, 1379, 1386, 1447, 1590, 1750, 1980, 2313, 2521, 2703, 3117, 2418, 2154, 1944, 1689, 1495, 1366, 1271, 1238, 1235, 1294, 1424, 1596, 1834, 2145, 2354, 2631, 2980, 2320, 2070, 1850, 1600, 1399, 1253, 1173, 1114, 1116, 1175, 1313, 1492, 1702, 1992, 2261, 2545, 2851, 2239, 2035, 1773, 1538, 1348, 1207, 1115, 1065, 1050, 1106, 1233, 1403, 1619, 1940, 2202, 2402, 2722, 2234, 2013, 1745, 1512, 1324, 1174, 1089, 1037, 1024, 1080, 1203, 1379, 1579, 1856, 2193, 2386, 2747, 2274, 2019, 1775, 1520, 1336, 1189, 1098, 1049, 1039, 1103, 1239, 1373, 1598, 1879, 2194, 2410, 2739, 2286, 2085, 1853, 1575, 1403, 1232, 1148, 1108, 1106, 1167, 1277, 1454, 1653, 1923, 2169, 2456, 2805, 2397, 2137, 1958, 1684, 1481, 1344, 1249, 1197, 1202, 1263, 1371, 1538, 1755, 2045, 2271, 2481, 2806, 2536, 2269, 2050, 1812, 1630, 1473, 1391, 1329, 1328, 1389, 1515, 1670, 1908, 2163, 2397, 2591, 2931, 2699, 2417, 2212, 2002, 1815, 1662, 1555, 1509, 1521, 1582, 1688, 1910, 2089, 2331, 2502, 2794, 3159, 2866, 2558, 2416, 2225, 2050, 1933, 1801, 1742, 1755, 1804, 1968, 2127, 2293, 2523, 2705, 2941, 3352, 3133, 2774, 2633, 2410, 2340, 2186, 2082, 2049, 2050, 2140, 2258, 2396, 2560, 2727, 2888, 3174, 3686, 3579, 3073, 2871, 2724, 2647, 2522, 2419, 2430, 2390, 2486, 2569, 2750, 2845, 2963, 3266, 3576, 4199]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2941, 2605, 2390, 2352, 2324, 2305, 2278, 2283, 2324, 2375, 2422, 2614, 2582, 2703, 2862, 3131, 3856, 2615, 2363, 2223, 2144, 2087, 2062, 2036, 2010, 2053, 2076, 2178, 2305, 2368, 2484, 2623, 2807, 3372, 2418, 2214, 2049, 2020, 1891, 1832, 1788, 1751, 1773, 1825, 1929, 2099, 2192, 2326, 2439, 2586, 3074, 2219, 2019, 1922, 1844, 1701, 1616, 1573, 1544, 1543, 1582, 1704, 1819, 2026, 2162, 2286, 2400, 2748, 2120, 1947, 1796, 1675, 1543, 1450, 1392, 1346, 1349, 1414, 1503, 1677, 1817, 1970, 2142, 2311, 2618, 1988, 1845, 1717, 1562, 1422, 1308, 1256, 1225, 1229, 1299, 1371, 1503, 1665, 1868, 2044, 2225, 2474, 1934, 1792, 1617, 1472, 1325, 1232, 1158, 1124, 1128, 1166, 1249, 1391, 1576, 1761, 1938, 2126, 2431, 1917, 1719, 1577, 1399, 1270, 1185, 1114, 1060, 1056, 1107, 1190, 1335, 1503, 1708, 1870, 2067, 2261, 1869, 1722, 1525, 1386, 1248, 1155, 1103, 1054, 1024, 1086, 1171, 1295, 1463, 1657, 1867, 2015, 2303, 1884, 1743, 1566, 1411, 1272, 1183, 1094, 1064, 1057, 1102, 1198, 1305, 1465, 1652, 1856, 2024, 2232, 1944, 1774, 1634, 1468, 1303, 1210, 1175, 1121, 1131, 1164, 1227, 1350, 1489, 1708, 1878, 2049, 2341, 2036, 1853, 1700, 1556, 1413, 1299, 1237, 1212, 1202, 1257, 1321, 1447, 1587, 1749, 1976, 2094, 2343, 2136, 1944, 1821, 1681, 1565, 1437, 1352, 1336, 1323, 1378, 1450, 1583, 1705, 1868, 2022, 2202, 2466, 2316, 2061, 1936, 1838, 1697, 1629, 1568, 1503, 1500, 1562, 1616, 1754, 1867, 2054, 2145, 2333, 2630, 2428, 2212, 2092, 2043, 1933, 1824, 1759, 1716, 1721, 1743, 1846, 1922, 2070, 2162, 2325, 2481, 2880, 2724, 2395, 2278, 2176, 2165, 2061, 2013, 1965, 1968, 2021, 2135, 2164, 2251, 2388, 2476, 2720, 3095, 3096, 2792, 2559, 2499, 2393, 2395, 2329, 2326, 2351, 2337, 2400, 2498, 2625, 2596, 2760, 3017, 3627]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2846, 2480, 2335, 2259, 2186, 2098, 2120, 2040, 2070, 2102, 2204, 2253, 2281, 2358, 2577, 2869, 3542, 2529, 2279, 2147, 2031, 1954, 1922, 1865, 1815, 1853, 1874, 1949, 2035, 2122, 2198, 2379, 2588, 3047, 2338, 2130, 2001, 1911, 1798, 1710, 1667, 1628, 1633, 1689, 1759, 1900, 1990, 2080, 2245, 2377, 2817, 2230, 2035, 1882, 1766, 1641, 1560, 1479, 1434, 1437, 1512, 1579, 1707, 1845, 1973, 2121, 2273, 2608, 2091, 1928, 1785, 1630, 1505, 1409, 1311, 1268, 1288, 1336, 1420, 1556, 1697, 1884, 2041, 2170, 2510, 2048, 1896, 1690, 1536, 1386, 1274, 1200, 1177, 1158, 1223, 1313, 1458, 1614, 1794, 1989, 2151, 2434, 2017, 1812, 1618, 1475, 1329, 1216, 1136, 1101, 1085, 1127, 1240, 1385, 1550, 1741, 1923, 2108, 2419, 1990, 1785, 1581, 1454, 1285, 1175, 1090, 1049, 1034, 1078, 1196, 1345, 1515, 1713, 1912, 2087, 2348, 1921, 1757, 1603, 1426, 1272, 1144, 1072, 1040, 1024, 1078, 1164, 1338, 1506, 1724, 1903, 2099, 2402, 2013, 1801, 1598, 1450, 1283, 1191, 1097, 1053, 1051, 1108, 1209, 1365, 1537, 1754, 2005, 2148, 2438, 2008, 1831, 1657, 1490, 1342, 1216, 1146, 1105, 1102, 1166, 1259, 1420, 1617, 1839, 2023, 2224, 2541, 2055, 1916, 1758, 1572, 1416, 1278, 1226, 1195, 1186, 1250, 1343, 1528, 1696, 1927, 2131, 2278, 2561, 2148, 1981, 1848, 1693, 1529, 1432, 1354, 1295, 1320, 1369, 1500, 1649, 1822, 2052, 2279, 2394, 2759, 2312, 2101, 1971, 1821, 1703, 1583, 1498, 1489, 1484, 1538, 1657, 1833, 2003, 2215, 2404, 2574, 2932, 2496, 2257, 2097, 2004, 1901, 1802, 1700, 1682, 1711, 1777, 1868, 2043, 2245, 2406, 2568, 2777, 3117, 2721, 2417, 2280, 2153, 2093, 1999, 1964, 1923, 1927, 2024, 2151, 2283, 2405, 2591, 2759, 2996, 3495, 3067, 2724, 2540, 2415, 2383, 2320, 2309, 2300, 2236, 2366, 2475, 2589, 2684, 2797, 3052, 3372, 4017]
| },
| "lsc_samples_blue": {
| "uCoeff": [2716, 2321, 2187, 2037, 2048, 1991, 2044, 1917, 1977, 1980, 2011, 2071, 2059, 2093, 2265, 2593, 2937, 2404, 2174, 2010, 1957, 1914, 1832, 1783, 1749, 1722, 1778, 1810, 1884, 1941, 1939, 2068, 2283, 2679, 2203, 1959, 1912, 1818, 1727, 1643, 1605, 1552, 1531, 1608, 1633, 1719, 1767, 1881, 1921, 2109, 2471, 2004, 1916, 1789, 1676, 1602, 1479, 1444, 1401, 1398, 1406, 1460, 1556, 1663, 1729, 1839, 1938, 2274, 1953, 1799, 1685, 1550, 1445, 1340, 1289, 1258, 1247, 1282, 1350, 1428, 1530, 1693, 1803, 1898, 2178, 1845, 1765, 1610, 1454, 1354, 1268, 1208, 1178, 1174, 1208, 1258, 1369, 1461, 1574, 1695, 1871, 2081, 1830, 1673, 1556, 1407, 1299, 1215, 1140, 1082, 1067, 1131, 1181, 1282, 1408, 1565, 1708, 1833, 2042, 1804, 1655, 1513, 1370, 1262, 1168, 1098, 1057, 1036, 1060, 1140, 1272, 1385, 1537, 1686, 1819, 2028, 1807, 1660, 1505, 1356, 1244, 1154, 1086, 1034, 1024, 1042, 1134, 1249, 1382, 1507, 1710, 1827, 2102, 1832, 1677, 1536, 1385, 1277, 1186, 1103, 1070, 1053, 1098, 1186, 1277, 1402, 1576, 1734, 1875, 2112, 1840, 1752, 1571, 1448, 1313, 1220, 1142, 1127, 1114, 1149, 1212, 1323, 1482, 1635, 1822, 1928, 2193, 1947, 1797, 1663, 1542, 1374, 1300, 1215, 1205, 1181, 1231, 1326, 1439, 1560, 1770, 1894, 2096, 2300, 2044, 1901, 1759, 1639, 1511, 1405, 1324, 1308, 1297, 1338, 1416, 1555, 1711, 1874, 2012, 2201, 2400, 2104, 1989, 1911, 1745, 1652, 1498, 1500, 1458, 1452, 1510, 1591, 1725, 1862, 2012, 2142, 2295, 2558, 2384, 2146, 2029, 1882, 1796, 1731, 1644, 1664, 1653, 1707, 1789, 1925, 2013, 2178, 2279, 2459, 2805, 2544, 2297, 2219, 2085, 2010, 1906, 1958, 1885, 1897, 1931, 2031, 2157, 2224, 2355, 2448, 2687, 3041, 2919, 2516, 2421, 2320, 2326, 2211, 2225, 2218, 2175, 2233, 2283, 2408, 2408, 2542, 2756, 3106, 3487]
| }
| }, {
| "name": "1600x1200_CWF_70",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2816, 2305, 2117, 1975, 1820, 1765, 1710, 1660, 1647, 1664, 1669, 1743, 1806, 1874, 2029, 2194, 2486, 2464, 2164, 1943, 1809, 1715, 1628, 1568, 1527, 1511, 1524, 1573, 1623, 1699, 1751, 1860, 2039, 2320, 2316, 2037, 1825, 1719, 1616, 1527, 1455, 1403, 1404, 1411, 1456, 1527, 1574, 1669, 1795, 1932, 2149, 2200, 1906, 1743, 1635, 1526, 1438, 1346, 1289, 1288, 1286, 1352, 1423, 1516, 1610, 1708, 1857, 2039, 2092, 1840, 1682, 1551, 1459, 1344, 1261, 1203, 1197, 1191, 1244, 1339, 1436, 1548, 1677, 1789, 1941, 2003, 1788, 1650, 1500, 1374, 1282, 1190, 1134, 1135, 1125, 1160, 1245, 1362, 1497, 1627, 1733, 1881, 1970, 1767, 1609, 1465, 1334, 1230, 1136, 1079, 1063, 1064, 1098, 1200, 1325, 1447, 1585, 1710, 1864, 1980, 1728, 1609, 1456, 1309, 1199, 1124, 1054, 1024, 1036, 1084, 1165, 1283, 1408, 1560, 1707, 1847, 1933, 1727, 1610, 1445, 1319, 1195, 1122, 1058, 1025, 1043, 1084, 1171, 1276, 1422, 1564, 1718, 1841, 1936, 1718, 1609, 1460, 1325, 1194, 1123, 1072, 1041, 1059, 1106, 1185, 1301, 1447, 1586, 1693, 1850, 1994, 1792, 1647, 1522, 1388, 1254, 1178, 1110, 1085, 1123, 1155, 1227, 1344, 1477, 1614, 1728, 1875, 2026, 1857, 1683, 1584, 1427, 1330, 1239, 1157, 1151, 1170, 1213, 1294, 1399, 1531, 1659, 1762, 1945, 2158, 1904, 1760, 1606, 1508, 1386, 1301, 1248, 1221, 1231, 1296, 1366, 1475, 1603, 1735, 1858, 2190, 2214, 1961, 1811, 1690, 1590, 1472, 1414, 1329, 1309, 1331, 1375, 1475, 1555, 1677, 1798, 2031, 2448, 2520, 2115, 1882, 1775, 1684, 1595, 1519, 1464, 1446, 1479, 1516, 1589, 1640, 1755, 1954, 2288, 2935, 2941, 2353, 1993, 1878, 1779, 1701, 1617, 1568, 1564, 1556, 1608, 1675, 1784, 1919, 2220, 2733, 3527, 3705, 2797, 2361, 2032, 1907, 1815, 1756, 1747, 1694, 1747, 1759, 1850, 2021, 2277, 2665, 3352, 4525]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2513, 2141, 1952, 1805, 1700, 1658, 1591, 1586, 1596, 1588, 1625, 1641, 1706, 1789, 1926, 2122, 2466, 2242, 1987, 1797, 1672, 1593, 1514, 1501, 1450, 1450, 1473, 1511, 1548, 1623, 1709, 1777, 1993, 2213, 2119, 1880, 1679, 1599, 1523, 1452, 1398, 1373, 1363, 1377, 1402, 1448, 1537, 1618, 1720, 1874, 2056, 1994, 1754, 1634, 1538, 1430, 1358, 1293, 1261, 1262, 1274, 1309, 1374, 1478, 1583, 1666, 1791, 1925, 1931, 1713, 1560, 1483, 1382, 1294, 1227, 1190, 1172, 1181, 1214, 1289, 1397, 1505, 1607, 1759, 1902, 1873, 1651, 1544, 1438, 1323, 1215, 1154, 1126, 1093, 1122, 1143, 1228, 1341, 1473, 1585, 1720, 1832, 1807, 1643, 1522, 1391, 1298, 1178, 1111, 1074, 1062, 1064, 1101, 1174, 1305, 1428, 1572, 1697, 1782, 1816, 1633, 1531, 1377, 1278, 1169, 1076, 1044, 1027, 1029, 1068, 1160, 1275, 1407, 1565, 1682, 1796, 1814, 1643, 1513, 1379, 1263, 1153, 1084, 1026, 1024, 1031, 1082, 1167, 1292, 1395, 1562, 1700, 1792, 1816, 1645, 1503, 1399, 1283, 1180, 1110, 1050, 1033, 1057, 1103, 1190, 1299, 1422, 1563, 1711, 1808, 1867, 1672, 1593, 1438, 1323, 1212, 1146, 1101, 1083, 1105, 1134, 1215, 1340, 1469, 1596, 1724, 1865, 1917, 1722, 1607, 1505, 1365, 1282, 1189, 1159, 1127, 1159, 1191, 1266, 1376, 1506, 1632, 1764, 1933, 1989, 1760, 1662, 1567, 1459, 1354, 1287, 1244, 1230, 1236, 1290, 1343, 1460, 1589, 1693, 1789, 2101, 2079, 1842, 1725, 1624, 1525, 1445, 1380, 1339, 1329, 1329, 1370, 1456, 1557, 1656, 1727, 1959, 2356, 2338, 1938, 1782, 1732, 1628, 1563, 1488, 1466, 1435, 1458, 1480, 1560, 1652, 1716, 1873, 2207, 2836, 2725, 2184, 1909, 1774, 1717, 1638, 1603, 1577, 1536, 1581, 1608, 1658, 1745, 1910, 2149, 2637, 3394, 3398, 2597, 2209, 1930, 1812, 1768, 1719, 1737, 1665, 1720, 1752, 1802, 1932, 2194, 2571, 3205, 4483]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2698, 2234, 2025, 1914, 1799, 1711, 1694, 1655, 1621, 1638, 1682, 1729, 1779, 1840, 1956, 2149, 2479, 2340, 2087, 1873, 1765, 1703, 1617, 1560, 1541, 1520, 1533, 1541, 1607, 1689, 1741, 1808, 1999, 2249, 2226, 1949, 1784, 1701, 1592, 1531, 1456, 1419, 1410, 1405, 1450, 1505, 1583, 1672, 1764, 1894, 2102, 2080, 1865, 1726, 1618, 1532, 1435, 1352, 1327, 1283, 1309, 1334, 1401, 1498, 1607, 1686, 1800, 1974, 2001, 1818, 1633, 1558, 1450, 1331, 1265, 1207, 1183, 1211, 1250, 1323, 1447, 1524, 1651, 1754, 1888, 1958, 1760, 1624, 1511, 1365, 1279, 1184, 1140, 1115, 1130, 1165, 1247, 1360, 1482, 1609, 1724, 1866, 1900, 1702, 1581, 1469, 1347, 1220, 1158, 1086, 1053, 1060, 1101, 1209, 1312, 1434, 1567, 1691, 1833, 1864, 1677, 1554, 1436, 1306, 1195, 1099, 1055, 1031, 1040, 1071, 1165, 1275, 1400, 1543, 1684, 1784, 1866, 1664, 1547, 1413, 1282, 1174, 1093, 1049, 1024, 1032, 1088, 1162, 1280, 1414, 1544, 1679, 1808, 1850, 1674, 1535, 1423, 1302, 1180, 1102, 1061, 1030, 1046, 1078, 1165, 1283, 1432, 1568, 1683, 1841, 1857, 1690, 1560, 1451, 1320, 1208, 1123, 1074, 1071, 1079, 1120, 1208, 1316, 1434, 1591, 1725, 1863, 1916, 1712, 1589, 1478, 1346, 1252, 1162, 1125, 1125, 1137, 1173, 1253, 1373, 1502, 1609, 1746, 1954, 1980, 1749, 1616, 1517, 1422, 1327, 1238, 1219, 1183, 1213, 1247, 1325, 1437, 1568, 1648, 1787, 2104, 2082, 1809, 1695, 1583, 1483, 1384, 1323, 1289, 1277, 1297, 1343, 1410, 1523, 1636, 1725, 1928, 2312, 2294, 1932, 1753, 1652, 1544, 1473, 1438, 1395, 1400, 1403, 1448, 1525, 1588, 1698, 1846, 2165, 2774, 2724, 2165, 1843, 1705, 1640, 1569, 1533, 1517, 1482, 1514, 1546, 1605, 1692, 1854, 2065, 2578, 3369, 3368, 2591, 2177, 1866, 1744, 1714, 1646, 1647, 1617, 1681, 1648, 1757, 1898, 2137, 2564, 3167, 4406]
| },
| "lsc_samples_blue": {
| "uCoeff": [2535, 2096, 1909, 1800, 1659, 1609, 1604, 1559, 1557, 1556, 1581, 1621, 1658, 1748, 1822, 2053, 2410, 2193, 1942, 1735, 1642, 1585, 1500, 1455, 1424, 1424, 1442, 1469, 1497, 1580, 1639, 1692, 1879, 2188, 2081, 1832, 1665, 1537, 1513, 1450, 1366, 1321, 1313, 1351, 1372, 1421, 1497, 1591, 1654, 1786, 2046, 1967, 1737, 1593, 1548, 1448, 1351, 1289, 1261, 1247, 1274, 1298, 1334, 1430, 1532, 1593, 1713, 1906, 1934, 1668, 1552, 1472, 1369, 1286, 1211, 1186, 1164, 1182, 1213, 1277, 1365, 1456, 1555, 1674, 1876, 1833, 1637, 1530, 1430, 1318, 1228, 1167, 1129, 1104, 1127, 1143, 1243, 1297, 1412, 1527, 1621, 1804, 1771, 1595, 1493, 1388, 1285, 1192, 1117, 1080, 1045, 1060, 1116, 1176, 1270, 1376, 1501, 1620, 1739, 1713, 1601, 1475, 1367, 1261, 1165, 1097, 1067, 1037, 1059, 1085, 1155, 1245, 1373, 1464, 1635, 1736, 1764, 1596, 1466, 1354, 1249, 1168, 1091, 1060, 1024, 1039, 1086, 1169, 1255, 1352, 1481, 1618, 1755, 1773, 1575, 1469, 1362, 1248, 1140, 1098, 1065, 1043, 1054, 1092, 1159, 1265, 1368, 1487, 1639, 1761, 1813, 1612, 1478, 1374, 1267, 1165, 1138, 1086, 1086, 1090, 1132, 1197, 1314, 1390, 1527, 1627, 1778, 1809, 1611, 1492, 1396, 1312, 1195, 1143, 1156, 1114, 1148, 1190, 1230, 1331, 1437, 1535, 1662, 1900, 1852, 1654, 1541, 1452, 1379, 1266, 1215, 1199, 1183, 1212, 1245, 1315, 1406, 1495, 1609, 1689, 2051, 1987, 1700, 1569, 1497, 1419, 1359, 1295, 1254, 1262, 1279, 1324, 1390, 1459, 1546, 1646, 1823, 2230, 2177, 1785, 1636, 1550, 1491, 1418, 1380, 1365, 1362, 1375, 1412, 1452, 1559, 1605, 1730, 2054, 2694, 2556, 2010, 1686, 1616, 1567, 1480, 1463, 1448, 1433, 1474, 1508, 1547, 1623, 1721, 1970, 2437, 3295, 3333, 2423, 1999, 1768, 1682, 1627, 1576, 1568, 1595, 1592, 1649, 1686, 1778, 2053, 2491, 3013, 4339]
| }
| }, {
| "name": "1600x1200_CWF_100",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2548, 2297, 2108, 1984, 1958, 1944, 1923, 1937, 1949, 2022, 2121, 2164, 2230, 2347, 2489, 2882, 3302, 2302, 2115, 1982, 1847, 1839, 1793, 1728, 1748, 1734, 1781, 1903, 2007, 2065, 2179, 2278, 2502, 2911, 2118, 1970, 1839, 1744, 1659, 1585, 1558, 1530, 1574, 1624, 1702, 1829, 1945, 2050, 2178, 2320, 2621, 1972, 1844, 1758, 1606, 1522, 1450, 1410, 1378, 1409, 1450, 1531, 1638, 1784, 1951, 2032, 2182, 2491, 1868, 1717, 1614, 1511, 1394, 1314, 1250, 1257, 1248, 1317, 1395, 1500, 1652, 1807, 1931, 2044, 2316, 1821, 1667, 1539, 1399, 1305, 1221, 1180, 1156, 1155, 1209, 1274, 1398, 1519, 1719, 1810, 2001, 2190, 1724, 1614, 1476, 1343, 1243, 1162, 1107, 1084, 1082, 1124, 1202, 1316, 1442, 1617, 1755, 1878, 2093, 1735, 1551, 1435, 1322, 1201, 1110, 1080, 1051, 1038, 1074, 1157, 1245, 1395, 1541, 1707, 1820, 1987, 1734, 1552, 1438, 1285, 1193, 1105, 1065, 1042, 1024, 1062, 1128, 1229, 1336, 1502, 1678, 1813, 1996, 1723, 1571, 1443, 1314, 1199, 1126, 1068, 1057, 1039, 1071, 1136, 1231, 1346, 1504, 1659, 1803, 2034, 1757, 1618, 1481, 1332, 1227, 1146, 1121, 1085, 1076, 1106, 1172, 1286, 1383, 1507, 1682, 1816, 2019, 1811, 1686, 1534, 1404, 1303, 1210, 1160, 1143, 1151, 1177, 1225, 1328, 1472, 1603, 1742, 1864, 2092, 1896, 1723, 1618, 1499, 1392, 1303, 1257, 1232, 1251, 1245, 1321, 1412, 1546, 1690, 1816, 1943, 2208, 2002, 1837, 1741, 1609, 1522, 1439, 1373, 1365, 1344, 1403, 1468, 1539, 1683, 1812, 1881, 2030, 2386, 2162, 1976, 1847, 1796, 1685, 1597, 1560, 1539, 1516, 1557, 1594, 1720, 1827, 1923, 2003, 2195, 2452, 2377, 2101, 1997, 1916, 1846, 1770, 1730, 1696, 1690, 1723, 1836, 1896, 1988, 2051, 2161, 2371, 2687, 2729, 2359, 2205, 2093, 2055, 2002, 1989, 1946, 1969, 2016, 2068, 2131, 2140, 2277, 2402, 2693, 3201]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2679, 2375, 2225, 2156, 2139, 2111, 2099, 2172, 2124, 2215, 2281, 2395, 2458, 2540, 2733, 2977, 3584, 2400, 2184, 2052, 2013, 1950, 1900, 1895, 1898, 1926, 1981, 2077, 2147, 2238, 2331, 2498, 2652, 3161, 2211, 2012, 1894, 1859, 1802, 1694, 1678, 1644, 1688, 1757, 1858, 1963, 2090, 2200, 2314, 2480, 2791, 2051, 1892, 1787, 1697, 1611, 1510, 1489, 1468, 1498, 1558, 1651, 1769, 1887, 2062, 2207, 2286, 2571, 1972, 1789, 1639, 1548, 1456, 1365, 1343, 1296, 1316, 1389, 1450, 1606, 1761, 1877, 2070, 2182, 2412, 1869, 1693, 1553, 1459, 1354, 1280, 1220, 1202, 1207, 1275, 1334, 1467, 1591, 1748, 1924, 2074, 2302, 1846, 1658, 1509, 1375, 1278, 1202, 1153, 1108, 1117, 1156, 1247, 1376, 1480, 1665, 1847, 1991, 2208, 1795, 1592, 1463, 1348, 1230, 1135, 1092, 1055, 1058, 1103, 1182, 1309, 1436, 1606, 1770, 1958, 2166, 1780, 1620, 1467, 1334, 1203, 1143, 1095, 1035, 1024, 1099, 1156, 1285, 1409, 1581, 1760, 1899, 2132, 1787, 1627, 1456, 1333, 1232, 1159, 1089, 1053, 1061, 1094, 1177, 1286, 1410, 1584, 1758, 1914, 2146, 1812, 1662, 1526, 1391, 1276, 1192, 1144, 1118, 1118, 1147, 1211, 1316, 1454, 1620, 1784, 1904, 2200, 1870, 1722, 1565, 1470, 1350, 1277, 1203, 1186, 1187, 1217, 1290, 1391, 1504, 1690, 1865, 1985, 2205, 1964, 1806, 1704, 1568, 1460, 1378, 1317, 1295, 1282, 1335, 1397, 1504, 1594, 1778, 1918, 2067, 2316, 2064, 1897, 1824, 1722, 1593, 1522, 1458, 1441, 1421, 1472, 1526, 1644, 1766, 1928, 2038, 2183, 2428, 2310, 2062, 1954, 1849, 1781, 1716, 1674, 1606, 1606, 1660, 1738, 1835, 1943, 2046, 2175, 2329, 2656, 2492, 2239, 2116, 2007, 1985, 1902, 1887, 1845, 1871, 1864, 1952, 2045, 2127, 2195, 2286, 2472, 2937, 2885, 2543, 2354, 2268, 2236, 2250, 2206, 2144, 2135, 2234, 2310, 2332, 2397, 2447, 2598, 2793, 3439]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2715, 2334, 2172, 2134, 2042, 2016, 2025, 2021, 2036, 2035, 2120, 2148, 2174, 2211, 2416, 2712, 3279, 2408, 2132, 2034, 1932, 1874, 1803, 1805, 1788, 1778, 1841, 1907, 1966, 2017, 2103, 2237, 2420, 2857, 2218, 1983, 1883, 1807, 1702, 1652, 1576, 1569, 1590, 1636, 1703, 1813, 1906, 1981, 2097, 2226, 2629, 2072, 1889, 1757, 1665, 1549, 1477, 1444, 1399, 1412, 1466, 1528, 1654, 1725, 1894, 1996, 2120, 2410, 1957, 1773, 1656, 1532, 1438, 1344, 1290, 1271, 1295, 1305, 1385, 1481, 1645, 1789, 1909, 2031, 2334, 1878, 1711, 1570, 1467, 1350, 1259, 1197, 1168, 1182, 1223, 1308, 1409, 1528, 1693, 1848, 2002, 2261, 1818, 1676, 1534, 1396, 1294, 1198, 1134, 1090, 1099, 1141, 1232, 1342, 1463, 1613, 1823, 1940, 2174, 1836, 1647, 1497, 1352, 1247, 1157, 1096, 1050, 1043, 1095, 1188, 1303, 1435, 1598, 1796, 1922, 2206, 1811, 1647, 1456, 1360, 1234, 1141, 1077, 1038, 1024, 1097, 1175, 1294, 1432, 1633, 1827, 1938, 2257, 1835, 1675, 1498, 1375, 1250, 1162, 1117, 1068, 1073, 1117, 1213, 1332, 1462, 1670, 1863, 2011, 2299, 1874, 1714, 1544, 1421, 1300, 1201, 1146, 1115, 1144, 1174, 1254, 1382, 1530, 1733, 1917, 2078, 2346, 1911, 1757, 1638, 1500, 1360, 1287, 1217, 1184, 1195, 1272, 1336, 1484, 1639, 1825, 2007, 2121, 2394, 2067, 1847, 1749, 1601, 1454, 1385, 1342, 1301, 1329, 1356, 1467, 1637, 1761, 1966, 2123, 2270, 2518, 2165, 1958, 1854, 1745, 1605, 1506, 1470, 1453, 1455, 1509, 1630, 1803, 1951, 2090, 2281, 2392, 2762, 2350, 2097, 1975, 1893, 1842, 1748, 1690, 1683, 1684, 1757, 1849, 1980, 2129, 2234, 2415, 2558, 2956, 2543, 2286, 2129, 2063, 1993, 1934, 1925, 1893, 1895, 1970, 2079, 2223, 2316, 2451, 2543, 2798, 3243, 2965, 2562, 2344, 2330, 2231, 2237, 2221, 2212, 2182, 2291, 2358, 2500, 2626, 2687, 2940, 3190, 3802]
| },
| "lsc_samples_blue": {
| "uCoeff": [2331, 2150, 1944, 1901, 1873, 1843, 1838, 1778, 1818, 1810, 1882, 1852, 1904, 1936, 2044, 2300, 2654, 2100, 1909, 1814, 1747, 1734, 1684, 1665, 1650, 1636, 1645, 1697, 1714, 1762, 1790, 1882, 2029, 2379, 1933, 1765, 1669, 1637, 1567, 1526, 1520, 1486, 1468, 1498, 1524, 1574, 1660, 1721, 1772, 1887, 2220, 1772, 1679, 1611, 1509, 1478, 1421, 1365, 1340, 1336, 1356, 1419, 1455, 1533, 1592, 1674, 1748, 2033, 1688, 1607, 1531, 1424, 1355, 1265, 1276, 1217, 1220, 1258, 1302, 1363, 1446, 1553, 1604, 1719, 1931, 1634, 1556, 1444, 1364, 1288, 1224, 1175, 1139, 1156, 1178, 1219, 1280, 1364, 1470, 1563, 1664, 1847, 1646, 1530, 1411, 1294, 1232, 1160, 1116, 1098, 1082, 1112, 1153, 1232, 1321, 1422, 1552, 1634, 1827, 1611, 1493, 1368, 1277, 1201, 1129, 1104, 1063, 1039, 1068, 1125, 1200, 1281, 1426, 1539, 1636, 1805, 1604, 1498, 1376, 1270, 1189, 1124, 1085, 1051, 1024, 1073, 1116, 1204, 1277, 1435, 1540, 1648, 1827, 1633, 1499, 1406, 1282, 1206, 1142, 1102, 1081, 1070, 1102, 1140, 1231, 1331, 1444, 1579, 1686, 1877, 1677, 1553, 1430, 1320, 1234, 1184, 1136, 1118, 1116, 1151, 1190, 1275, 1379, 1492, 1635, 1730, 1979, 1704, 1583, 1488, 1390, 1307, 1225, 1199, 1201, 1196, 1209, 1272, 1372, 1438, 1605, 1703, 1849, 2034, 1809, 1675, 1577, 1503, 1398, 1313, 1279, 1263, 1286, 1307, 1384, 1445, 1560, 1696, 1831, 1961, 2164, 1897, 1754, 1715, 1594, 1508, 1443, 1407, 1398, 1405, 1470, 1527, 1603, 1689, 1843, 1945, 2063, 2309, 2074, 1901, 1823, 1732, 1676, 1627, 1572, 1560, 1541, 1623, 1663, 1769, 1885, 1942, 2092, 2200, 2558, 2232, 2022, 1978, 1889, 1876, 1772, 1805, 1775, 1770, 1816, 1875, 1977, 2046, 2158, 2225, 2420, 2845, 2564, 2190, 2137, 2043, 2049, 2034, 2004, 2027, 1987, 2090, 2110, 2248, 2298, 2357, 2423, 2741, 3304]
| }
| }, {
| "name": "1600x1200_D50_70",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2948, 2431, 2153, 2059, 1901, 1785, 1732, 1738, 1682, 1681, 1727, 1754, 1843, 1902, 2029, 2270, 2577, 2578, 2242, 1989, 1868, 1763, 1667, 1609, 1551, 1547, 1559, 1585, 1636, 1741, 1799, 1894, 2094, 2381, 2370, 2083, 1877, 1753, 1656, 1551, 1485, 1433, 1411, 1433, 1478, 1543, 1629, 1713, 1804, 1953, 2135, 2297, 1946, 1826, 1687, 1564, 1455, 1382, 1319, 1293, 1308, 1359, 1453, 1535, 1664, 1725, 1877, 2080, 2161, 1881, 1724, 1615, 1465, 1367, 1296, 1227, 1202, 1216, 1265, 1356, 1446, 1556, 1682, 1804, 1956, 2080, 1832, 1682, 1564, 1421, 1294, 1206, 1148, 1136, 1143, 1178, 1271, 1386, 1508, 1650, 1764, 1918, 2049, 1808, 1662, 1495, 1360, 1254, 1142, 1088, 1063, 1077, 1118, 1212, 1318, 1462, 1589, 1722, 1865, 2052, 1788, 1625, 1472, 1346, 1204, 1118, 1055, 1045, 1046, 1089, 1173, 1281, 1423, 1561, 1705, 1849, 1988, 1792, 1638, 1483, 1333, 1196, 1108, 1053, 1024, 1044, 1081, 1172, 1289, 1435, 1559, 1684, 1866, 2022, 1805, 1646, 1466, 1355, 1227, 1133, 1064, 1038, 1064, 1100, 1196, 1293, 1439, 1585, 1726, 1879, 2056, 1863, 1695, 1568, 1403, 1250, 1183, 1118, 1093, 1104, 1140, 1235, 1340, 1485, 1657, 1737, 1875, 2071, 1864, 1725, 1585, 1451, 1329, 1229, 1163, 1138, 1152, 1204, 1289, 1399, 1531, 1646, 1797, 1922, 2172, 1928, 1794, 1672, 1534, 1413, 1314, 1250, 1238, 1241, 1300, 1362, 1471, 1587, 1707, 1812, 1968, 2298, 1997, 1851, 1744, 1607, 1511, 1418, 1350, 1329, 1332, 1379, 1460, 1564, 1692, 1786, 1906, 2095, 2413, 2112, 1947, 1835, 1689, 1612, 1516, 1453, 1431, 1450, 1485, 1585, 1655, 1722, 1856, 1975, 2200, 2702, 2213, 2018, 1870, 1788, 1701, 1628, 1571, 1558, 1582, 1594, 1654, 1760, 1824, 1927, 2114, 2368, 3221, 2549, 2206, 2014, 1913, 1844, 1763, 1717, 1700, 1713, 1756, 1811, 1838, 1955, 2079, 2299, 2682]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2659, 2242, 2014, 1854, 1740, 1690, 1638, 1638, 1615, 1625, 1654, 1659, 1750, 1813, 1975, 2163, 2484, 2387, 2062, 1843, 1708, 1629, 1571, 1537, 1501, 1492, 1500, 1534, 1599, 1649, 1712, 1821, 1997, 2236, 2201, 1935, 1730, 1643, 1562, 1477, 1425, 1384, 1379, 1397, 1429, 1479, 1567, 1648, 1737, 1913, 2119, 2080, 1819, 1670, 1584, 1478, 1371, 1328, 1292, 1270, 1296, 1324, 1386, 1499, 1607, 1693, 1824, 1971, 1985, 1767, 1645, 1507, 1396, 1314, 1244, 1208, 1189, 1201, 1238, 1307, 1417, 1532, 1634, 1759, 1897, 1916, 1725, 1592, 1469, 1365, 1246, 1167, 1136, 1093, 1132, 1156, 1230, 1346, 1493, 1613, 1733, 1862, 1881, 1685, 1567, 1441, 1307, 1183, 1117, 1077, 1068, 1078, 1114, 1199, 1305, 1445, 1574, 1712, 1825, 1878, 1692, 1550, 1406, 1290, 1185, 1105, 1050, 1042, 1041, 1065, 1143, 1272, 1417, 1573, 1700, 1795, 1855, 1677, 1554, 1417, 1295, 1173, 1096, 1047, 1024, 1030, 1070, 1145, 1284, 1412, 1569, 1695, 1797, 1875, 1695, 1555, 1426, 1309, 1177, 1119, 1065, 1038, 1045, 1104, 1187, 1308, 1438, 1593, 1725, 1823, 1903, 1734, 1587, 1483, 1333, 1233, 1141, 1097, 1090, 1095, 1143, 1203, 1348, 1461, 1606, 1730, 1841, 1974, 1753, 1646, 1520, 1399, 1287, 1203, 1153, 1135, 1154, 1187, 1266, 1399, 1505, 1630, 1788, 1871, 2044, 1846, 1694, 1593, 1488, 1377, 1282, 1240, 1217, 1226, 1284, 1358, 1463, 1583, 1689, 1829, 1935, 2115, 1895, 1740, 1652, 1563, 1456, 1377, 1341, 1326, 1342, 1368, 1443, 1538, 1651, 1735, 1879, 2045, 2265, 1994, 1838, 1746, 1656, 1579, 1504, 1469, 1442, 1455, 1487, 1546, 1635, 1731, 1788, 1950, 2116, 2484, 2101, 1932, 1795, 1738, 1649, 1614, 1579, 1555, 1580, 1624, 1666, 1737, 1810, 1889, 2054, 2328, 3005, 2381, 2068, 1906, 1830, 1772, 1732, 1724, 1691, 1701, 1726, 1745, 1824, 1897, 2032, 2260, 2728]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2886, 2332, 2122, 1945, 1829, 1794, 1728, 1687, 1681, 1691, 1702, 1762, 1802, 1875, 1994, 2178, 2512, 2481, 2174, 1949, 1818, 1743, 1657, 1610, 1571, 1542, 1544, 1580, 1637, 1717, 1769, 1856, 2044, 2246, 2293, 2002, 1846, 1746, 1649, 1567, 1487, 1445, 1420, 1449, 1462, 1518, 1599, 1708, 1769, 1903, 2111, 2113, 1913, 1759, 1668, 1549, 1471, 1373, 1340, 1315, 1337, 1354, 1430, 1523, 1627, 1724, 1821, 2005, 2049, 1835, 1685, 1595, 1472, 1361, 1282, 1230, 1215, 1230, 1257, 1328, 1440, 1558, 1667, 1767, 1916, 1998, 1794, 1677, 1525, 1401, 1287, 1198, 1156, 1115, 1145, 1172, 1260, 1382, 1495, 1617, 1713, 1840, 1911, 1744, 1601, 1486, 1359, 1235, 1148, 1092, 1060, 1074, 1110, 1198, 1320, 1461, 1582, 1694, 1807, 1902, 1705, 1591, 1484, 1321, 1210, 1108, 1057, 1024, 1038, 1081, 1165, 1278, 1414, 1551, 1714, 1788, 1886, 1694, 1583, 1457, 1296, 1200, 1090, 1057, 1026, 1038, 1068, 1146, 1275, 1427, 1542, 1695, 1764, 1886, 1681, 1576, 1440, 1305, 1202, 1100, 1051, 1035, 1033, 1081, 1161, 1301, 1430, 1562, 1688, 1791, 1904, 1717, 1607, 1463, 1330, 1228, 1128, 1077, 1055, 1087, 1107, 1208, 1317, 1435, 1591, 1701, 1801, 1948, 1732, 1605, 1507, 1356, 1269, 1177, 1135, 1124, 1139, 1168, 1244, 1381, 1497, 1593, 1727, 1839, 2022, 1799, 1664, 1547, 1433, 1331, 1248, 1207, 1190, 1205, 1249, 1324, 1417, 1548, 1637, 1789, 1901, 2089, 1824, 1700, 1614, 1478, 1410, 1330, 1287, 1285, 1286, 1339, 1410, 1506, 1599, 1725, 1820, 1973, 2204, 1937, 1768, 1662, 1573, 1503, 1433, 1388, 1395, 1398, 1447, 1499, 1597, 1673, 1765, 1900, 2067, 2456, 2017, 1835, 1746, 1653, 1579, 1544, 1513, 1496, 1521, 1530, 1617, 1694, 1751, 1827, 1993, 2244, 2880, 2329, 2021, 1828, 1747, 1693, 1660, 1640, 1612, 1648, 1647, 1722, 1795, 1830, 1946, 2200, 2617]
| },
| "lsc_samples_blue": {
| "uCoeff": [2561, 2184, 1999, 1866, 1727, 1684, 1661, 1608, 1609, 1603, 1635, 1680, 1706, 1800, 1894, 2086, 2430, 2351, 2015, 1805, 1709, 1636, 1580, 1519, 1474, 1481, 1473, 1528, 1574, 1610, 1670, 1732, 1928, 2182, 2138, 1911, 1721, 1643, 1549, 1489, 1426, 1366, 1371, 1378, 1421, 1471, 1552, 1585, 1672, 1820, 1996, 2046, 1815, 1645, 1581, 1476, 1390, 1326, 1281, 1274, 1286, 1322, 1361, 1473, 1537, 1625, 1720, 1908, 1961, 1710, 1602, 1494, 1402, 1321, 1257, 1217, 1176, 1213, 1234, 1305, 1410, 1495, 1573, 1679, 1880, 1859, 1687, 1562, 1464, 1350, 1252, 1168, 1131, 1114, 1137, 1153, 1212, 1335, 1446, 1545, 1624, 1809, 1816, 1622, 1525, 1428, 1290, 1194, 1131, 1073, 1069, 1065, 1111, 1167, 1279, 1394, 1517, 1610, 1769, 1807, 1620, 1493, 1399, 1278, 1161, 1085, 1050, 1034, 1030, 1065, 1134, 1240, 1370, 1485, 1616, 1756, 1784, 1610, 1491, 1367, 1252, 1158, 1092, 1040, 1027, 1039, 1054, 1134, 1229, 1366, 1509, 1615, 1762, 1770, 1634, 1498, 1353, 1249, 1158, 1092, 1054, 1024, 1052, 1081, 1147, 1248, 1370, 1494, 1645, 1746, 1824, 1620, 1500, 1381, 1268, 1169, 1124, 1073, 1085, 1094, 1099, 1171, 1287, 1385, 1511, 1632, 1745, 1824, 1629, 1516, 1420, 1307, 1199, 1147, 1132, 1107, 1120, 1169, 1228, 1328, 1440, 1530, 1648, 1807, 1933, 1662, 1542, 1463, 1372, 1276, 1212, 1170, 1167, 1204, 1245, 1287, 1374, 1486, 1561, 1678, 1841, 1951, 1730, 1591, 1504, 1428, 1350, 1292, 1257, 1230, 1268, 1306, 1355, 1435, 1555, 1627, 1732, 1929, 2065, 1784, 1664, 1541, 1473, 1420, 1357, 1349, 1329, 1339, 1384, 1447, 1515, 1576, 1660, 1784, 2012, 2308, 1900, 1696, 1588, 1542, 1473, 1448, 1445, 1432, 1441, 1475, 1509, 1580, 1632, 1732, 1889, 2146, 2765, 2120, 1884, 1706, 1675, 1619, 1565, 1550, 1533, 1575, 1589, 1615, 1684, 1750, 1869, 2093, 2514]
| }
| }, {
| "name": "1600x1200_D50_100",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2599, 2398, 2178, 2069, 2006, 1958, 1953, 1951, 2000, 2074, 2113, 2252, 2264, 2381, 2550, 2915, 3244, 2318, 2201, 2013, 1923, 1862, 1807, 1785, 1783, 1814, 1857, 1950, 2006, 2147, 2196, 2319, 2522, 2982, 2183, 2010, 1884, 1755, 1676, 1594, 1567, 1564, 1563, 1623, 1741, 1830, 1945, 2135, 2214, 2331, 2746, 2041, 1856, 1767, 1640, 1567, 1465, 1401, 1409, 1421, 1467, 1556, 1663, 1820, 1967, 2019, 2202, 2516, 1930, 1766, 1681, 1519, 1444, 1346, 1292, 1278, 1297, 1340, 1426, 1567, 1669, 1811, 1965, 2076, 2310, 1877, 1717, 1564, 1438, 1353, 1254, 1189, 1171, 1189, 1223, 1300, 1396, 1581, 1721, 1843, 1949, 2202, 1813, 1646, 1532, 1383, 1261, 1190, 1143, 1119, 1098, 1143, 1237, 1333, 1456, 1628, 1760, 1900, 2168, 1740, 1609, 1472, 1317, 1240, 1130, 1115, 1086, 1055, 1105, 1155, 1275, 1409, 1575, 1713, 1853, 2064, 1775, 1603, 1456, 1322, 1222, 1126, 1081, 1061, 1024, 1076, 1148, 1251, 1350, 1531, 1672, 1819, 2071, 1766, 1624, 1476, 1331, 1233, 1135, 1090, 1062, 1060, 1084, 1174, 1229, 1377, 1509, 1684, 1823, 2058, 1794, 1636, 1523, 1392, 1259, 1192, 1122, 1106, 1112, 1126, 1191, 1286, 1396, 1553, 1683, 1835, 2054, 1847, 1732, 1591, 1445, 1345, 1253, 1190, 1167, 1164, 1196, 1250, 1337, 1473, 1648, 1777, 1878, 2099, 1962, 1814, 1675, 1543, 1458, 1322, 1283, 1262, 1243, 1291, 1362, 1425, 1553, 1686, 1846, 1947, 2203, 2074, 1905, 1776, 1631, 1541, 1445, 1407, 1380, 1352, 1416, 1494, 1583, 1677, 1804, 1896, 2073, 2436, 2234, 2006, 1923, 1799, 1692, 1608, 1554, 1555, 1532, 1539, 1668, 1733, 1831, 1925, 2065, 2213, 2534, 2414, 2184, 2055, 1946, 1896, 1816, 1777, 1770, 1713, 1752, 1832, 1888, 2000, 2078, 2222, 2393, 2805, 2858, 2412, 2270, 2193, 2102, 1989, 2034, 1961, 1998, 2026, 2106, 2122, 2195, 2275, 2412, 2709, 3249]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2722, 2433, 2235, 2238, 2132, 2095, 2131, 2156, 2144, 2257, 2294, 2390, 2461, 2553, 2735, 2999, 3657, 2449, 2211, 2052, 1997, 1938, 1940, 1920, 1869, 1954, 1981, 2079, 2202, 2261, 2362, 2468, 2662, 3206, 2276, 2048, 1906, 1872, 1756, 1713, 1694, 1652, 1685, 1742, 1852, 1980, 2101, 2246, 2316, 2504, 2900, 2084, 1923, 1815, 1706, 1619, 1543, 1485, 1460, 1497, 1563, 1650, 1803, 1912, 2073, 2200, 2311, 2638, 1975, 1777, 1702, 1586, 1460, 1382, 1343, 1309, 1330, 1405, 1478, 1621, 1755, 1934, 2067, 2223, 2475, 1920, 1736, 1617, 1479, 1357, 1289, 1241, 1202, 1213, 1273, 1365, 1466, 1605, 1794, 1966, 2123, 2408, 1838, 1682, 1533, 1397, 1299, 1201, 1147, 1110, 1133, 1156, 1252, 1366, 1545, 1707, 1905, 2023, 2283, 1797, 1651, 1515, 1356, 1243, 1153, 1096, 1079, 1081, 1102, 1171, 1309, 1451, 1656, 1822, 1966, 2183, 1825, 1645, 1484, 1341, 1226, 1160, 1091, 1055, 1024, 1093, 1180, 1283, 1422, 1621, 1813, 1978, 2156, 1835, 1663, 1501, 1377, 1246, 1166, 1097, 1067, 1058, 1112, 1180, 1294, 1440, 1604, 1784, 1928, 2179, 1865, 1702, 1561, 1396, 1289, 1209, 1147, 1118, 1124, 1154, 1229, 1324, 1457, 1644, 1839, 1961, 2209, 1926, 1746, 1614, 1481, 1343, 1261, 1212, 1183, 1178, 1220, 1310, 1414, 1570, 1726, 1876, 1986, 2271, 2030, 1838, 1731, 1617, 1454, 1370, 1324, 1290, 1291, 1336, 1408, 1509, 1623, 1815, 1951, 2059, 2386, 2165, 1926, 1813, 1710, 1629, 1509, 1500, 1427, 1436, 1463, 1581, 1668, 1773, 1917, 2063, 2202, 2504, 2320, 2065, 1998, 1898, 1793, 1699, 1662, 1624, 1631, 1667, 1745, 1838, 1966, 2072, 2174, 2357, 2657, 2496, 2242, 2134, 2052, 1991, 1920, 1877, 1859, 1841, 1887, 1931, 2049, 2174, 2219, 2336, 2583, 2942, 2998, 2596, 2435, 2295, 2240, 2229, 2157, 2145, 2155, 2237, 2219, 2328, 2375, 2470, 2656, 2881, 3452]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2721, 2322, 2181, 2114, 2079, 2038, 1989, 1986, 2083, 2105, 2108, 2151, 2139, 2258, 2386, 2664, 3240, 2398, 2115, 1989, 1952, 1890, 1835, 1801, 1830, 1792, 1870, 1909, 1957, 1988, 2096, 2192, 2409, 2770, 2219, 1989, 1856, 1822, 1737, 1653, 1627, 1567, 1581, 1638, 1695, 1788, 1867, 1968, 2078, 2234, 2554, 2021, 1863, 1780, 1662, 1550, 1476, 1436, 1405, 1406, 1444, 1546, 1632, 1727, 1855, 1961, 2081, 2408, 1917, 1762, 1647, 1539, 1427, 1342, 1283, 1268, 1275, 1303, 1385, 1491, 1623, 1742, 1877, 1989, 2299, 1865, 1708, 1587, 1455, 1335, 1255, 1205, 1160, 1174, 1199, 1279, 1377, 1502, 1680, 1800, 1937, 2210, 1783, 1673, 1523, 1383, 1269, 1183, 1126, 1095, 1097, 1129, 1214, 1304, 1456, 1609, 1773, 1902, 2150, 1799, 1622, 1489, 1343, 1232, 1149, 1083, 1054, 1054, 1081, 1160, 1276, 1399, 1589, 1779, 1925, 2148, 1771, 1604, 1465, 1325, 1217, 1140, 1072, 1053, 1024, 1070, 1147, 1291, 1410, 1610, 1775, 1926, 2194, 1812, 1657, 1486, 1354, 1252, 1157, 1092, 1060, 1064, 1104, 1191, 1318, 1449, 1622, 1802, 1944, 2265, 1853, 1687, 1558, 1397, 1279, 1189, 1137, 1110, 1127, 1166, 1246, 1361, 1496, 1720, 1891, 2005, 2253, 1937, 1764, 1614, 1488, 1351, 1269, 1200, 1182, 1192, 1243, 1337, 1485, 1627, 1792, 1959, 2112, 2337, 2017, 1810, 1747, 1572, 1469, 1358, 1312, 1293, 1302, 1341, 1446, 1610, 1771, 1923, 2092, 2253, 2486, 2147, 1963, 1855, 1733, 1627, 1504, 1470, 1448, 1459, 1522, 1627, 1764, 1901, 2078, 2234, 2412, 2688, 2332, 2103, 1999, 1877, 1809, 1753, 1684, 1663, 1670, 1739, 1833, 1966, 2089, 2275, 2381, 2559, 2925, 2453, 2276, 2148, 2085, 2012, 1943, 1905, 1883, 1896, 1992, 2090, 2183, 2316, 2450, 2588, 2786, 3325, 2984, 2546, 2372, 2329, 2253, 2218, 2236, 2202, 2236, 2349, 2437, 2514, 2591, 2710, 2888, 3158, 3739]
| },
| "lsc_samples_blue": {
| "uCoeff": [2463, 2160, 2044, 1925, 1943, 1885, 1874, 1865, 1881, 1851, 1898, 1920, 1954, 1955, 2144, 2337, 2803, 2105, 1960, 1870, 1771, 1736, 1705, 1687, 1661, 1688, 1708, 1721, 1789, 1830, 1837, 1942, 2061, 2436, 1988, 1824, 1752, 1649, 1617, 1566, 1524, 1485, 1515, 1526, 1556, 1619, 1683, 1714, 1812, 1955, 2255, 1830, 1705, 1643, 1554, 1483, 1415, 1380, 1350, 1366, 1397, 1424, 1493, 1580, 1662, 1755, 1825, 2141, 1732, 1596, 1530, 1429, 1365, 1285, 1262, 1226, 1232, 1269, 1298, 1393, 1464, 1589, 1651, 1780, 1982, 1687, 1563, 1475, 1358, 1285, 1224, 1179, 1150, 1160, 1182, 1223, 1312, 1383, 1495, 1557, 1712, 1936, 1656, 1494, 1418, 1309, 1228, 1155, 1116, 1086, 1094, 1105, 1153, 1250, 1333, 1458, 1573, 1661, 1850, 1618, 1518, 1404, 1279, 1211, 1103, 1083, 1054, 1035, 1057, 1134, 1211, 1325, 1428, 1548, 1673, 1853, 1649, 1506, 1392, 1295, 1208, 1111, 1072, 1031, 1024, 1062, 1118, 1208, 1317, 1435, 1577, 1699, 1899, 1647, 1539, 1415, 1278, 1226, 1136, 1092, 1058, 1061, 1086, 1155, 1235, 1350, 1486, 1590, 1735, 1935, 1692, 1556, 1480, 1336, 1252, 1191, 1154, 1108, 1129, 1158, 1196, 1301, 1388, 1548, 1676, 1775, 2004, 1751, 1608, 1502, 1416, 1311, 1263, 1199, 1185, 1180, 1222, 1283, 1396, 1484, 1666, 1776, 1878, 2126, 1859, 1692, 1625, 1494, 1408, 1351, 1300, 1289, 1311, 1317, 1394, 1490, 1632, 1728, 1863, 2002, 2154, 1944, 1800, 1722, 1621, 1548, 1450, 1435, 1403, 1419, 1461, 1555, 1647, 1741, 1909, 1993, 2121, 2346, 2077, 1934, 1873, 1758, 1716, 1654, 1598, 1626, 1609, 1662, 1743, 1833, 1973, 2088, 2087, 2242, 2562, 2334, 2118, 2002, 1895, 1892, 1824, 1792, 1758, 1802, 1869, 1960, 2046, 2099, 2197, 2342, 2483, 2816, 2662, 2312, 2157, 2145, 2101, 2066, 2075, 2021, 2047, 2094, 2198, 2254, 2414, 2381, 2524, 2772, 3337]
| }
| }, {
| "name": "1600x1200_D65_70",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3153, 2601, 2300, 2222, 2090, 1973, 1859, 1808, 1835, 1839, 1859, 1930, 1996, 2103, 2220, 2464, 2767, 2752, 2319, 2169, 1992, 1859, 1772, 1722, 1655, 1623, 1653, 1705, 1788, 1848, 1948, 2095, 2261, 2522, 2591, 2254, 2015, 1866, 1787, 1669, 1576, 1499, 1513, 1513, 1531, 1652, 1732, 1849, 1967, 2112, 2383, 2426, 2139, 1942, 1807, 1659, 1517, 1438, 1405, 1359, 1361, 1426, 1532, 1632, 1768, 1874, 2029, 2257, 2358, 2048, 1861, 1704, 1573, 1421, 1317, 1251, 1240, 1258, 1313, 1430, 1529, 1696, 1857, 1991, 2190, 2249, 1967, 1812, 1669, 1508, 1357, 1241, 1174, 1127, 1142, 1206, 1308, 1449, 1631, 1772, 1941, 2094, 2191, 1940, 1784, 1592, 1444, 1284, 1177, 1094, 1060, 1074, 1135, 1235, 1429, 1580, 1720, 1895, 2073, 2210, 1910, 1727, 1567, 1398, 1243, 1127, 1056, 1035, 1032, 1088, 1203, 1372, 1532, 1707, 1890, 2069, 2158, 1948, 1768, 1555, 1397, 1247, 1129, 1044, 1024, 1034, 1090, 1204, 1356, 1540, 1721, 1884, 2032, 2159, 1949, 1760, 1565, 1420, 1261, 1141, 1070, 1028, 1064, 1129, 1246, 1394, 1548, 1740, 1907, 2047, 2290, 1981, 1802, 1655, 1469, 1303, 1191, 1138, 1099, 1134, 1163, 1288, 1407, 1615, 1779, 1923, 2113, 2245, 2043, 1884, 1701, 1533, 1385, 1274, 1197, 1159, 1183, 1249, 1346, 1490, 1644, 1817, 1965, 2216, 2383, 2115, 1973, 1791, 1616, 1476, 1373, 1306, 1261, 1292, 1344, 1465, 1605, 1731, 1889, 2019, 2412, 2459, 2192, 2008, 1869, 1702, 1593, 1501, 1402, 1394, 1418, 1462, 1555, 1704, 1823, 1951, 2228, 2702, 2821, 2325, 2102, 1948, 1840, 1741, 1634, 1562, 1524, 1543, 1611, 1692, 1804, 1921, 2155, 2505, 3189, 3152, 2577, 2229, 2067, 1937, 1856, 1755, 1681, 1674, 1722, 1769, 1836, 1950, 2088, 2412, 2951, 3929, 4117, 3122, 2622, 2322, 2105, 2023, 1950, 1922, 1883, 1862, 1898, 1988, 2243, 2430, 2881, 3614, 4640]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2666, 2217, 2002, 1844, 1744, 1689, 1670, 1625, 1632, 1633, 1675, 1699, 1759, 1875, 1970, 2166, 2507, 2328, 2060, 1853, 1724, 1639, 1563, 1539, 1514, 1511, 1523, 1545, 1602, 1659, 1729, 1864, 2024, 2289, 2228, 1924, 1722, 1656, 1561, 1481, 1425, 1393, 1384, 1415, 1428, 1512, 1595, 1683, 1769, 1931, 2157, 2109, 1810, 1675, 1587, 1470, 1381, 1320, 1298, 1287, 1300, 1337, 1419, 1512, 1622, 1722, 1851, 2002, 2005, 1771, 1642, 1515, 1416, 1316, 1257, 1198, 1192, 1205, 1239, 1322, 1426, 1560, 1674, 1794, 1951, 1968, 1757, 1585, 1469, 1363, 1239, 1159, 1132, 1114, 1111, 1153, 1248, 1377, 1520, 1627, 1755, 1908, 1907, 1692, 1572, 1441, 1304, 1198, 1120, 1073, 1066, 1067, 1113, 1197, 1330, 1485, 1600, 1770, 1859, 1887, 1707, 1552, 1433, 1301, 1176, 1093, 1046, 1034, 1024, 1080, 1182, 1305, 1436, 1596, 1771, 1842, 1871, 1714, 1585, 1425, 1287, 1183, 1103, 1046, 1030, 1039, 1079, 1177, 1311, 1441, 1588, 1739, 1857, 1923, 1729, 1589, 1434, 1320, 1191, 1120, 1054, 1042, 1059, 1110, 1203, 1311, 1470, 1623, 1740, 1853, 1932, 1759, 1626, 1483, 1361, 1238, 1160, 1105, 1095, 1114, 1137, 1230, 1368, 1504, 1649, 1781, 1889, 2007, 1783, 1655, 1542, 1428, 1311, 1212, 1171, 1142, 1169, 1214, 1288, 1412, 1562, 1697, 1836, 2007, 2090, 1855, 1724, 1617, 1501, 1394, 1295, 1254, 1236, 1245, 1295, 1377, 1495, 1623, 1726, 1900, 2169, 2188, 1906, 1794, 1677, 1578, 1491, 1392, 1357, 1353, 1367, 1407, 1502, 1604, 1687, 1785, 2023, 2470, 2493, 2037, 1851, 1762, 1670, 1593, 1540, 1502, 1469, 1492, 1533, 1606, 1689, 1788, 1939, 2281, 2837, 2833, 2307, 1964, 1844, 1763, 1700, 1658, 1598, 1615, 1632, 1673, 1704, 1805, 1961, 2201, 2692, 3476, 3536, 2727, 2287, 2026, 1900, 1812, 1772, 1737, 1738, 1756, 1804, 1856, 2006, 2230, 2643, 3304, 4397]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2834, 2272, 2069, 1959, 1838, 1779, 1744, 1710, 1674, 1699, 1728, 1747, 1846, 1892, 2008, 2205, 2495, 2435, 2157, 1939, 1828, 1714, 1679, 1623, 1593, 1586, 1563, 1596, 1673, 1747, 1800, 1895, 2045, 2309, 2273, 2040, 1856, 1737, 1652, 1590, 1510, 1451, 1432, 1435, 1483, 1566, 1623, 1723, 1790, 1949, 2144, 2156, 1917, 1779, 1667, 1574, 1454, 1370, 1346, 1324, 1321, 1361, 1449, 1539, 1652, 1747, 1867, 2056, 2068, 1860, 1707, 1607, 1467, 1367, 1273, 1214, 1219, 1224, 1264, 1334, 1459, 1565, 1680, 1819, 1979, 2012, 1814, 1651, 1552, 1411, 1302, 1196, 1152, 1117, 1145, 1170, 1268, 1397, 1546, 1656, 1764, 1920, 1963, 1751, 1626, 1506, 1353, 1233, 1146, 1100, 1074, 1058, 1117, 1210, 1344, 1485, 1609, 1735, 1876, 1917, 1714, 1609, 1478, 1338, 1196, 1115, 1065, 1024, 1040, 1076, 1173, 1303, 1467, 1575, 1737, 1853, 1911, 1709, 1605, 1451, 1305, 1179, 1103, 1043, 1026, 1035, 1071, 1167, 1303, 1455, 1578, 1723, 1859, 1914, 1715, 1594, 1455, 1318, 1212, 1107, 1051, 1028, 1054, 1092, 1187, 1301, 1452, 1623, 1753, 1865, 1923, 1739, 1601, 1486, 1341, 1231, 1143, 1109, 1065, 1074, 1127, 1225, 1343, 1483, 1633, 1762, 1870, 1988, 1772, 1650, 1511, 1377, 1280, 1193, 1147, 1129, 1150, 1192, 1269, 1399, 1554, 1636, 1815, 1960, 2086, 1823, 1679, 1560, 1456, 1342, 1259, 1219, 1181, 1213, 1279, 1352, 1470, 1574, 1705, 1842, 2173, 2132, 1871, 1711, 1612, 1525, 1425, 1352, 1305, 1304, 1314, 1375, 1446, 1565, 1668, 1763, 1940, 2420, 2421, 1985, 1793, 1692, 1605, 1511, 1475, 1424, 1412, 1435, 1479, 1547, 1636, 1740, 1914, 2220, 2807, 2768, 2243, 1877, 1772, 1675, 1644, 1589, 1561, 1530, 1563, 1591, 1638, 1724, 1896, 2144, 2627, 3353, 3521, 2631, 2239, 1944, 1800, 1755, 1709, 1696, 1669, 1710, 1738, 1805, 1959, 2168, 2603, 3257, 4464]
| },
| "lsc_samples_blue": {
| "uCoeff": [2607, 2229, 2018, 1906, 1758, 1745, 1710, 1664, 1672, 1674, 1683, 1713, 1774, 1864, 1975, 2152, 2564, 2323, 2060, 1857, 1755, 1666, 1603, 1567, 1530, 1526, 1512, 1580, 1616, 1680, 1729, 1800, 1969, 2273, 2160, 1954, 1766, 1673, 1609, 1511, 1458, 1422, 1394, 1417, 1459, 1498, 1584, 1676, 1757, 1881, 2095, 2052, 1834, 1712, 1603, 1510, 1425, 1340, 1305, 1288, 1313, 1347, 1406, 1507, 1573, 1692, 1808, 1995, 1996, 1761, 1649, 1550, 1444, 1349, 1276, 1222, 1205, 1221, 1250, 1334, 1443, 1528, 1629, 1748, 1943, 1907, 1718, 1612, 1488, 1366, 1268, 1177, 1144, 1118, 1148, 1158, 1256, 1376, 1490, 1597, 1735, 1852, 1889, 1687, 1568, 1454, 1325, 1216, 1141, 1079, 1084, 1083, 1132, 1204, 1330, 1433, 1577, 1688, 1846, 1866, 1682, 1538, 1414, 1285, 1185, 1122, 1055, 1040, 1047, 1085, 1185, 1301, 1417, 1571, 1682, 1817, 1840, 1652, 1522, 1411, 1297, 1169, 1100, 1051, 1024, 1043, 1084, 1174, 1275, 1419, 1560, 1691, 1828, 1861, 1658, 1519, 1393, 1279, 1170, 1110, 1053, 1054, 1067, 1110, 1184, 1279, 1414, 1570, 1675, 1861, 1829, 1658, 1554, 1414, 1319, 1187, 1134, 1095, 1093, 1107, 1146, 1212, 1327, 1458, 1589, 1710, 1882, 1872, 1685, 1599, 1454, 1337, 1246, 1180, 1137, 1111, 1153, 1191, 1260, 1359, 1478, 1602, 1740, 1950, 2016, 1715, 1601, 1506, 1387, 1305, 1241, 1203, 1198, 1212, 1264, 1334, 1437, 1562, 1687, 1784, 2154, 2026, 1764, 1626, 1540, 1471, 1390, 1321, 1280, 1279, 1320, 1339, 1412, 1534, 1597, 1692, 1929, 2371, 2239, 1865, 1703, 1604, 1529, 1495, 1441, 1380, 1382, 1390, 1438, 1499, 1586, 1685, 1819, 2144, 2757, 2629, 2106, 1769, 1637, 1602, 1571, 1523, 1477, 1484, 1502, 1553, 1575, 1659, 1783, 2047, 2481, 3227, 3284, 2567, 2107, 1852, 1734, 1668, 1628, 1596, 1628, 1640, 1687, 1707, 1872, 2137, 2460, 3030, 4318]
| }
| }, {
| "name": "1600x1200_D65_100",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2966, 2653, 2461, 2329, 2257, 2225, 2194, 2201, 2247, 2317, 2363, 2512, 2626, 2684, 2878, 3207, 3864, 2682, 2374, 2319, 2153, 2095, 2025, 1950, 1957, 1957, 2053, 2143, 2284, 2348, 2477, 2618, 2881, 3323, 2466, 2279, 2122, 2002, 1863, 1777, 1693, 1709, 1723, 1775, 1917, 2059, 2210, 2358, 2514, 2690, 3066, 2285, 2148, 1973, 1837, 1691, 1586, 1512, 1499, 1530, 1578, 1701, 1854, 2004, 2191, 2333, 2468, 2816, 2194, 2017, 1882, 1705, 1546, 1443, 1346, 1309, 1339, 1384, 1492, 1643, 1866, 2035, 2222, 2329, 2672, 2139, 1908, 1753, 1575, 1429, 1304, 1242, 1219, 1213, 1257, 1380, 1543, 1699, 1910, 2104, 2237, 2519, 2022, 1851, 1686, 1496, 1337, 1207, 1159, 1110, 1102, 1157, 1254, 1406, 1585, 1839, 1986, 2187, 2432, 1973, 1823, 1619, 1449, 1296, 1186, 1107, 1079, 1045, 1093, 1206, 1337, 1533, 1766, 1961, 2099, 2359, 1967, 1795, 1621, 1435, 1262, 1160, 1086, 1051, 1024, 1070, 1160, 1299, 1484, 1671, 1907, 2080, 2376, 2032, 1782, 1635, 1440, 1287, 1174, 1097, 1066, 1054, 1093, 1192, 1327, 1483, 1674, 1893, 2098, 2326, 2066, 1874, 1690, 1494, 1340, 1225, 1151, 1111, 1112, 1159, 1233, 1368, 1520, 1742, 1953, 2100, 2369, 2105, 1934, 1758, 1563, 1399, 1304, 1207, 1176, 1191, 1215, 1301, 1459, 1618, 1823, 1994, 2146, 2408, 2248, 2018, 1857, 1696, 1530, 1400, 1337, 1290, 1290, 1348, 1428, 1581, 1737, 1861, 2100, 2230, 2582, 2313, 2145, 1968, 1810, 1684, 1550, 1494, 1456, 1447, 1478, 1595, 1731, 1878, 2041, 2164, 2351, 2632, 2460, 2262, 2139, 2008, 1884, 1757, 1698, 1670, 1659, 1710, 1788, 1938, 2071, 2223, 2337, 2511, 2874, 2752, 2393, 2330, 2156, 2096, 1996, 1920, 1908, 1885, 1933, 2036, 2150, 2293, 2346, 2497, 2720, 3087, 3086, 2719, 2562, 2449, 2355, 2276, 2224, 2198, 2162, 2212, 2370, 2447, 2506, 2549, 2799, 3046, 3629]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2767, 2439, 2247, 2166, 2155, 2127, 2107, 2144, 2213, 2238, 2337, 2438, 2463, 2529, 2723, 3018, 3665, 2491, 2220, 2095, 2014, 1943, 1926, 1895, 1882, 1960, 1988, 2069, 2206, 2263, 2332, 2459, 2715, 3168, 2287, 2082, 1938, 1855, 1784, 1715, 1649, 1658, 1666, 1740, 1868, 2019, 2094, 2182, 2344, 2500, 2941, 2096, 1915, 1812, 1712, 1606, 1532, 1486, 1458, 1490, 1524, 1644, 1758, 1934, 2060, 2189, 2305, 2657, 1984, 1776, 1683, 1553, 1464, 1375, 1338, 1318, 1316, 1384, 1468, 1611, 1749, 1907, 2054, 2217, 2526, 1917, 1761, 1618, 1478, 1365, 1275, 1217, 1174, 1212, 1248, 1331, 1492, 1594, 1782, 1954, 2098, 2346, 1822, 1666, 1533, 1406, 1295, 1188, 1132, 1099, 1113, 1140, 1238, 1368, 1532, 1690, 1917, 2040, 2291, 1809, 1641, 1512, 1353, 1250, 1136, 1092, 1052, 1043, 1093, 1163, 1316, 1469, 1648, 1819, 1986, 2182, 1772, 1629, 1480, 1356, 1234, 1124, 1067, 1043, 1024, 1074, 1146, 1288, 1426, 1599, 1803, 1964, 2226, 1834, 1657, 1496, 1366, 1232, 1136, 1088, 1052, 1042, 1084, 1153, 1309, 1417, 1605, 1785, 1940, 2183, 1845, 1680, 1548, 1405, 1282, 1184, 1123, 1091, 1104, 1125, 1206, 1324, 1451, 1639, 1798, 1998, 2244, 1947, 1737, 1603, 1472, 1367, 1277, 1192, 1168, 1159, 1214, 1290, 1399, 1539, 1693, 1879, 2046, 2281, 2062, 1821, 1684, 1596, 1470, 1361, 1311, 1303, 1289, 1331, 1410, 1517, 1616, 1806, 1967, 2089, 2395, 2164, 1957, 1833, 1719, 1614, 1514, 1459, 1395, 1425, 1469, 1563, 1652, 1783, 1919, 2053, 2206, 2549, 2330, 2097, 1994, 1885, 1784, 1718, 1647, 1587, 1625, 1661, 1732, 1872, 1975, 2094, 2188, 2395, 2704, 2539, 2244, 2128, 2056, 2014, 1938, 1850, 1847, 1845, 1909, 1981, 2026, 2163, 2231, 2337, 2563, 2890, 3041, 2532, 2368, 2335, 2253, 2210, 2174, 2141, 2180, 2215, 2290, 2420, 2380, 2478, 2613, 2887, 3478]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2695, 2426, 2237, 2138, 2081, 2082, 2072, 2042, 2088, 2076, 2170, 2202, 2255, 2276, 2386, 2666, 3302, 2400, 2141, 2037, 1991, 1892, 1849, 1815, 1787, 1788, 1857, 1941, 1983, 2010, 2093, 2207, 2423, 2866, 2237, 2019, 1882, 1834, 1749, 1655, 1612, 1590, 1584, 1637, 1713, 1808, 1906, 1981, 2101, 2240, 2627, 2058, 1905, 1776, 1677, 1554, 1501, 1451, 1409, 1420, 1463, 1528, 1650, 1747, 1855, 1980, 2085, 2450, 1986, 1787, 1656, 1547, 1435, 1370, 1298, 1285, 1279, 1334, 1397, 1507, 1621, 1765, 1879, 2026, 2333, 1865, 1720, 1581, 1462, 1370, 1259, 1184, 1162, 1177, 1212, 1299, 1424, 1530, 1673, 1809, 1972, 2230, 1805, 1676, 1531, 1412, 1293, 1187, 1124, 1091, 1076, 1121, 1221, 1330, 1475, 1627, 1801, 1942, 2208, 1821, 1651, 1495, 1362, 1228, 1155, 1081, 1047, 1033, 1077, 1164, 1298, 1432, 1600, 1782, 1920, 2161, 1836, 1641, 1480, 1361, 1232, 1139, 1082, 1044, 1024, 1066, 1148, 1301, 1442, 1610, 1778, 1944, 2222, 1843, 1657, 1502, 1381, 1252, 1162, 1090, 1040, 1043, 1099, 1178, 1323, 1475, 1657, 1831, 2005, 2243, 1895, 1674, 1557, 1422, 1293, 1195, 1125, 1104, 1112, 1140, 1246, 1371, 1536, 1722, 1868, 2058, 2314, 1921, 1764, 1649, 1490, 1383, 1280, 1211, 1179, 1203, 1247, 1342, 1483, 1644, 1808, 2002, 2142, 2381, 2051, 1853, 1737, 1601, 1490, 1398, 1345, 1292, 1339, 1357, 1486, 1600, 1771, 1949, 2122, 2281, 2540, 2180, 1988, 1865, 1727, 1629, 1510, 1480, 1446, 1471, 1538, 1642, 1771, 1950, 2096, 2262, 2423, 2751, 2381, 2132, 2024, 1898, 1821, 1745, 1677, 1660, 1705, 1749, 1850, 2042, 2140, 2290, 2435, 2629, 3015, 2653, 2298, 2164, 2094, 2062, 1983, 1952, 1907, 1896, 2009, 2134, 2246, 2354, 2497, 2625, 2835, 3279, 2991, 2616, 2392, 2378, 2266, 2271, 2235, 2236, 2224, 2328, 2437, 2541, 2653, 2763, 2956, 3206, 3871]
| },
| "lsc_samples_blue": {
| "uCoeff": [2395, 2207, 2098, 1945, 1971, 1946, 1911, 1909, 1904, 1942, 1975, 2005, 2009, 2086, 2131, 2403, 2794, 2219, 2020, 1918, 1815, 1810, 1741, 1744, 1699, 1736, 1749, 1793, 1837, 1845, 1896, 1998, 2184, 2559, 2029, 1874, 1787, 1710, 1649, 1593, 1554, 1510, 1519, 1547, 1611, 1677, 1725, 1818, 1860, 2016, 2295, 1884, 1757, 1675, 1594, 1507, 1422, 1390, 1365, 1361, 1396, 1461, 1531, 1582, 1719, 1793, 1891, 2153, 1779, 1673, 1555, 1493, 1391, 1306, 1279, 1238, 1235, 1261, 1333, 1404, 1496, 1616, 1716, 1822, 2068, 1716, 1616, 1524, 1369, 1309, 1234, 1181, 1141, 1166, 1176, 1232, 1318, 1422, 1534, 1654, 1756, 1989, 1715, 1570, 1448, 1338, 1230, 1182, 1102, 1085, 1093, 1114, 1185, 1252, 1360, 1503, 1646, 1746, 1944, 1649, 1532, 1422, 1309, 1210, 1136, 1087, 1061, 1048, 1073, 1126, 1227, 1341, 1461, 1609, 1769, 1895, 1676, 1566, 1386, 1295, 1201, 1131, 1080, 1041, 1024, 1055, 1130, 1241, 1340, 1485, 1630, 1749, 1940, 1677, 1590, 1431, 1313, 1229, 1146, 1096, 1061, 1056, 1083, 1162, 1252, 1370, 1518, 1686, 1813, 1996, 1743, 1618, 1490, 1360, 1256, 1183, 1137, 1112, 1114, 1144, 1212, 1306, 1425, 1596, 1763, 1843, 2070, 1767, 1678, 1533, 1418, 1331, 1240, 1195, 1182, 1191, 1217, 1280, 1403, 1534, 1694, 1828, 1957, 2141, 1860, 1753, 1647, 1498, 1419, 1349, 1278, 1288, 1285, 1334, 1394, 1520, 1629, 1797, 1913, 2048, 2280, 1974, 1855, 1743, 1653, 1559, 1462, 1423, 1419, 1438, 1446, 1560, 1659, 1787, 1941, 2052, 2181, 2419, 2180, 1994, 1915, 1801, 1736, 1673, 1632, 1621, 1638, 1683, 1743, 1882, 2019, 2107, 2191, 2384, 2649, 2336, 2135, 2054, 1965, 1984, 1883, 1852, 1841, 1851, 1905, 1993, 2082, 2217, 2283, 2399, 2575, 2870, 2691, 2364, 2242, 2159, 2122, 2138, 2107, 2114, 2096, 2169, 2289, 2358, 2409, 2532, 2632, 2884, 3419]
| }
| }, {
| "name": "1600x1200_D75_70",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3011, 2570, 2283, 2094, 1980, 1887, 1867, 1822, 1795, 1804, 1831, 1874, 1964, 2094, 2183, 2419, 2771, 2705, 2336, 2092, 1949, 1843, 1753, 1695, 1641, 1644, 1638, 1684, 1740, 1831, 1924, 2019, 2225, 2550, 2487, 2188, 1995, 1833, 1748, 1640, 1576, 1495, 1493, 1485, 1555, 1617, 1696, 1825, 1907, 2070, 2322, 2394, 2061, 1900, 1777, 1630, 1536, 1417, 1388, 1341, 1388, 1446, 1511, 1618, 1723, 1850, 1976, 2185, 2242, 2006, 1799, 1685, 1561, 1418, 1325, 1265, 1246, 1265, 1310, 1367, 1521, 1657, 1825, 1922, 2104, 2185, 1962, 1782, 1621, 1478, 1330, 1233, 1164, 1117, 1146, 1191, 1321, 1474, 1599, 1746, 1866, 2084, 2110, 1905, 1774, 1586, 1412, 1285, 1173, 1101, 1068, 1088, 1127, 1252, 1395, 1545, 1692, 1842, 2028, 2104, 1879, 1727, 1563, 1393, 1241, 1134, 1059, 1036, 1042, 1084, 1211, 1346, 1520, 1694, 1859, 2009, 2135, 1859, 1733, 1562, 1393, 1241, 1138, 1061, 1024, 1036, 1090, 1210, 1350, 1514, 1685, 1827, 1969, 2152, 1886, 1743, 1556, 1430, 1263, 1159, 1068, 1047, 1066, 1130, 1221, 1375, 1524, 1714, 1850, 2010, 2171, 1939, 1811, 1631, 1465, 1316, 1206, 1129, 1088, 1111, 1169, 1277, 1418, 1590, 1743, 1869, 2051, 2231, 1978, 1855, 1689, 1519, 1370, 1274, 1182, 1169, 1191, 1233, 1351, 1473, 1640, 1764, 1929, 2160, 2324, 2057, 1903, 1749, 1599, 1462, 1376, 1285, 1273, 1293, 1355, 1445, 1544, 1713, 1852, 2003, 2382, 2482, 2138, 1999, 1811, 1709, 1580, 1464, 1409, 1391, 1425, 1468, 1557, 1683, 1782, 1960, 2147, 2646, 2731, 2273, 2042, 1929, 1807, 1706, 1625, 1551, 1533, 1556, 1562, 1698, 1756, 1882, 2106, 2464, 3059, 3227, 2504, 2166, 2011, 1920, 1825, 1726, 1704, 1642, 1656, 1717, 1788, 1897, 2060, 2342, 2916, 3719, 4087, 3032, 2546, 2230, 2047, 1993, 1881, 1855, 1859, 1826, 1871, 1980, 2165, 2446, 2889, 3546, 4924]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2593, 2221, 1993, 1858, 1738, 1695, 1664, 1640, 1629, 1640, 1668, 1718, 1781, 1835, 1997, 2159, 2549, 2362, 2071, 1860, 1723, 1645, 1578, 1541, 1494, 1487, 1534, 1559, 1612, 1650, 1740, 1851, 2033, 2284, 2209, 1938, 1746, 1658, 1565, 1478, 1425, 1389, 1376, 1396, 1438, 1508, 1584, 1685, 1763, 1913, 2087, 2072, 1821, 1675, 1585, 1471, 1385, 1329, 1299, 1280, 1291, 1326, 1403, 1504, 1614, 1724, 1856, 2028, 2019, 1768, 1627, 1514, 1437, 1321, 1247, 1209, 1200, 1200, 1246, 1319, 1434, 1554, 1670, 1805, 1963, 1935, 1717, 1598, 1468, 1346, 1243, 1160, 1136, 1117, 1126, 1167, 1239, 1380, 1507, 1643, 1777, 1899, 1891, 1709, 1575, 1456, 1311, 1202, 1118, 1082, 1065, 1068, 1108, 1211, 1335, 1480, 1621, 1756, 1862, 1918, 1702, 1548, 1435, 1301, 1178, 1099, 1046, 1037, 1031, 1086, 1177, 1307, 1452, 1602, 1750, 1866, 1843, 1695, 1579, 1432, 1303, 1179, 1086, 1040, 1024, 1035, 1088, 1181, 1310, 1448, 1596, 1745, 1849, 1903, 1722, 1569, 1436, 1318, 1189, 1110, 1066, 1034, 1056, 1116, 1198, 1339, 1472, 1629, 1755, 1875, 1914, 1744, 1627, 1476, 1360, 1237, 1154, 1101, 1098, 1107, 1164, 1225, 1355, 1509, 1637, 1796, 1894, 2015, 1778, 1657, 1528, 1417, 1305, 1211, 1161, 1152, 1166, 1222, 1296, 1443, 1555, 1672, 1823, 2017, 2056, 1850, 1727, 1605, 1501, 1378, 1289, 1254, 1234, 1264, 1311, 1374, 1506, 1623, 1757, 1903, 2218, 2187, 1897, 1779, 1670, 1571, 1486, 1402, 1354, 1347, 1361, 1399, 1473, 1582, 1702, 1776, 2060, 2448, 2428, 2030, 1870, 1765, 1668, 1593, 1525, 1489, 1483, 1486, 1537, 1602, 1692, 1776, 1959, 2289, 2855, 2857, 2292, 1976, 1826, 1782, 1679, 1655, 1619, 1590, 1605, 1674, 1709, 1792, 1924, 2216, 2697, 3480, 3485, 2717, 2280, 2038, 1863, 1831, 1782, 1773, 1748, 1767, 1802, 1868, 2007, 2235, 2680, 3379, 4365]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2798, 2275, 2107, 1957, 1856, 1795, 1765, 1738, 1698, 1697, 1739, 1768, 1837, 1908, 2016, 2238, 2530, 2470, 2151, 1959, 1840, 1760, 1651, 1630, 1590, 1561, 1555, 1604, 1649, 1721, 1797, 1885, 2076, 2289, 2266, 2000, 1836, 1743, 1662, 1595, 1504, 1459, 1450, 1453, 1480, 1545, 1629, 1723, 1781, 1938, 2138, 2180, 1911, 1755, 1670, 1570, 1469, 1381, 1349, 1318, 1341, 1372, 1448, 1519, 1644, 1729, 1856, 2042, 2049, 1822, 1704, 1610, 1471, 1351, 1301, 1235, 1211, 1237, 1286, 1346, 1448, 1569, 1670, 1804, 1958, 2004, 1748, 1670, 1538, 1403, 1294, 1211, 1165, 1121, 1133, 1191, 1266, 1381, 1524, 1641, 1773, 1901, 1944, 1739, 1630, 1488, 1355, 1241, 1147, 1098, 1063, 1067, 1125, 1214, 1348, 1470, 1603, 1739, 1879, 1956, 1720, 1606, 1460, 1325, 1195, 1106, 1059, 1035, 1026, 1080, 1167, 1309, 1452, 1601, 1713, 1836, 1918, 1720, 1593, 1461, 1313, 1196, 1096, 1053, 1024, 1032, 1081, 1177, 1311, 1442, 1583, 1728, 1841, 1915, 1678, 1582, 1460, 1320, 1205, 1105, 1047, 1028, 1048, 1094, 1175, 1302, 1466, 1594, 1740, 1884, 1897, 1737, 1611, 1487, 1339, 1223, 1140, 1091, 1070, 1090, 1135, 1225, 1338, 1486, 1621, 1764, 1883, 1954, 1735, 1629, 1508, 1380, 1278, 1197, 1139, 1133, 1157, 1188, 1275, 1402, 1524, 1634, 1783, 1973, 2044, 1821, 1683, 1542, 1436, 1353, 1264, 1208, 1194, 1225, 1272, 1351, 1463, 1578, 1690, 1815, 2163, 2133, 1881, 1728, 1633, 1529, 1425, 1348, 1305, 1296, 1301, 1375, 1453, 1541, 1653, 1756, 1961, 2436, 2376, 1967, 1778, 1696, 1567, 1529, 1468, 1420, 1409, 1446, 1479, 1542, 1624, 1736, 1923, 2252, 2818, 2821, 2186, 1909, 1770, 1694, 1614, 1569, 1548, 1525, 1546, 1590, 1656, 1722, 1883, 2137, 2626, 3365, 3415, 2602, 2223, 1950, 1779, 1759, 1689, 1717, 1660, 1709, 1754, 1798, 1959, 2203, 2618, 3277, 4409]
| },
| "lsc_samples_blue": {
| "uCoeff": [2605, 2207, 1999, 1852, 1766, 1713, 1692, 1674, 1632, 1657, 1685, 1717, 1730, 1819, 1969, 2134, 2553, 2307, 2044, 1835, 1746, 1659, 1599, 1564, 1536, 1504, 1524, 1558, 1611, 1672, 1724, 1780, 1947, 2225, 2188, 1918, 1732, 1674, 1581, 1523, 1452, 1401, 1379, 1393, 1449, 1492, 1569, 1645, 1737, 1850, 2087, 2049, 1815, 1686, 1597, 1512, 1417, 1333, 1321, 1289, 1318, 1357, 1398, 1478, 1590, 1663, 1790, 1983, 1974, 1729, 1629, 1540, 1431, 1327, 1263, 1219, 1206, 1219, 1241, 1332, 1416, 1498, 1629, 1717, 1905, 1926, 1673, 1583, 1476, 1347, 1281, 1183, 1144, 1127, 1128, 1170, 1244, 1346, 1491, 1568, 1688, 1841, 1835, 1663, 1564, 1447, 1333, 1213, 1141, 1093, 1051, 1062, 1111, 1196, 1297, 1438, 1548, 1674, 1855, 1859, 1669, 1519, 1402, 1291, 1176, 1114, 1037, 1034, 1034, 1072, 1165, 1281, 1411, 1540, 1676, 1805, 1802, 1652, 1503, 1383, 1285, 1167, 1090, 1044, 1024, 1038, 1087, 1164, 1285, 1413, 1546, 1686, 1799, 1817, 1658, 1526, 1385, 1274, 1166, 1103, 1065, 1037, 1054, 1106, 1184, 1292, 1404, 1523, 1676, 1804, 1855, 1659, 1530, 1392, 1300, 1188, 1126, 1081, 1076, 1097, 1126, 1205, 1316, 1439, 1564, 1680, 1823, 1863, 1661, 1560, 1427, 1337, 1230, 1174, 1133, 1117, 1153, 1192, 1236, 1360, 1490, 1590, 1707, 1929, 1941, 1725, 1591, 1482, 1386, 1292, 1231, 1198, 1174, 1218, 1255, 1322, 1433, 1542, 1637, 1760, 2068, 2055, 1769, 1618, 1526, 1469, 1384, 1310, 1279, 1270, 1292, 1329, 1399, 1510, 1575, 1664, 1914, 2337, 2237, 1821, 1696, 1583, 1535, 1475, 1414, 1380, 1367, 1404, 1446, 1493, 1564, 1645, 1826, 2119, 2767, 2635, 2069, 1761, 1645, 1589, 1509, 1502, 1458, 1472, 1487, 1540, 1556, 1655, 1762, 2011, 2471, 3316, 3342, 2533, 2028, 1781, 1706, 1646, 1635, 1601, 1581, 1639, 1676, 1735, 1854, 2042, 2516, 3133, 4378]
| }
| }, {
| "name": "1600x1200_D75_100",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2911, 2596, 2385, 2274, 2192, 2237, 2187, 2152, 2185, 2237, 2320, 2470, 2540, 2634, 2772, 3035, 3635, 2647, 2337, 2217, 2063, 2028, 1986, 1945, 1921, 1954, 2018, 2090, 2260, 2368, 2434, 2597, 2842, 3258, 2386, 2204, 2097, 1973, 1856, 1758, 1718, 1678, 1685, 1796, 1900, 2021, 2152, 2308, 2430, 2587, 2902, 2277, 2087, 1962, 1812, 1688, 1564, 1537, 1485, 1518, 1568, 1686, 1819, 1960, 2150, 2275, 2452, 2736, 2135, 1930, 1822, 1671, 1542, 1419, 1351, 1343, 1332, 1416, 1507, 1649, 1825, 2043, 2140, 2287, 2575, 2030, 1871, 1734, 1576, 1449, 1319, 1232, 1196, 1213, 1278, 1373, 1529, 1688, 1905, 2078, 2169, 2515, 1980, 1790, 1659, 1489, 1346, 1234, 1154, 1118, 1117, 1166, 1271, 1427, 1593, 1758, 1966, 2126, 2372, 1958, 1771, 1614, 1433, 1297, 1175, 1104, 1067, 1063, 1115, 1194, 1352, 1499, 1699, 1859, 2058, 2264, 1931, 1762, 1601, 1422, 1293, 1163, 1096, 1058, 1024, 1076, 1171, 1335, 1484, 1672, 1868, 2025, 2300, 1916, 1773, 1612, 1425, 1303, 1174, 1099, 1066, 1056, 1085, 1192, 1328, 1469, 1677, 1869, 1990, 2317, 2016, 1824, 1663, 1474, 1329, 1221, 1138, 1097, 1101, 1145, 1237, 1377, 1505, 1710, 1842, 2063, 2227, 2099, 1873, 1732, 1548, 1420, 1294, 1220, 1199, 1195, 1232, 1327, 1429, 1558, 1765, 1940, 2104, 2383, 2166, 1941, 1851, 1637, 1534, 1402, 1334, 1297, 1299, 1359, 1426, 1564, 1718, 1850, 2038, 2194, 2418, 2291, 2089, 1957, 1784, 1674, 1550, 1501, 1452, 1460, 1513, 1588, 1704, 1865, 2008, 2092, 2357, 2609, 2476, 2201, 2096, 1958, 1867, 1763, 1660, 1619, 1635, 1707, 1758, 1915, 2030, 2149, 2250, 2465, 2737, 2707, 2405, 2298, 2136, 2078, 1937, 1928, 1866, 1852, 1926, 2010, 2097, 2195, 2304, 2435, 2635, 3105, 3031, 2655, 2515, 2393, 2304, 2195, 2189, 2148, 2152, 2203, 2291, 2448, 2410, 2538, 2722, 3013, 3454]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2729, 2435, 2237, 2195, 2153, 2115, 2154, 2133, 2193, 2227, 2334, 2428, 2545, 2531, 2715, 3029, 3703, 2462, 2205, 2084, 1998, 1965, 1921, 1905, 1902, 1950, 1987, 2081, 2177, 2258, 2368, 2472, 2693, 3200, 2232, 2015, 1920, 1844, 1776, 1686, 1674, 1645, 1711, 1765, 1864, 2004, 2116, 2228, 2326, 2474, 2901, 2079, 1920, 1805, 1754, 1608, 1513, 1485, 1468, 1480, 1536, 1649, 1778, 1920, 2050, 2187, 2337, 2653, 2040, 1796, 1704, 1555, 1455, 1374, 1316, 1301, 1304, 1382, 1462, 1600, 1737, 1922, 2057, 2205, 2510, 1929, 1743, 1620, 1488, 1379, 1269, 1222, 1184, 1197, 1266, 1342, 1488, 1606, 1816, 1989, 2108, 2391, 1878, 1655, 1540, 1397, 1297, 1180, 1141, 1108, 1111, 1151, 1245, 1375, 1517, 1731, 1870, 2043, 2332, 1845, 1636, 1489, 1349, 1259, 1162, 1092, 1044, 1048, 1088, 1188, 1310, 1455, 1649, 1833, 1979, 2264, 1824, 1635, 1492, 1364, 1239, 1139, 1079, 1028, 1024, 1073, 1180, 1293, 1426, 1600, 1815, 1971, 2216, 1853, 1684, 1488, 1364, 1237, 1144, 1084, 1039, 1044, 1080, 1180, 1286, 1419, 1602, 1842, 1968, 2185, 1906, 1715, 1540, 1414, 1291, 1201, 1150, 1097, 1103, 1136, 1209, 1328, 1470, 1629, 1834, 1996, 2234, 1925, 1722, 1585, 1487, 1354, 1278, 1205, 1187, 1184, 1236, 1297, 1408, 1556, 1713, 1931, 2029, 2277, 2043, 1825, 1713, 1572, 1477, 1383, 1318, 1285, 1285, 1329, 1407, 1510, 1653, 1822, 1957, 2120, 2331, 2092, 1941, 1850, 1739, 1622, 1518, 1451, 1437, 1426, 1475, 1566, 1646, 1810, 1949, 2059, 2228, 2514, 2327, 2068, 1964, 1898, 1792, 1740, 1647, 1624, 1607, 1655, 1778, 1859, 1948, 2110, 2189, 2367, 2689, 2503, 2228, 2138, 2052, 2013, 1937, 1886, 1851, 1839, 1886, 1970, 2076, 2138, 2239, 2363, 2552, 2955, 2954, 2542, 2387, 2321, 2224, 2258, 2195, 2158, 2205, 2206, 2243, 2416, 2421, 2464, 2609, 2872, 3561]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2693, 2354, 2264, 2140, 2130, 2140, 2075, 2058, 2103, 2108, 2179, 2191, 2246, 2295, 2425, 2689, 3261, 2412, 2185, 2042, 2012, 1926, 1904, 1867, 1831, 1875, 1888, 1941, 2018, 2037, 2129, 2211, 2448, 2871, 2246, 2002, 1923, 1850, 1780, 1719, 1646, 1613, 1624, 1640, 1763, 1836, 1940, 1983, 2113, 2301, 2676, 2112, 1926, 1791, 1715, 1602, 1519, 1485, 1436, 1458, 1485, 1546, 1659, 1793, 1893, 1978, 2091, 2499, 1969, 1808, 1692, 1588, 1446, 1379, 1322, 1295, 1292, 1340, 1422, 1512, 1644, 1780, 1926, 2068, 2309, 1922, 1757, 1611, 1484, 1385, 1273, 1207, 1183, 1197, 1229, 1309, 1426, 1539, 1734, 1844, 2002, 2244, 1808, 1667, 1561, 1420, 1307, 1218, 1151, 1094, 1094, 1151, 1235, 1362, 1492, 1643, 1816, 1957, 2211, 1830, 1659, 1511, 1378, 1256, 1162, 1108, 1050, 1065, 1070, 1201, 1315, 1452, 1599, 1799, 1936, 2231, 1816, 1640, 1481, 1380, 1248, 1153, 1090, 1052, 1024, 1083, 1182, 1314, 1445, 1643, 1801, 1952, 2208, 1847, 1660, 1506, 1387, 1270, 1169, 1102, 1059, 1053, 1104, 1203, 1336, 1466, 1655, 1826, 1990, 2312, 1916, 1685, 1576, 1437, 1322, 1232, 1157, 1138, 1132, 1181, 1262, 1398, 1542, 1743, 1940, 2079, 2280, 1967, 1781, 1648, 1507, 1401, 1302, 1252, 1209, 1221, 1270, 1357, 1504, 1680, 1856, 2044, 2149, 2390, 2091, 1894, 1749, 1609, 1493, 1406, 1345, 1323, 1346, 1390, 1491, 1611, 1797, 1989, 2158, 2271, 2598, 2175, 2011, 1934, 1789, 1647, 1552, 1502, 1471, 1486, 1544, 1644, 1810, 1993, 2146, 2290, 2430, 2809, 2343, 2129, 2017, 1942, 1868, 1774, 1714, 1686, 1724, 1796, 1871, 2055, 2167, 2306, 2472, 2638, 2974, 2582, 2319, 2180, 2117, 2030, 1985, 1953, 1939, 1940, 2001, 2137, 2299, 2406, 2477, 2601, 2814, 3287, 2979, 2647, 2430, 2360, 2345, 2316, 2308, 2275, 2340, 2339, 2490, 2556, 2705, 2722, 2899, 3236, 3920]
| },
| "lsc_samples_blue": {
| "uCoeff": [2430, 2155, 2058, 1969, 1975, 1947, 1922, 1917, 1911, 1953, 1936, 1975, 2030, 2036, 2169, 2445, 2841, 2127, 1996, 1898, 1848, 1803, 1744, 1720, 1685, 1736, 1728, 1757, 1849, 1862, 1886, 1997, 2146, 2514, 2024, 1854, 1781, 1729, 1667, 1593, 1559, 1530, 1527, 1570, 1603, 1670, 1742, 1801, 1849, 2005, 2324, 1856, 1735, 1691, 1590, 1522, 1435, 1379, 1374, 1371, 1384, 1463, 1536, 1650, 1724, 1811, 1868, 2171, 1755, 1680, 1583, 1468, 1392, 1318, 1276, 1222, 1245, 1285, 1341, 1406, 1502, 1641, 1731, 1812, 2011, 1706, 1624, 1514, 1395, 1314, 1226, 1184, 1152, 1172, 1184, 1240, 1334, 1416, 1560, 1666, 1783, 2008, 1672, 1565, 1447, 1332, 1253, 1169, 1117, 1091, 1089, 1128, 1197, 1253, 1373, 1512, 1633, 1767, 1934, 1671, 1577, 1442, 1287, 1208, 1132, 1103, 1061, 1057, 1068, 1139, 1240, 1347, 1492, 1627, 1730, 1877, 1668, 1527, 1403, 1299, 1208, 1122, 1069, 1034, 1024, 1074, 1137, 1239, 1348, 1504, 1635, 1778, 1985, 1688, 1544, 1448, 1321, 1218, 1147, 1102, 1063, 1052, 1083, 1159, 1268, 1357, 1539, 1667, 1780, 2001, 1696, 1622, 1484, 1353, 1242, 1181, 1125, 1117, 1116, 1149, 1212, 1301, 1436, 1624, 1733, 1861, 2073, 1779, 1662, 1540, 1415, 1343, 1252, 1206, 1186, 1188, 1225, 1277, 1399, 1531, 1681, 1814, 1975, 2154, 1850, 1762, 1657, 1524, 1446, 1341, 1295, 1276, 1296, 1331, 1411, 1527, 1663, 1801, 1945, 2023, 2299, 1939, 1838, 1763, 1634, 1550, 1484, 1429, 1415, 1430, 1465, 1563, 1670, 1814, 1962, 2077, 2215, 2410, 2126, 1996, 1900, 1815, 1733, 1680, 1619, 1623, 1646, 1686, 1762, 1881, 1991, 2115, 2231, 2365, 2637, 2389, 2089, 2045, 1962, 1928, 1877, 1856, 1833, 1823, 1900, 2008, 2069, 2162, 2302, 2360, 2532, 2944, 2651, 2345, 2236, 2188, 2148, 2106, 2110, 2117, 2132, 2186, 2216, 2290, 2426, 2506, 2657, 2812, 3377]
| }
| }, {
| "name": "1600x1200_HZ_70",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3522, 2976, 2705, 2566, 2397, 2284, 2193, 2111, 2107, 2109, 2165, 2240, 2357, 2447, 2610, 2874, 3234, 3229, 2810, 2532, 2347, 2201, 2065, 1944, 1902, 1875, 1889, 1960, 2042, 2223, 2294, 2458, 2670, 3070, 3033, 2656, 2387, 2202, 2075, 1900, 1793, 1677, 1650, 1704, 1749, 1896, 2031, 2178, 2311, 2526, 2785, 2830, 2485, 2291, 2119, 1924, 1740, 1586, 1498, 1470, 1506, 1585, 1713, 1861, 2074, 2234, 2392, 2675, 2731, 2418, 2207, 1994, 1762, 1572, 1447, 1355, 1315, 1329, 1418, 1558, 1739, 1944, 2152, 2341, 2555, 2636, 2331, 2111, 1897, 1663, 1457, 1319, 1220, 1186, 1202, 1276, 1435, 1625, 1884, 2067, 2299, 2510, 2579, 2305, 2049, 1826, 1565, 1377, 1230, 1125, 1075, 1088, 1175, 1326, 1534, 1758, 2013, 2235, 2419, 2565, 2286, 2020, 1788, 1533, 1340, 1172, 1072, 1031, 1041, 1123, 1275, 1485, 1724, 1984, 2193, 2406, 2540, 2286, 2055, 1767, 1525, 1306, 1162, 1066, 1024, 1038, 1125, 1278, 1464, 1700, 1958, 2204, 2451, 2557, 2288, 2050, 1779, 1537, 1328, 1183, 1085, 1046, 1068, 1156, 1296, 1492, 1718, 1993, 2213, 2464, 2621, 2328, 2103, 1875, 1602, 1402, 1258, 1149, 1105, 1139, 1224, 1356, 1565, 1785, 2048, 2230, 2480, 2698, 2363, 2159, 1930, 1693, 1505, 1356, 1231, 1210, 1226, 1317, 1448, 1639, 1890, 2116, 2336, 2608, 2839, 2500, 2263, 2072, 1841, 1656, 1478, 1371, 1338, 1347, 1440, 1592, 1771, 2012, 2209, 2400, 2865, 2945, 2600, 2369, 2169, 1968, 1788, 1663, 1544, 1512, 1515, 1604, 1755, 1927, 2108, 2304, 2593, 3153, 3332, 2707, 2479, 2288, 2158, 1992, 1836, 1752, 1710, 1707, 1793, 1923, 2082, 2261, 2502, 2940, 3825, 3786, 3050, 2628, 2468, 2272, 2137, 2026, 1950, 1913, 1942, 1993, 2127, 2292, 2492, 2849, 3478, 4370, 4745, 3638, 3067, 2672, 2482, 2329, 2249, 2188, 2162, 2192, 2267, 2357, 2567, 2881, 3371, 4313, 5662]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2697, 2343, 2193, 2009, 1880, 1822, 1793, 1772, 1750, 1778, 1780, 1844, 1891, 1976, 2092, 2327, 2759, 2433, 2188, 1960, 1831, 1727, 1672, 1624, 1596, 1605, 1641, 1659, 1718, 1802, 1874, 2003, 2160, 2446, 2399, 2061, 1862, 1759, 1658, 1576, 1528, 1461, 1465, 1492, 1545, 1601, 1705, 1783, 1911, 2072, 2293, 2223, 1945, 1800, 1675, 1573, 1459, 1397, 1350, 1344, 1369, 1397, 1488, 1617, 1715, 1845, 1981, 2159, 2108, 1846, 1743, 1593, 1501, 1376, 1301, 1253, 1228, 1246, 1287, 1379, 1515, 1651, 1758, 1897, 2069, 2037, 1824, 1690, 1555, 1428, 1304, 1208, 1170, 1143, 1151, 1202, 1300, 1434, 1598, 1735, 1896, 2020, 1998, 1805, 1654, 1490, 1369, 1242, 1142, 1101, 1070, 1066, 1139, 1238, 1406, 1544, 1698, 1853, 1975, 2003, 1790, 1664, 1482, 1354, 1211, 1122, 1047, 1033, 1029, 1090, 1198, 1352, 1513, 1677, 1831, 1972, 1985, 1785, 1626, 1487, 1348, 1201, 1101, 1032, 1024, 1030, 1097, 1207, 1344, 1495, 1679, 1869, 1966, 1998, 1800, 1650, 1490, 1354, 1219, 1124, 1068, 1037, 1067, 1117, 1211, 1358, 1518, 1675, 1857, 1978, 2048, 1847, 1711, 1553, 1419, 1270, 1184, 1117, 1097, 1118, 1153, 1271, 1425, 1570, 1727, 1880, 1984, 2106, 1874, 1765, 1618, 1475, 1348, 1253, 1205, 1174, 1181, 1238, 1345, 1491, 1655, 1766, 1924, 2166, 2204, 1948, 1827, 1706, 1597, 1441, 1348, 1301, 1274, 1288, 1353, 1445, 1569, 1720, 1868, 2014, 2342, 2317, 2012, 1890, 1767, 1648, 1573, 1451, 1418, 1405, 1415, 1460, 1527, 1670, 1787, 1897, 2170, 2611, 2579, 2159, 1952, 1853, 1783, 1702, 1619, 1582, 1534, 1556, 1607, 1681, 1808, 1901, 2073, 2472, 3027, 2956, 2386, 2115, 1964, 1885, 1796, 1753, 1695, 1696, 1709, 1761, 1825, 1937, 2072, 2331, 2858, 3636, 3742, 2849, 2474, 2139, 1985, 1962, 1901, 1893, 1895, 1869, 1929, 1998, 2175, 2381, 2817, 3475, 5088]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3065, 2429, 2228, 2055, 1938, 1905, 1838, 1750, 1744, 1816, 1794, 1854, 1938, 2011, 2163, 2340, 2819, 2590, 2272, 2074, 1918, 1834, 1744, 1697, 1640, 1609, 1634, 1678, 1734, 1836, 1923, 1992, 2220, 2512, 2430, 2146, 1945, 1859, 1755, 1655, 1561, 1499, 1491, 1500, 1527, 1617, 1724, 1820, 1930, 2088, 2284, 2318, 2020, 1892, 1788, 1660, 1533, 1425, 1380, 1356, 1372, 1417, 1521, 1641, 1769, 1845, 2024, 2249, 2206, 1979, 1844, 1693, 1550, 1431, 1315, 1249, 1231, 1256, 1298, 1410, 1543, 1663, 1812, 1972, 2119, 2149, 1902, 1773, 1638, 1509, 1359, 1228, 1178, 1144, 1146, 1211, 1297, 1476, 1661, 1769, 1919, 2068, 2103, 1877, 1703, 1576, 1422, 1283, 1160, 1097, 1064, 1071, 1139, 1245, 1415, 1595, 1717, 1873, 2042, 2051, 1854, 1689, 1529, 1371, 1256, 1124, 1054, 1030, 1035, 1097, 1216, 1381, 1539, 1725, 1863, 2001, 2040, 1837, 1709, 1541, 1384, 1240, 1132, 1056, 1035, 1032, 1104, 1214, 1366, 1545, 1705, 1865, 2003, 2044, 1847, 1712, 1529, 1404, 1231, 1138, 1047, 1024, 1055, 1127, 1237, 1378, 1540, 1748, 1889, 2051, 2068, 1851, 1730, 1565, 1404, 1279, 1166, 1103, 1075, 1104, 1151, 1268, 1419, 1575, 1765, 1895, 2049, 2159, 1889, 1749, 1594, 1456, 1333, 1230, 1170, 1138, 1168, 1224, 1334, 1477, 1647, 1756, 1958, 2151, 2246, 1957, 1786, 1657, 1518, 1405, 1288, 1266, 1230, 1240, 1328, 1439, 1540, 1689, 1820, 2008, 2367, 2316, 2016, 1841, 1705, 1622, 1501, 1410, 1357, 1355, 1354, 1422, 1515, 1637, 1758, 1890, 2143, 2661, 2548, 2122, 1898, 1823, 1719, 1604, 1529, 1485, 1466, 1476, 1547, 1623, 1740, 1869, 2019, 2401, 3085, 2932, 2356, 2006, 1885, 1803, 1720, 1673, 1615, 1589, 1621, 1679, 1735, 1860, 2007, 2282, 2808, 3605, 3701, 2809, 2453, 2064, 1934, 1845, 1791, 1795, 1745, 1774, 1828, 1924, 2072, 2327, 2879, 3474, 4786]
| },
| "lsc_samples_blue": {
| "uCoeff": [2791, 2413, 2113, 2034, 1848, 1752, 1766, 1711, 1696, 1738, 1766, 1837, 1904, 1975, 2082, 2346, 2754, 2494, 2165, 1936, 1804, 1723, 1657, 1610, 1582, 1541, 1606, 1623, 1660, 1749, 1830, 1920, 2071, 2450, 2421, 2039, 1823, 1739, 1659, 1585, 1510, 1454, 1458, 1471, 1505, 1570, 1670, 1754, 1847, 1958, 2280, 2245, 1942, 1780, 1677, 1573, 1492, 1409, 1374, 1327, 1366, 1391, 1493, 1598, 1680, 1786, 1952, 2174, 2153, 1897, 1739, 1630, 1518, 1409, 1330, 1242, 1243, 1278, 1307, 1386, 1520, 1665, 1767, 1901, 2127, 2079, 1819, 1697, 1588, 1454, 1312, 1221, 1158, 1139, 1155, 1200, 1324, 1449, 1614, 1730, 1865, 2001, 2046, 1776, 1669, 1539, 1414, 1275, 1162, 1110, 1074, 1101, 1134, 1258, 1400, 1549, 1698, 1840, 2077, 1954, 1811, 1625, 1515, 1383, 1238, 1128, 1065, 1053, 1054, 1121, 1243, 1363, 1492, 1675, 1835, 1946, 1947, 1805, 1656, 1485, 1365, 1221, 1108, 1063, 1027, 1044, 1126, 1222, 1380, 1495, 1674, 1854, 1949, 1947, 1801, 1652, 1511, 1370, 1216, 1128, 1069, 1024, 1064, 1151, 1247, 1390, 1502, 1718, 1819, 2030, 1963, 1803, 1666, 1518, 1387, 1246, 1139, 1116, 1084, 1104, 1183, 1273, 1435, 1560, 1727, 1852, 2006, 2081, 1829, 1663, 1563, 1471, 1300, 1218, 1178, 1141, 1174, 1240, 1351, 1476, 1636, 1737, 1899, 2132, 2130, 1860, 1723, 1633, 1533, 1397, 1319, 1249, 1258, 1256, 1343, 1405, 1536, 1702, 1831, 1977, 2368, 2194, 1893, 1774, 1666, 1561, 1473, 1411, 1364, 1373, 1367, 1438, 1534, 1630, 1775, 1877, 2071, 2605, 2448, 2052, 1818, 1752, 1670, 1597, 1526, 1499, 1457, 1485, 1552, 1619, 1713, 1820, 1974, 2394, 3043, 2960, 2286, 1948, 1791, 1753, 1661, 1657, 1588, 1601, 1625, 1685, 1740, 1827, 1979, 2220, 2719, 3812, 3756, 2720, 2293, 1996, 1891, 1834, 1791, 1760, 1769, 1823, 1812, 1912, 2126, 2244, 2816, 3512, 4787]
| }
| }, {
| "name": "1600x1200_HZ_100",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3644, 3164, 2867, 2768, 2692, 2632, 2555, 2538, 2560, 2697, 2766, 2983, 3075, 3244, 3361, 3906, 4726, 3310, 2946, 2698, 2586, 2425, 2310, 2223, 2217, 2240, 2333, 2476, 2638, 2798, 2957, 3132, 3561, 4132, 2975, 2695, 2531, 2335, 2141, 1982, 1927, 1897, 1897, 1998, 2158, 2355, 2577, 2788, 2949, 3259, 3791, 2760, 2559, 2304, 2133, 1901, 1767, 1655, 1632, 1640, 1717, 1900, 2079, 2333, 2540, 2792, 3034, 3513, 2670, 2403, 2189, 1931, 1720, 1553, 1413, 1397, 1410, 1488, 1656, 1834, 2126, 2417, 2660, 2913, 3198, 2613, 2283, 2049, 1773, 1540, 1396, 1285, 1240, 1272, 1334, 1459, 1686, 1932, 2229, 2470, 2797, 3128, 2432, 2127, 1929, 1649, 1452, 1287, 1184, 1143, 1125, 1194, 1327, 1534, 1799, 2105, 2394, 2665, 3004, 2405, 2147, 1860, 1586, 1375, 1231, 1136, 1074, 1066, 1118, 1252, 1442, 1707, 2025, 2333, 2597, 2942, 2377, 2109, 1844, 1562, 1369, 1210, 1112, 1050, 1024, 1115, 1232, 1416, 1651, 1967, 2289, 2556, 2922, 2418, 2123, 1886, 1609, 1365, 1226, 1111, 1078, 1047, 1131, 1238, 1428, 1678, 1987, 2315, 2550, 2938, 2460, 2183, 1958, 1638, 1436, 1270, 1177, 1129, 1137, 1189, 1299, 1487, 1727, 2015, 2334, 2622, 2945, 2503, 2255, 2059, 1776, 1519, 1376, 1255, 1217, 1221, 1291, 1399, 1606, 1838, 2118, 2430, 2687, 2998, 2708, 2392, 2169, 1937, 1687, 1507, 1418, 1351, 1361, 1447, 1541, 1738, 2010, 2280, 2554, 2803, 3177, 2844, 2559, 2346, 2124, 1920, 1735, 1603, 1569, 1564, 1641, 1779, 1952, 2182, 2453, 2698, 2915, 3375, 2997, 2748, 2562, 2347, 2150, 1975, 1866, 1835, 1826, 1888, 2056, 2258, 2432, 2641, 2820, 3200, 3613, 3270, 2946, 2763, 2565, 2463, 2307, 2193, 2136, 2132, 2276, 2331, 2560, 2636, 2900, 3090, 3386, 3936, 3787, 3266, 3081, 2863, 2772, 2675, 2591, 2541, 2510, 2588, 2775, 2915, 2993, 3203, 3416, 3811, 4632]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3017, 2703, 2466, 2436, 2372, 2375, 2352, 2396, 2367, 2425, 2409, 2526, 2580, 2689, 2871, 3191, 3892, 2721, 2415, 2297, 2244, 2141, 2047, 2067, 2057, 1998, 2102, 2222, 2306, 2443, 2456, 2628, 2861, 3458, 2530, 2239, 2099, 2049, 1912, 1839, 1797, 1769, 1760, 1830, 1954, 2094, 2183, 2288, 2455, 2599, 3056, 2261, 2087, 1933, 1868, 1739, 1648, 1586, 1536, 1542, 1595, 1736, 1859, 2008, 2134, 2330, 2428, 2788, 2165, 1972, 1792, 1691, 1555, 1476, 1385, 1374, 1376, 1433, 1533, 1673, 1838, 1994, 2167, 2338, 2579, 2057, 1855, 1723, 1595, 1454, 1360, 1255, 1215, 1238, 1281, 1385, 1506, 1674, 1880, 2009, 2184, 2471, 2001, 1776, 1641, 1473, 1360, 1232, 1168, 1118, 1107, 1164, 1266, 1411, 1574, 1776, 1989, 2139, 2446, 1938, 1769, 1593, 1438, 1317, 1200, 1107, 1070, 1031, 1086, 1183, 1323, 1491, 1665, 1925, 2074, 2330, 1922, 1752, 1557, 1406, 1259, 1172, 1086, 1041, 1024, 1101, 1159, 1308, 1471, 1656, 1856, 2036, 2295, 1922, 1746, 1574, 1449, 1295, 1186, 1120, 1070, 1054, 1096, 1199, 1329, 1478, 1658, 1869, 2046, 2336, 2014, 1811, 1641, 1492, 1349, 1263, 1169, 1128, 1106, 1150, 1228, 1373, 1511, 1688, 1919, 2037, 2339, 2059, 1847, 1714, 1577, 1431, 1319, 1251, 1235, 1215, 1239, 1348, 1454, 1600, 1762, 1936, 2102, 2369, 2122, 1926, 1810, 1691, 1557, 1482, 1375, 1339, 1345, 1400, 1451, 1605, 1712, 1892, 2037, 2234, 2581, 2339, 2049, 1983, 1850, 1761, 1626, 1553, 1520, 1516, 1547, 1621, 1751, 1875, 2038, 2132, 2304, 2668, 2508, 2220, 2128, 2034, 1934, 1853, 1776, 1770, 1763, 1767, 1873, 1941, 2069, 2179, 2340, 2530, 2863, 2722, 2448, 2257, 2265, 2220, 2070, 2030, 1960, 2007, 2020, 2092, 2197, 2312, 2424, 2519, 2771, 3187, 3137, 2791, 2558, 2591, 2486, 2440, 2513, 2370, 2387, 2376, 2528, 2532, 2577, 2656, 2809, 3057, 3737]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2939, 2559, 2438, 2316, 2231, 2195, 2119, 2145, 2099, 2128, 2265, 2351, 2362, 2394, 2563, 2920, 3609, 2615, 2306, 2229, 2121, 2042, 1951, 1920, 1881, 1852, 1905, 2017, 2103, 2168, 2250, 2444, 2713, 3177, 2458, 2182, 2048, 1987, 1844, 1744, 1672, 1638, 1644, 1703, 1760, 1950, 2052, 2135, 2291, 2495, 2895, 2301, 2070, 1941, 1842, 1707, 1586, 1496, 1449, 1469, 1525, 1608, 1743, 1879, 2039, 2216, 2365, 2733, 2173, 1997, 1832, 1690, 1533, 1445, 1354, 1309, 1318, 1349, 1460, 1608, 1771, 1934, 2083, 2311, 2685, 2156, 1930, 1773, 1598, 1437, 1328, 1240, 1177, 1204, 1249, 1346, 1514, 1678, 1873, 2049, 2200, 2573, 2090, 1888, 1701, 1554, 1383, 1248, 1162, 1101, 1107, 1159, 1270, 1418, 1609, 1819, 2027, 2173, 2469, 2056, 1861, 1645, 1462, 1334, 1208, 1127, 1055, 1051, 1096, 1232, 1354, 1552, 1757, 2013, 2170, 2502, 2093, 1823, 1629, 1462, 1295, 1192, 1105, 1049, 1024, 1084, 1210, 1383, 1571, 1789, 2031, 2224, 2486, 2091, 1836, 1694, 1497, 1336, 1211, 1105, 1057, 1065, 1125, 1250, 1388, 1595, 1843, 2066, 2281, 2583, 2158, 1923, 1687, 1521, 1379, 1252, 1168, 1117, 1121, 1171, 1285, 1445, 1695, 1889, 2104, 2357, 2580, 2254, 1957, 1789, 1627, 1438, 1332, 1243, 1202, 1227, 1271, 1375, 1548, 1740, 1989, 2208, 2422, 2660, 2238, 2080, 1960, 1715, 1564, 1470, 1372, 1324, 1368, 1396, 1526, 1711, 1876, 2144, 2324, 2537, 2822, 2366, 2141, 2027, 1907, 1719, 1618, 1517, 1508, 1513, 1570, 1701, 1865, 2025, 2305, 2436, 2699, 3071, 2583, 2313, 2186, 2088, 1948, 1831, 1734, 1707, 1714, 1809, 1917, 2108, 2298, 2474, 2599, 2885, 3139, 2867, 2475, 2322, 2227, 2167, 2039, 1983, 1935, 2003, 2048, 2165, 2332, 2456, 2629, 2877, 3086, 3628, 3303, 2848, 2577, 2501, 2452, 2389, 2328, 2259, 2270, 2327, 2534, 2638, 2765, 2922, 3139, 3486, 4194]
| },
| "lsc_samples_blue": {
| "uCoeff": [2934, 2566, 2290, 2281, 2224, 2139, 2079, 2017, 2061, 2030, 2114, 2148, 2173, 2219, 2331, 2753, 3199, 2577, 2306, 2242, 2055, 2034, 1979, 1859, 1871, 1807, 1856, 1959, 1991, 2034, 2005, 2123, 2401, 2767, 2327, 2165, 2037, 1955, 1815, 1747, 1655, 1635, 1622, 1690, 1731, 1828, 1857, 1931, 2062, 2232, 2686, 2222, 2069, 1906, 1782, 1688, 1573, 1496, 1485, 1479, 1473, 1572, 1644, 1749, 1878, 2016, 2106, 2485, 2139, 1937, 1822, 1696, 1538, 1472, 1363, 1301, 1323, 1339, 1411, 1514, 1644, 1778, 1850, 2087, 2353, 2062, 1861, 1730, 1555, 1472, 1326, 1255, 1220, 1199, 1244, 1294, 1399, 1575, 1667, 1810, 2021, 2278, 2017, 1833, 1666, 1507, 1411, 1247, 1166, 1112, 1115, 1138, 1248, 1326, 1498, 1671, 1845, 2009, 2203, 1978, 1781, 1631, 1462, 1339, 1200, 1147, 1071, 1050, 1117, 1193, 1306, 1483, 1597, 1759, 1994, 2175, 2033, 1791, 1659, 1507, 1322, 1193, 1128, 1053, 1024, 1082, 1176, 1314, 1484, 1629, 1854, 2001, 2215, 2027, 1812, 1651, 1472, 1368, 1221, 1130, 1074, 1063, 1104, 1199, 1351, 1512, 1678, 1864, 2065, 2314, 2026, 1872, 1702, 1554, 1389, 1286, 1215, 1162, 1123, 1184, 1262, 1376, 1596, 1732, 1941, 2072, 2402, 2122, 1915, 1749, 1594, 1492, 1363, 1271, 1226, 1230, 1250, 1377, 1503, 1660, 1886, 1995, 2244, 2436, 2185, 1962, 1887, 1726, 1619, 1438, 1393, 1358, 1353, 1395, 1465, 1622, 1830, 1992, 2151, 2308, 2653, 2263, 2170, 2050, 1883, 1751, 1633, 1568, 1501, 1539, 1551, 1707, 1775, 1973, 2198, 2254, 2426, 2738, 2599, 2287, 2196, 2091, 1916, 1873, 1767, 1774, 1739, 1829, 1886, 2041, 2154, 2243, 2454, 2581, 2998, 2713, 2479, 2346, 2226, 2149, 2081, 2035, 1964, 1983, 2040, 2143, 2288, 2358, 2457, 2553, 2831, 3328, 3159, 2789, 2570, 2383, 2493, 2305, 2333, 2287, 2362, 2300, 2461, 2501, 2577, 2737, 2857, 3220, 3846]
| }
| }, {
| "name": "1600x1200_TL84_70",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2764, 2322, 2101, 1926, 1864, 1765, 1745, 1688, 1632, 1686, 1693, 1735, 1812, 1879, 1999, 2198, 2549, 2459, 2127, 1933, 1789, 1712, 1635, 1570, 1544, 1535, 1537, 1561, 1634, 1699, 1783, 1880, 2053, 2310, 2339, 2019, 1831, 1716, 1609, 1538, 1467, 1438, 1409, 1435, 1465, 1535, 1597, 1695, 1790, 1965, 2129, 2190, 1905, 1740, 1646, 1542, 1445, 1367, 1311, 1313, 1311, 1353, 1425, 1534, 1631, 1725, 1871, 2049, 2078, 1864, 1688, 1565, 1460, 1348, 1267, 1231, 1193, 1226, 1264, 1331, 1444, 1536, 1692, 1816, 1976, 2000, 1770, 1641, 1521, 1403, 1275, 1188, 1146, 1127, 1139, 1175, 1265, 1370, 1507, 1623, 1751, 1928, 1982, 1786, 1633, 1481, 1349, 1236, 1156, 1104, 1075, 1073, 1115, 1200, 1339, 1456, 1616, 1746, 1860, 1964, 1734, 1591, 1460, 1341, 1215, 1117, 1060, 1045, 1042, 1095, 1173, 1318, 1450, 1576, 1709, 1852, 1966, 1755, 1618, 1456, 1315, 1198, 1120, 1049, 1024, 1035, 1099, 1182, 1304, 1431, 1570, 1723, 1853, 1960, 1757, 1641, 1485, 1351, 1222, 1133, 1069, 1043, 1077, 1120, 1208, 1309, 1448, 1607, 1722, 1852, 2008, 1815, 1668, 1545, 1386, 1268, 1168, 1130, 1102, 1109, 1174, 1250, 1356, 1489, 1635, 1739, 1905, 2063, 1843, 1720, 1590, 1449, 1345, 1237, 1182, 1152, 1179, 1219, 1303, 1424, 1542, 1670, 1799, 2020, 2167, 1913, 1777, 1646, 1519, 1411, 1318, 1258, 1251, 1255, 1306, 1387, 1483, 1630, 1738, 1870, 2172, 2255, 1975, 1829, 1696, 1601, 1498, 1410, 1360, 1325, 1351, 1407, 1483, 1563, 1687, 1804, 2022, 2488, 2545, 2115, 1907, 1795, 1672, 1607, 1538, 1482, 1465, 1474, 1521, 1600, 1682, 1792, 1957, 2310, 2936, 2921, 2371, 2012, 1865, 1801, 1703, 1645, 1602, 1562, 1592, 1641, 1693, 1789, 1944, 2205, 2709, 3481, 3595, 2780, 2346, 2076, 1904, 1864, 1821, 1758, 1727, 1738, 1791, 1875, 2033, 2240, 2735, 3408, 4406]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2533, 2158, 1961, 1807, 1685, 1661, 1600, 1587, 1595, 1581, 1616, 1663, 1707, 1782, 1912, 2129, 2437, 2300, 1963, 1798, 1658, 1585, 1518, 1480, 1456, 1453, 1472, 1488, 1534, 1581, 1698, 1768, 1971, 2162, 2120, 1883, 1687, 1594, 1522, 1452, 1388, 1360, 1364, 1361, 1375, 1434, 1531, 1620, 1693, 1850, 2034, 2000, 1768, 1596, 1538, 1436, 1349, 1293, 1273, 1272, 1280, 1316, 1375, 1466, 1576, 1631, 1779, 1945, 1893, 1701, 1562, 1454, 1390, 1303, 1227, 1190, 1173, 1186, 1216, 1286, 1388, 1494, 1596, 1729, 1892, 1830, 1644, 1525, 1414, 1322, 1226, 1152, 1125, 1101, 1111, 1157, 1244, 1349, 1466, 1578, 1709, 1806, 1809, 1635, 1511, 1384, 1287, 1192, 1105, 1080, 1063, 1067, 1098, 1188, 1306, 1414, 1545, 1686, 1796, 1783, 1620, 1507, 1362, 1265, 1160, 1087, 1039, 1031, 1025, 1076, 1166, 1283, 1390, 1531, 1668, 1800, 1781, 1651, 1498, 1388, 1263, 1170, 1094, 1037, 1024, 1028, 1084, 1171, 1283, 1403, 1532, 1691, 1750, 1792, 1619, 1526, 1394, 1288, 1176, 1106, 1054, 1044, 1056, 1105, 1166, 1287, 1429, 1559, 1687, 1766, 1855, 1670, 1552, 1427, 1325, 1229, 1152, 1098, 1083, 1096, 1135, 1240, 1332, 1431, 1601, 1703, 1850, 1886, 1727, 1603, 1502, 1391, 1276, 1201, 1142, 1147, 1149, 1198, 1266, 1391, 1524, 1609, 1745, 1950, 1976, 1779, 1661, 1559, 1471, 1360, 1281, 1236, 1224, 1230, 1278, 1343, 1464, 1587, 1689, 1784, 2051, 2096, 1849, 1723, 1605, 1517, 1439, 1380, 1329, 1324, 1340, 1358, 1437, 1548, 1642, 1697, 1916, 2344, 2323, 1938, 1788, 1684, 1604, 1561, 1494, 1464, 1450, 1429, 1498, 1557, 1620, 1690, 1869, 2200, 2740, 2693, 2190, 1899, 1754, 1689, 1627, 1621, 1567, 1558, 1574, 1600, 1645, 1725, 1870, 2113, 2625, 3267, 3410, 2617, 2190, 1952, 1792, 1761, 1708, 1728, 1663, 1703, 1747, 1799, 1913, 2150, 2602, 3231, 4422]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2691, 2238, 2032, 1916, 1775, 1714, 1664, 1633, 1643, 1644, 1675, 1696, 1749, 1848, 1944, 2142, 2446, 2327, 2071, 1881, 1766, 1661, 1612, 1555, 1532, 1501, 1500, 1538, 1596, 1657, 1741, 1828, 1984, 2244, 2170, 1945, 1788, 1679, 1598, 1511, 1456, 1407, 1399, 1404, 1438, 1500, 1576, 1634, 1711, 1890, 2096, 2099, 1847, 1713, 1617, 1514, 1434, 1358, 1310, 1295, 1314, 1351, 1407, 1497, 1597, 1699, 1801, 2004, 1976, 1785, 1650, 1551, 1444, 1335, 1269, 1235, 1194, 1214, 1251, 1317, 1436, 1531, 1641, 1740, 1905, 1912, 1719, 1612, 1500, 1399, 1289, 1200, 1139, 1123, 1123, 1170, 1253, 1365, 1477, 1590, 1714, 1826, 1870, 1696, 1587, 1456, 1339, 1232, 1149, 1090, 1077, 1064, 1107, 1195, 1323, 1442, 1575, 1708, 1808, 1863, 1671, 1566, 1447, 1312, 1199, 1111, 1072, 1033, 1035, 1075, 1168, 1287, 1422, 1546, 1679, 1772, 1838, 1674, 1569, 1424, 1300, 1197, 1101, 1044, 1024, 1038, 1081, 1172, 1291, 1430, 1554, 1695, 1802, 1856, 1660, 1549, 1437, 1307, 1186, 1103, 1049, 1025, 1045, 1092, 1180, 1299, 1427, 1564, 1701, 1801, 1853, 1675, 1556, 1444, 1329, 1218, 1121, 1088, 1070, 1073, 1116, 1216, 1319, 1448, 1581, 1721, 1835, 1933, 1671, 1583, 1493, 1353, 1276, 1189, 1145, 1115, 1139, 1188, 1265, 1375, 1509, 1593, 1731, 1908, 1983, 1729, 1640, 1527, 1419, 1334, 1247, 1196, 1190, 1197, 1262, 1331, 1447, 1557, 1653, 1759, 2062, 2084, 1800, 1665, 1565, 1481, 1394, 1335, 1285, 1278, 1294, 1358, 1410, 1503, 1614, 1708, 1912, 2330, 2324, 1933, 1731, 1631, 1533, 1484, 1423, 1402, 1390, 1393, 1441, 1518, 1580, 1681, 1834, 2151, 2702, 2649, 2138, 1822, 1734, 1642, 1552, 1519, 1477, 1481, 1499, 1554, 1600, 1681, 1833, 2093, 2552, 3229, 3266, 2576, 2151, 1873, 1751, 1690, 1636, 1635, 1619, 1638, 1682, 1735, 1877, 2111, 2530, 3178, 4300]
| },
| "lsc_samples_blue": {
| "uCoeff": [2562, 2141, 1909, 1795, 1650, 1590, 1557, 1546, 1541, 1539, 1577, 1618, 1655, 1702, 1837, 2010, 2381, 2234, 1905, 1746, 1651, 1544, 1502, 1471, 1426, 1407, 1431, 1459, 1493, 1542, 1634, 1686, 1882, 2076, 2115, 1824, 1653, 1545, 1502, 1421, 1359, 1346, 1308, 1334, 1366, 1418, 1489, 1548, 1634, 1750, 1996, 1973, 1721, 1581, 1508, 1433, 1352, 1287, 1263, 1246, 1277, 1305, 1336, 1434, 1488, 1575, 1697, 1877, 1896, 1659, 1553, 1456, 1367, 1280, 1235, 1188, 1156, 1177, 1206, 1273, 1364, 1473, 1560, 1630, 1819, 1832, 1612, 1514, 1423, 1305, 1211, 1143, 1123, 1120, 1106, 1143, 1227, 1302, 1427, 1506, 1623, 1794, 1763, 1562, 1480, 1389, 1269, 1194, 1105, 1070, 1065, 1060, 1113, 1185, 1286, 1358, 1485, 1604, 1732, 1730, 1573, 1441, 1364, 1263, 1147, 1100, 1054, 1052, 1064, 1100, 1151, 1232, 1347, 1470, 1597, 1722, 1759, 1580, 1462, 1346, 1233, 1166, 1099, 1030, 1024, 1051, 1087, 1149, 1240, 1366, 1493, 1602, 1711, 1758, 1586, 1440, 1347, 1241, 1150, 1096, 1050, 1033, 1056, 1094, 1158, 1255, 1381, 1484, 1585, 1726, 1785, 1574, 1484, 1365, 1273, 1169, 1112, 1087, 1085, 1085, 1103, 1189, 1280, 1392, 1524, 1639, 1785, 1778, 1593, 1480, 1401, 1296, 1224, 1155, 1122, 1096, 1144, 1173, 1225, 1323, 1432, 1542, 1651, 1857, 1892, 1634, 1515, 1454, 1352, 1245, 1206, 1189, 1178, 1195, 1238, 1277, 1378, 1489, 1553, 1711, 1997, 1977, 1707, 1591, 1474, 1402, 1343, 1277, 1253, 1247, 1263, 1307, 1372, 1454, 1543, 1624, 1819, 2256, 2164, 1776, 1608, 1537, 1458, 1399, 1365, 1346, 1354, 1355, 1404, 1431, 1523, 1581, 1735, 2051, 2666, 2559, 2023, 1680, 1567, 1490, 1466, 1463, 1416, 1417, 1423, 1468, 1506, 1579, 1734, 1987, 2440, 3216, 3176, 2422, 2024, 1720, 1640, 1571, 1576, 1559, 1554, 1573, 1616, 1647, 1765, 1989, 2344, 3057, 4149]
| }
| }, {
| "name": "1600x1200_TL84_100",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2503, 2276, 2105, 1985, 1939, 1902, 1945, 1891, 1955, 2003, 2119, 2176, 2229, 2309, 2462, 2787, 3378, 2319, 2087, 1933, 1873, 1822, 1750, 1720, 1728, 1760, 1813, 1910, 1968, 2080, 2150, 2291, 2481, 2896, 2156, 1896, 1823, 1736, 1628, 1565, 1539, 1501, 1563, 1613, 1706, 1826, 1908, 2043, 2151, 2289, 2608, 1994, 1833, 1700, 1608, 1513, 1431, 1387, 1375, 1388, 1446, 1526, 1657, 1769, 1941, 2032, 2149, 2467, 1859, 1731, 1602, 1477, 1383, 1310, 1261, 1251, 1248, 1303, 1378, 1478, 1631, 1827, 1941, 2012, 2325, 1800, 1675, 1538, 1389, 1313, 1210, 1174, 1168, 1171, 1215, 1263, 1389, 1506, 1722, 1825, 1990, 2206, 1735, 1595, 1471, 1332, 1234, 1166, 1112, 1097, 1095, 1135, 1200, 1295, 1437, 1588, 1742, 1870, 2105, 1718, 1556, 1410, 1288, 1191, 1114, 1084, 1051, 1047, 1091, 1145, 1249, 1378, 1520, 1716, 1825, 2014, 1694, 1539, 1423, 1288, 1196, 1103, 1052, 1031, 1024, 1060, 1137, 1220, 1337, 1491, 1656, 1785, 1995, 1670, 1566, 1440, 1282, 1193, 1105, 1070, 1046, 1033, 1089, 1143, 1230, 1356, 1482, 1676, 1796, 2031, 1754, 1569, 1478, 1353, 1227, 1170, 1113, 1090, 1087, 1122, 1187, 1258, 1388, 1531, 1680, 1823, 2029, 1801, 1641, 1541, 1398, 1298, 1216, 1164, 1154, 1149, 1182, 1239, 1335, 1443, 1599, 1724, 1872, 2079, 1895, 1724, 1631, 1490, 1387, 1297, 1255, 1223, 1224, 1269, 1324, 1418, 1540, 1699, 1794, 1938, 2196, 1971, 1808, 1727, 1608, 1485, 1413, 1353, 1339, 1345, 1381, 1447, 1549, 1680, 1787, 1887, 2035, 2313, 2157, 1951, 1845, 1729, 1674, 1601, 1526, 1510, 1505, 1548, 1616, 1722, 1814, 1920, 2028, 2178, 2513, 2343, 2125, 1974, 1888, 1862, 1759, 1722, 1702, 1678, 1764, 1817, 1883, 1918, 2036, 2173, 2414, 2759, 2689, 2339, 2186, 2157, 2004, 1963, 1971, 1937, 1904, 1952, 2068, 2159, 2180, 2244, 2422, 2639, 3127]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2668, 2381, 2215, 2165, 2127, 2125, 2114, 2120, 2141, 2162, 2251, 2345, 2402, 2525, 2638, 2898, 3632, 2424, 2154, 2036, 1974, 1923, 1882, 1879, 1891, 1934, 1940, 2050, 2133, 2207, 2275, 2441, 2605, 3115, 2179, 1990, 1895, 1837, 1740, 1669, 1679, 1656, 1662, 1702, 1819, 1953, 2051, 2148, 2251, 2415, 2816, 2021, 1848, 1743, 1675, 1593, 1486, 1467, 1456, 1480, 1524, 1641, 1733, 1877, 2011, 2157, 2227, 2576, 1930, 1754, 1643, 1531, 1427, 1365, 1313, 1294, 1314, 1368, 1453, 1580, 1707, 1893, 1987, 2134, 2358, 1801, 1674, 1553, 1442, 1332, 1261, 1206, 1164, 1194, 1260, 1337, 1437, 1584, 1734, 1887, 2027, 2252, 1790, 1623, 1491, 1373, 1277, 1173, 1123, 1095, 1099, 1137, 1233, 1360, 1471, 1643, 1833, 1945, 2177, 1744, 1568, 1454, 1337, 1229, 1128, 1071, 1040, 1045, 1085, 1167, 1295, 1432, 1578, 1751, 1890, 2109, 1709, 1569, 1426, 1319, 1197, 1123, 1069, 1033, 1024, 1061, 1140, 1262, 1390, 1540, 1704, 1862, 2089, 1737, 1595, 1443, 1312, 1218, 1135, 1088, 1033, 1045, 1074, 1145, 1274, 1391, 1557, 1712, 1863, 2083, 1773, 1628, 1488, 1367, 1251, 1184, 1129, 1078, 1099, 1122, 1185, 1298, 1428, 1565, 1734, 1878, 2132, 1808, 1653, 1576, 1463, 1329, 1249, 1192, 1163, 1175, 1213, 1279, 1374, 1477, 1634, 1823, 1951, 2148, 1914, 1778, 1649, 1540, 1438, 1366, 1307, 1283, 1283, 1307, 1371, 1482, 1594, 1720, 1880, 1996, 2288, 2059, 1865, 1773, 1677, 1579, 1488, 1454, 1428, 1404, 1468, 1534, 1627, 1716, 1867, 1987, 2097, 2392, 2242, 2044, 1916, 1865, 1771, 1667, 1648, 1601, 1624, 1644, 1712, 1805, 1926, 2014, 2092, 2279, 2621, 2436, 2196, 2043, 2035, 1967, 1891, 1853, 1837, 1804, 1854, 1948, 2001, 2113, 2177, 2247, 2483, 2794, 2818, 2489, 2318, 2329, 2220, 2195, 2208, 2110, 2141, 2152, 2197, 2294, 2345, 2387, 2584, 2781, 3423]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2614, 2317, 2134, 2090, 2058, 1986, 1985, 1944, 1998, 2000, 2095, 2140, 2173, 2211, 2398, 2685, 3292, 2394, 2134, 1974, 1943, 1864, 1813, 1771, 1766, 1759, 1838, 1870, 1957, 2022, 2106, 2203, 2384, 2828, 2203, 1965, 1853, 1770, 1705, 1636, 1594, 1553, 1562, 1605, 1691, 1814, 1892, 1980, 2080, 2228, 2579, 2021, 1866, 1709, 1670, 1570, 1475, 1414, 1395, 1418, 1451, 1522, 1604, 1709, 1873, 1967, 2073, 2392, 1964, 1773, 1634, 1543, 1441, 1339, 1280, 1257, 1269, 1304, 1404, 1487, 1624, 1785, 1885, 2031, 2304, 1873, 1688, 1569, 1469, 1326, 1246, 1191, 1163, 1161, 1204, 1309, 1401, 1508, 1695, 1805, 1958, 2206, 1857, 1662, 1498, 1391, 1277, 1182, 1121, 1071, 1073, 1130, 1219, 1331, 1459, 1614, 1784, 1937, 2178, 1808, 1620, 1468, 1352, 1238, 1144, 1081, 1036, 1037, 1084, 1178, 1294, 1428, 1602, 1776, 1942, 2191, 1775, 1595, 1460, 1348, 1222, 1128, 1066, 1038, 1024, 1074, 1164, 1310, 1425, 1591, 1764, 1928, 2212, 1789, 1631, 1496, 1346, 1253, 1144, 1092, 1047, 1059, 1104, 1188, 1331, 1447, 1643, 1828, 2011, 2258, 1850, 1701, 1525, 1402, 1275, 1188, 1120, 1090, 1108, 1158, 1234, 1364, 1516, 1724, 1869, 2024, 2268, 1920, 1729, 1613, 1477, 1371, 1269, 1212, 1169, 1200, 1245, 1329, 1470, 1610, 1815, 1972, 2121, 2395, 1975, 1817, 1702, 1586, 1483, 1380, 1322, 1288, 1320, 1367, 1459, 1597, 1764, 1956, 2116, 2258, 2543, 2107, 1972, 1836, 1704, 1601, 1500, 1485, 1432, 1458, 1503, 1600, 1775, 1916, 2116, 2237, 2384, 2732, 2309, 2071, 1986, 1860, 1788, 1696, 1648, 1643, 1635, 1728, 1830, 1958, 2103, 2260, 2398, 2582, 2946, 2534, 2234, 2116, 2049, 1994, 1908, 1888, 1861, 1868, 1943, 2075, 2216, 2339, 2455, 2565, 2779, 3248, 2863, 2526, 2336, 2281, 2209, 2203, 2118, 2142, 2154, 2229, 2365, 2465, 2526, 2714, 2816, 3216, 3791]
| },
| "lsc_samples_blue": {
| "uCoeff": [2363, 2119, 1956, 1878, 1825, 1868, 1846, 1780, 1799, 1824, 1831, 1881, 1881, 1927, 2026, 2308, 2724, 2043, 1904, 1835, 1750, 1724, 1682, 1626, 1602, 1626, 1644, 1680, 1719, 1742, 1820, 1859, 2035, 2412, 1941, 1773, 1711, 1620, 1596, 1509, 1483, 1467, 1468, 1495, 1527, 1584, 1657, 1710, 1745, 1860, 2147, 1807, 1673, 1598, 1536, 1467, 1395, 1351, 1319, 1309, 1362, 1388, 1462, 1548, 1603, 1691, 1782, 2049, 1711, 1585, 1510, 1419, 1365, 1258, 1250, 1210, 1222, 1250, 1297, 1363, 1431, 1544, 1612, 1686, 1904, 1622, 1536, 1464, 1342, 1272, 1206, 1169, 1158, 1151, 1158, 1197, 1282, 1363, 1453, 1553, 1669, 1879, 1624, 1490, 1404, 1295, 1229, 1175, 1110, 1071, 1072, 1092, 1154, 1232, 1325, 1417, 1525, 1664, 1820, 1594, 1495, 1377, 1262, 1190, 1123, 1062, 1039, 1024, 1068, 1127, 1216, 1288, 1406, 1523, 1619, 1832, 1579, 1475, 1380, 1264, 1185, 1107, 1066, 1034, 1024, 1042, 1114, 1195, 1279, 1412, 1551, 1639, 1819, 1657, 1515, 1395, 1292, 1210, 1114, 1086, 1059, 1054, 1085, 1134, 1235, 1325, 1468, 1580, 1680, 1869, 1658, 1542, 1437, 1319, 1225, 1158, 1133, 1124, 1096, 1143, 1170, 1280, 1391, 1521, 1635, 1760, 2015, 1689, 1585, 1507, 1395, 1305, 1233, 1187, 1188, 1172, 1208, 1275, 1367, 1446, 1586, 1664, 1834, 1984, 1789, 1708, 1591, 1511, 1413, 1310, 1282, 1254, 1274, 1306, 1380, 1462, 1564, 1706, 1842, 1939, 2133, 1923, 1770, 1693, 1606, 1495, 1457, 1411, 1365, 1392, 1446, 1511, 1607, 1738, 1839, 1960, 2048, 2277, 2012, 1911, 1829, 1725, 1703, 1624, 1560, 1571, 1551, 1603, 1687, 1744, 1866, 1952, 2037, 2232, 2527, 2308, 2059, 1942, 1866, 1838, 1810, 1787, 1753, 1783, 1819, 1908, 1962, 2087, 2116, 2190, 2394, 2743, 2552, 2265, 2132, 2090, 2023, 2031, 2026, 1983, 2026, 2040, 2107, 2247, 2271, 2360, 2497, 2728, 3149]
| }
| }, {
| "name": "1600x1200_GRAY_0",
| "resolution": "1600x1200",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }],
| "tableAll_len": 15
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lumaDetect": {
| "luma_detect_en": 1,
| "fixed_times": 0,
| "mutation_threshold": 0.0002,
| "mutation_threshold_level2": 1000
| },
| "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-07, 1.27247e-10]
| }
| },
| "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.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
| }
| },
| "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": [0.7957, 1.7767],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.2966, 1.7046],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.382, 1.4216],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.334, 1.1884],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.4504, 1.117],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.6561, 1.8623],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.1943, 1.6465],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 15.5],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.774, -0.2721, -0.5019, -0.6506, 2.0366, -0.386, -0.6102, -1.7724, 3.3826],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.3303, 0.0345, -0.3649, -0.4636, 1.7444, -0.2808, -0.3588, -1.0736, 2.4324],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.3067, -1.1405, -0.1661, -0.4934, 1.7649, -0.2715, -0.1811, -1.0852, 2.2663],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.8027, -0.6964, -0.1063, -0.2691, 1.4546, -0.1855, -0.0133, -0.6535, 1.6668],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.4513, -1.398, -0.0534, -0.445, 1.9105, -0.4655, -0.103, -1.0428, 2.1459],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.9307, -0.8835, -0.0472, -0.2124, 1.5658, -0.3534, 0.0746, -0.6185, 1.5439],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.92, -0.7819, -0.1381, -0.3625, 1.8596, -0.4971, -0.0604, -0.771, 1.8314],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.5101, -0.3793, -0.1308, -0.1788, 1.5763, -0.3975, 0.0903, -0.3695, 1.2792],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.996, -0.8714, -0.1245, -0.3585, 1.8968, -0.5383, -0.0513, -0.6768, 1.7281],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.573, -0.444, -0.129, -0.1692, 1.6054, -0.4362, 0.1068, -0.2982, 1.1914],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.5304, 0.0291, -0.5595, -0.9163, 1.6163, 0.3001, -1.7861, -1.7557, 4.5418],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.016, 0.2326, -0.2485, -0.6419, 1.3825, 0.2594, -1.1349, -1.0865, 3.2213],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [2.0113, -0.785, -0.2263, -0.4287, 1.7364, -0.3076, -0.1834, -1.063, 2.2464],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.571, -0.4094, -0.1616, -0.2345, 1.4575, -0.223, -0.028, -0.6133, 1.6413],
| "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
| }
| },
| "af": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_NOT_SET",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "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",
| "FullSteps": 9,
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptiveSteps": 9,
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "TrigThers": 0.075,
| "LumaTrigThers": 0,
| "StableThers": 0.02,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 50,
| "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,
| "FlatValue": 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
| },
| "vcmcfg": {
| "start_current": -1,
| "rated_current": -1,
| "step_mode": -1,
| "extra_delay": 0
| },
| "measiso_cfg": [{
| "iso": 50,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 100,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 1600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 3200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 6400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 12800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 25600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 51200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 102400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 204800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }],
| "zoomfocus_tbl": {
| "tbl_len": 0,
| "focal_length": [],
| "focal_length_len": 0,
| "zoom_pos": [],
| "zoom_pos_len": 0,
| "focus_infpos": [],
| "focus_infpos_len": 0,
| "focus_macropos": [],
| "focus_macropos_len": 0
| }
| }
| },
| "thumbnails": {
| "param": {
| "thumbnail_configs": [{
| "owner_cookies": 0,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0002",
| "width_intfactor": 2,
| "height_intfactor": 2,
| "buffer_count": 0
| }, {
| "owner_cookies": 1,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0004",
| "width_intfactor": 4,
| "height_intfactor": 4,
| "buffer_count": 0
| }, {
| "owner_cookies": 2,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\b",
| "width_intfactor": 8,
| "height_intfactor": 8,
| "buffer_count": 0
| }],
| "thumbnail_configs_len": 3
| }
| },
| "bayernr_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": [391, 350, 312, 278, 220, 180, 158, 152, 155, 161, 165, 164, 156, 141, 120, 95]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [581, 517, 457, 403, 312, 248, 215, 209, 217, 229, 236, 235, 223, 200, 168, 133]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [895, 785, 683, 589, 430, 316, 262, 265, 296, 327, 347, 348, 329, 289, 231, 167]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1045, 935, 835, 745, 599, 503, 459, 453, 467, 484, 491, 483, 458, 413, 353, 286]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1371, 1252, 1145, 1048, 889, 777, 708, 675, 664, 660, 654, 637, 605, 557, 494, 424]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [276, 252, 230, 210, 180, 159, 148, 145, 144, 145, 144, 140, 132, 122, 108, 96]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [546, 479, 417, 360, 264, 195, 162, 163, 180, 197, 207, 206, 193, 168, 134, 102]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [818, 710, 609, 516, 356, 239, 188, 204, 246, 283, 303, 302, 280, 236, 175, 115]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1134, 984, 843, 714, 490, 330, 264, 291, 351, 402, 430, 429, 397, 336, 249, 164]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1197, 1054, 922, 802, 603, 471, 415, 420, 453, 485, 501, 493, 460, 401, 322, 247]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.15
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.25
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.35
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.45
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.05
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.1
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.15
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.2
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.3
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.4
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.55
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.6
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 100,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 200,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 800,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 3200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "iso": 6400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 25600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 51200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 102400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 204800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.9,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.8
| }, {
| "iso": 100,
| "filter_strength": 0.8,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.75
| }, {
| "iso": 200,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.7
| }, {
| "iso": 400,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.65
| }, {
| "iso": 800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.6
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.55
| }, {
| "iso": 3200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.5
| }, {
| "iso": 6400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 25600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 51200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 102400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 204800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v1": {
| "Version": "",
| "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,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 50,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.1,
| "hf_denoise_strength": 8,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 14,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.35,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 18,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.45,
| "hf_denoise_strength": 20,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.6,
| "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.2,
| "thumb_denoise_strength": 14,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.55,
| "hf_denoise_strength": 28,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 32,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 18,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 25,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 44,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 30,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 48,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 35,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 52,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-2.3359e-12, 2.15326e-08, -6.89157e-05, 0.0828386, 5.01956],
| "ynr_ci_l": 0.252041,
| "ynr_ci_h": 0.189067
| }, {
| "iso": 100,
| "sigma_curve": [-2.01056e-12, 1.89942e-08, -6.24518e-05, 0.0769605, 6.65575],
| "ynr_ci_l": 0.281195,
| "ynr_ci_h": 0.194317
| }, {
| "iso": 200,
| "sigma_curve": [-3.84223e-12, 3.62511e-08, -0.000119012, 0.145059, 17.0765],
| "ynr_ci_l": 0.242871,
| "ynr_ci_h": 0.178018
| }, {
| "iso": 400,
| "sigma_curve": [-5.61752e-12, 5.17576e-08, -0.00016553, 0.194588, 33.9041],
| "ynr_ci_l": 0.255876,
| "ynr_ci_h": 0.175908
| }, {
| "iso": 800,
| "sigma_curve": [-7.94638e-12, 7.3318e-08, -0.000234375, 0.273739, 49.8382],
| "ynr_ci_l": 0.240823,
| "ynr_ci_h": 0.1698
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.240823,
| "ynr_ci_h": 0.1698
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.240823,
| "ynr_ci_h": 0.1698
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.240823,
| "ynr_ci_h": 0.1698
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
| "ynr_ci_l": 0.231174,
| "ynr_ci_h": 0.244561
| }, {
| "iso": 100,
| "sigma_curve": [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
| "ynr_ci_l": 0.243867,
| "ynr_ci_h": 0.248972
| }, {
| "iso": 200,
| "sigma_curve": [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
| "ynr_ci_l": 0.210067,
| "ynr_ci_h": 0.217358
| }, {
| "iso": 400,
| "sigma_curve": [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
| "ynr_ci_l": 0.209144,
| "ynr_ci_h": 0.209083
| }, {
| "iso": 800,
| "sigma_curve": [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }],
| "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,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.2,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "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,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.85,
| "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,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 1,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.5,
| "low_dist_adj": 7,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 90,
| "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,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "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,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.35,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.05,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.45,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.35,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.5,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.45,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.25,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.15,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.1,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 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_v3": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.45,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.45,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.5,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.55,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.55,
| "bf_add": 9,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.6,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.65,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 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.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.4,
| "pbf_ratio": 1,
| "pbf_add": 18,
| "gaus_ratio": 0.7,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.7,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 0.75,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 0.75,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 0.8,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 0.85,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 0.85,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 0.9,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 33,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 36,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 36,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.45,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 6,
| "gaus_ratio": 0.55,
| "sharp_ratio": 9,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.9,
| "pbf_ratio": 0.55,
| "pbf_add": 8,
| "gaus_ratio": 0.6,
| "sharp_ratio": 8,
| "bf_gain": 0.9,
| "bf_ratio": 0.55,
| "bf_add": 8,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.55,
| "pbf_add": 10,
| "gaus_ratio": 0.65,
| "sharp_ratio": 7,
| "bf_gain": 1,
| "bf_ratio": 0.6,
| "bf_add": 10,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.1,
| "pbf_ratio": 0.6,
| "pbf_add": 12,
| "gaus_ratio": 0.7,
| "sharp_ratio": 6,
| "bf_gain": 1.1,
| "bf_ratio": 0.65,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 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.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.6,
| "pbf_add": 14,
| "gaus_ratio": 0.75,
| "sharp_ratio": 5,
| "bf_gain": 1.2,
| "bf_ratio": 0.7,
| "bf_add": 14,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.65,
| "pbf_add": 16,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.75,
| "bf_add": 16,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.4,
| "pbf_ratio": 0.7,
| "pbf_add": 18,
| "gaus_ratio": 0.85,
| "sharp_ratio": 3,
| "bf_gain": 1.4,
| "bf_ratio": 0.8,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.75,
| "pbf_add": 20,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.5,
| "bf_ratio": 0.85,
| "bf_add": 20,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.6,
| "pbf_ratio": 0.8,
| "pbf_add": 22,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.6,
| "bf_ratio": 0.9,
| "bf_add": 22,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.7,
| "pbf_ratio": 0.8,
| "pbf_add": 24,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.8,
| "pbf_ratio": 0.9,
| "pbf_add": 28,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 26,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "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_algos_len": 0
| }
| }
| }
|
|