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, 12, 1024, 0, 1, 1024, 12288],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 12
| },
| "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": 1.6,
| "EFL": 5.2,
| "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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 6, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 6, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1],
| "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.35,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.35,
| "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, 12, 12],
| "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.06, 0.24, 0.48, 0.72, 0.96],
| "ExpLevel_len": 6,
| "DySetpoint": [55, 55, 55, 55, 55, 55],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.096, 0.204, 0.42, 0.6, 0.78, 0.96],
| "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.949819, 1, 1, 2.12004],
| "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_4X4",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [3],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [6],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [3],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [6],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333313, 0.333394, 0.333293],
| "rotationMat": [-0.655762, 0.754967, -0.113302, 0.754967, 0.655762, 0.272569, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.046875, 0.138672, 0.015625, 27.0625, -0.0898438, 0.015625, 0.0644531, 132.625, 0.0371094, -0.0664062, 0.0585938, 115.438, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [242, 245, 243, 236]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [229, 231, 252, 242]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-531, -401, -74, -126]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1312, -1242, 16, -4]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-990, -860, -48, -62]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-190, -169, -129, -140]
| }, {
| "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.949819, 1, 1, 2.12004],
| "uvRegion": {
| "u": [122.5, 67, 67.5, 122.5],
| "v": [130, 153.5, 129, 127.5]
| },
| "xyRegion": {
| "normal": [-0.990887, -0.609488, 0.0103674, -0.0767366],
| "big": [-0.990887, -0.608336, 0.018459, -0.151941]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 137.562, 115.5, 185.125, 91.8125, 116.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.42406, 1, 1, 1.97955],
| "uvRegion": {
| "u": [68, 69.5, 124, 123],
| "v": [103.5, 83.5, 125, 126]
| },
| "xyRegion": {
| "normal": [-0.608336, -0.398624, -0.123382, -0.151941],
| "big": [-0.608336, -0.399776, -0.121954, -0.172408]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 134.875, 116.5, 189.875, 117.5, 106.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.585, 1, 1, 1.57007],
| "uvRegion": {
| "u": [68.5, 81.5, 126, 125],
| "v": [86.5, 46.5, 124, 126]
| },
| "xyRegion": {
| "normal": [-0.399776, -0.0564018, -0.0334226, -0.151941],
| "big": [-0.3992, -0.0569779, 0.019411, -0.163841]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 133.25, 116.062, 190.938, 131.25, 111.188],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.50541, 1, 1, 1.32184],
| "uvRegion": {
| "u": [79, 93, 127.5, 126],
| "v": [52.5, 21, 124, 124]
| },
| "xyRegion": {
| "normal": [-0.0569779, 0.0847505, 0.0484456, -0.117671],
| "big": [-0.0569779, 0.0837423, 0.0667708, -0.143849]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.52, 4, 4],
| "lineVector": [10, 133.062, 115.875, 191, 135.438, 117.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.64725, 1, 1, 1.24064],
| "uvRegion": {
| "u": [128, 127.5, 92, 110],
| "v": [122.5, 124, 23.5, 4.5]
| },
| "xyRegion": {
| "normal": [0.0847505, 0.368207, -0.000104126, -0.0576975],
| "big": [0.0852546, 0.385491, 0.00846348, -0.0635877]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.375, 115.812, 190.75, 141.625, 117.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.801154, 1, 1, 2.22713],
| "uvRegion": {
| "u": [122.5, 69.5, 67, 122.5],
| "v": [136, 175, 148, 130.5]
| },
| "xyRegion": {
| "normal": [-1.32447, -0.990887, 0.000847827, -0.0648371],
| "big": [-1.34751, -0.990311, 0.0198869, -0.137662]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 138.75, 114.812, 181.188, 80.1875, 121.375],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.34677, 1, 1, 1.97658],
| "uvRegion": {
| "u": [122.5, 67.5, 69, 123.5],
| "v": [127.5, 129.5, 93, 125]
| },
| "xyRegion": {
| "normal": [-0.608912, -0.400352, -0.0353265, -0.12243],
| "big": [-0.608336, -0.399776, -0.0100997, -0.122906]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 135.438, 116.25, 189.625, 114.438, 107.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.42406, 1, 1, 1.97955],
| "defaultDayGainHigh": [1.585, 1, 1, 1.57007],
| "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.4,
| "dFMax": 0.7,
| "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, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 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, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 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, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 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": [50],
| "low_len": 1,
| "high": [100],
| "high_len": 1
| }
| },
| "defaultNightGain": [0.949819, 1, 1, 2.12004],
| "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.001,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [100],
| "forBigType_len": 1,
| "forExtraType": [100],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 18.0268,
| "meanH": 21.7908
| }, {
| "index": 13,
| "meanC": 19.6154,
| "meanH": -73.4034
| }, {
| "index": 5,
| "meanC": 9.39422,
| "meanH": -62.5076
| }, {
| "index": 10,
| "meanC": 10.0791,
| "meanH": -41.4961
| }, {
| "index": 14,
| "meanC": 14.6509,
| "meanH": 148.451
| }, {
| "index": 16,
| "meanC": 20.1902,
| "meanH": 91.7794
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 0.949819,
| "BGain": 2.12004
| }, {
| "name": "TL84",
| "RGain": 1.585,
| "BGain": 1.57007
| }, {
| "name": "D50",
| "RGain": 1.34677,
| "BGain": 1.97658
| }],
| "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": [256, 256.938, 258.125, 259.5, 260.812, 256, 256, 256, 256, 256, 256, 256, 256],
| "R_Channel_len": 13,
| "Gr_Channel": [256, 257.188, 258.125, 259.688, 260.812, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gr_Channel_len": 13,
| "Gb_Channel": [256, 257.375, 258.438, 260.5, 262.5, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gb_Channel_len": 13,
| "B_Channel": [256, 257.375, 258.438, 260.312, 263.062, 256, 256, 256, 256, 256, 256, 256, 256],
| "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": 1,
| "Single_enable": 1,
| "Double_enable": 1,
| "Triple_enable": 1,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [1, 1, 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, 600, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400],
| "fix_set": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [32, 24, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [32, 24, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [24, 16, 8, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [24, 16, 8, 6, 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": [12, 9, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [12, 9, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [16, 14, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [16, 14, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [8, 6, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [8, 6, 4, 3, 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": [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [48, 40, 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": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [20, 20, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [20, 20, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [16, 12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [16, 12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_pg_fac": [12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rnd_thr": [16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "rb_rnd_offs": [6, 5, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [6, 5, 4, 3, 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, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [32, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [48, 40, 32, 24, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_thr": [48, 40, 32, 24, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "rb_line_mad_fac": [16, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [16, 16, 12, 8, 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": [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_pg_fac": [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "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.9042, 2.1775],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.3594, 2.072],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.6353, 1.5712],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.44, 1.3914],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.5395, 1.2962],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.763, 2.2509],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.2844, 2.0785],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 8, 12],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "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_100",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4724, 3498, 2991, 2710, 2515, 2334, 2215, 2131, 2115, 2082, 2089, 2206, 2341, 2406, 2544, 2878, 3329, 4009, 3087, 2704, 2427, 2297, 2079, 1969, 1905, 1833, 1827, 1870, 2004, 2109, 2218, 2354, 2653, 3039, 3509, 2909, 2531, 2328, 2120, 1941, 1775, 1681, 1619, 1627, 1680, 1777, 1922, 2098, 2269, 2492, 2824, 3210, 2677, 2369, 2169, 1934, 1772, 1596, 1489, 1446, 1416, 1500, 1605, 1760, 1940, 2161, 2355, 2649, 3085, 2530, 2217, 2044, 1859, 1622, 1450, 1337, 1288, 1293, 1341, 1475, 1638, 1809, 2063, 2283, 2514, 2955, 2417, 2168, 1949, 1706, 1502, 1327, 1228, 1183, 1164, 1223, 1356, 1510, 1702, 1929, 2225, 2469, 2802, 2381, 2124, 1905, 1613, 1402, 1242, 1143, 1090, 1097, 1146, 1264, 1407, 1639, 1866, 2151, 2410, 2807, 2289, 2053, 1794, 1574, 1361, 1198, 1087, 1036, 1036, 1080, 1210, 1371, 1570, 1816, 2135, 2381, 2878, 2341, 2051, 1803, 1591, 1356, 1172, 1085, 1032, 1024, 1073, 1200, 1349, 1581, 1826, 2168, 2338, 2839, 2315, 2082, 1844, 1599, 1369, 1209, 1094, 1047, 1049, 1104, 1207, 1374, 1588, 1840, 2112, 2390, 2924, 2363, 2152, 1902, 1645, 1441, 1277, 1159, 1099, 1113, 1160, 1275, 1428, 1656, 1880, 2164, 2409, 3039, 2490, 2222, 2016, 1731, 1530, 1366, 1263, 1206, 1200, 1249, 1365, 1521, 1731, 1974, 2233, 2447, 3283, 2613, 2290, 2085, 1889, 1657, 1502, 1397, 1321, 1320, 1382, 1511, 1670, 1865, 2067, 2335, 2639, 3407, 2735, 2405, 2226, 2029, 1831, 1656, 1551, 1481, 1482, 1534, 1669, 1844, 2030, 2183, 2445, 2725, 3704, 3027, 2652, 2350, 2182, 2030, 1874, 1757, 1661, 1683, 1757, 1841, 2004, 2188, 2369, 2542, 2920, 4176, 3248, 2853, 2528, 2345, 2214, 2073, 1981, 1894, 1893, 1964, 2040, 2197, 2320, 2447, 2689, 3130, 5070, 3689, 3103, 2830, 2633, 2409, 2271, 2214, 2121, 2187, 2202, 2282, 2423, 2597, 2727, 3103, 3610]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3619, 2687, 2323, 2114, 1990, 1902, 1817, 1800, 1765, 1753, 1751, 1804, 1906, 1936, 2059, 2332, 2629, 3012, 2395, 2112, 1918, 1852, 1767, 1666, 1630, 1618, 1587, 1607, 1658, 1745, 1797, 1916, 2117, 2409, 2722, 2247, 1998, 1806, 1736, 1639, 1553, 1491, 1450, 1431, 1484, 1568, 1647, 1705, 1855, 2015, 2222, 2514, 2071, 1846, 1727, 1632, 1504, 1415, 1346, 1321, 1321, 1362, 1422, 1526, 1651, 1750, 1908, 2098, 2421, 1987, 1775, 1659, 1545, 1408, 1304, 1253, 1227, 1211, 1246, 1321, 1416, 1552, 1679, 1821, 1993, 2272, 1913, 1746, 1606, 1450, 1320, 1235, 1151, 1128, 1128, 1166, 1243, 1351, 1455, 1611, 1797, 1938, 2209, 1867, 1725, 1590, 1389, 1277, 1177, 1109, 1075, 1085, 1121, 1181, 1299, 1429, 1583, 1754, 1920, 2166, 1854, 1684, 1517, 1370, 1243, 1128, 1079, 1036, 1041, 1074, 1148, 1266, 1377, 1546, 1728, 1896, 2171, 1851, 1675, 1538, 1381, 1234, 1135, 1070, 1024, 1042, 1066, 1165, 1254, 1383, 1533, 1744, 1912, 2194, 1859, 1685, 1543, 1396, 1249, 1155, 1075, 1044, 1051, 1088, 1157, 1266, 1407, 1561, 1752, 1886, 2281, 1936, 1768, 1590, 1455, 1300, 1194, 1127, 1092, 1081, 1121, 1187, 1289, 1432, 1604, 1778, 1929, 2316, 1988, 1768, 1650, 1512, 1365, 1263, 1193, 1151, 1144, 1181, 1259, 1377, 1487, 1639, 1821, 1987, 2502, 2049, 1857, 1717, 1604, 1447, 1361, 1304, 1260, 1241, 1280, 1355, 1475, 1566, 1729, 1920, 2079, 2637, 2180, 1935, 1804, 1712, 1584, 1468, 1420, 1379, 1349, 1407, 1455, 1599, 1660, 1782, 1947, 2191, 2898, 2394, 2104, 1943, 1848, 1691, 1610, 1552, 1504, 1510, 1542, 1593, 1674, 1797, 1905, 2044, 2358, 3233, 2538, 2210, 2025, 1929, 1828, 1735, 1694, 1670, 1667, 1678, 1731, 1826, 1877, 1951, 2203, 2513, 3956, 2911, 2487, 2219, 2108, 1987, 1904, 1834, 1805, 1793, 1819, 1901, 1982, 1991, 2114, 2410, 2820]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3825, 2897, 2415, 2154, 2068, 1949, 1843, 1803, 1826, 1778, 1786, 1876, 1945, 1989, 2061, 2362, 2652, 3122, 2501, 2174, 2015, 1902, 1801, 1734, 1658, 1622, 1596, 1619, 1722, 1794, 1879, 1947, 2129, 2426, 2868, 2333, 2047, 1897, 1810, 1683, 1598, 1525, 1469, 1478, 1510, 1556, 1645, 1763, 1890, 2031, 2293, 2584, 2157, 1948, 1785, 1707, 1575, 1449, 1381, 1350, 1347, 1360, 1431, 1535, 1647, 1776, 1954, 2109, 2446, 2056, 1862, 1715, 1619, 1456, 1345, 1262, 1229, 1224, 1247, 1355, 1445, 1559, 1710, 1875, 2033, 2336, 1960, 1796, 1674, 1522, 1376, 1263, 1184, 1143, 1140, 1181, 1247, 1362, 1495, 1641, 1798, 1951, 2281, 1920, 1759, 1611, 1452, 1294, 1183, 1105, 1071, 1077, 1117, 1198, 1307, 1452, 1601, 1751, 1991, 2235, 1886, 1718, 1558, 1398, 1271, 1154, 1086, 1027, 1037, 1076, 1157, 1259, 1413, 1560, 1757, 1936, 2298, 1909, 1701, 1560, 1417, 1240, 1132, 1078, 1028, 1024, 1056, 1152, 1241, 1408, 1555, 1755, 1918, 2261, 1889, 1730, 1575, 1404, 1260, 1132, 1076, 1038, 1038, 1074, 1154, 1252, 1411, 1556, 1752, 1898, 2281, 1921, 1746, 1588, 1407, 1283, 1191, 1101, 1066, 1074, 1097, 1162, 1284, 1445, 1590, 1766, 1912, 2332, 1952, 1769, 1635, 1479, 1325, 1228, 1154, 1125, 1123, 1160, 1219, 1315, 1469, 1610, 1784, 1950, 2492, 2035, 1810, 1674, 1559, 1426, 1308, 1258, 1210, 1203, 1219, 1314, 1415, 1538, 1679, 1875, 2033, 2605, 2163, 1900, 1747, 1660, 1513, 1412, 1326, 1311, 1295, 1335, 1419, 1536, 1617, 1735, 1922, 2148, 2869, 2356, 2025, 1869, 1740, 1628, 1555, 1488, 1421, 1426, 1435, 1526, 1619, 1732, 1844, 1986, 2242, 3147, 2497, 2162, 1955, 1838, 1727, 1676, 1596, 1555, 1556, 1581, 1674, 1724, 1798, 1898, 2112, 2428, 3838, 2818, 2413, 2111, 1990, 1826, 1796, 1753, 1711, 1718, 1748, 1779, 1878, 1929, 2057, 2349, 2734]
| },
| "lsc_samples_blue": {
| "uCoeff": [3940, 2751, 2319, 2094, 2088, 1892, 1833, 1825, 1801, 1750, 1722, 1849, 1880, 1874, 1966, 2380, 2667, 3176, 2386, 2060, 1947, 1853, 1731, 1674, 1632, 1595, 1564, 1560, 1641, 1700, 1743, 1867, 2100, 2428, 2784, 2258, 1984, 1853, 1794, 1610, 1568, 1489, 1461, 1433, 1479, 1525, 1637, 1690, 1839, 1966, 2229, 2452, 2083, 1861, 1757, 1645, 1538, 1434, 1363, 1312, 1318, 1351, 1394, 1498, 1627, 1767, 1872, 2145, 2489, 2000, 1755, 1675, 1602, 1422, 1309, 1247, 1247, 1199, 1235, 1337, 1441, 1543, 1704, 1852, 2066, 2269, 1884, 1762, 1638, 1502, 1366, 1229, 1159, 1136, 1127, 1170, 1234, 1353, 1465, 1610, 1775, 1996, 2240, 1882, 1735, 1598, 1418, 1267, 1179, 1094, 1077, 1072, 1115, 1198, 1326, 1444, 1588, 1756, 1911, 2172, 1845, 1662, 1524, 1369, 1255, 1123, 1071, 1024, 1035, 1060, 1147, 1272, 1355, 1535, 1718, 1887, 2164, 1853, 1663, 1510, 1406, 1232, 1119, 1059, 1039, 1031, 1075, 1146, 1263, 1391, 1511, 1782, 1949, 2156, 1843, 1662, 1552, 1361, 1243, 1127, 1059, 1034, 1030, 1079, 1142, 1272, 1379, 1548, 1709, 1889, 2216, 1833, 1713, 1559, 1404, 1280, 1167, 1099, 1049, 1061, 1097, 1160, 1289, 1405, 1562, 1732, 1928, 2243, 1913, 1653, 1585, 1451, 1309, 1228, 1148, 1116, 1121, 1154, 1232, 1323, 1436, 1628, 1739, 1932, 2425, 1957, 1734, 1637, 1553, 1393, 1294, 1254, 1199, 1196, 1225, 1303, 1414, 1528, 1616, 1828, 2092, 2589, 2037, 1755, 1672, 1652, 1485, 1376, 1348, 1295, 1272, 1317, 1376, 1530, 1580, 1711, 1841, 2123, 2863, 2278, 1961, 1825, 1709, 1605, 1496, 1481, 1412, 1426, 1447, 1501, 1572, 1711, 1810, 1918, 2248, 3148, 2343, 2081, 1886, 1768, 1708, 1638, 1575, 1551, 1568, 1567, 1623, 1708, 1757, 1858, 2028, 2350, 3788, 2796, 2405, 2131, 2049, 1899, 1797, 1783, 1733, 1756, 1724, 1846, 1909, 1958, 2053, 2330, 2861]
| }
| }, {
| "name": "1600x1200_A_70",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3614, 2871, 2565, 2397, 2277, 2152, 2067, 2003, 1992, 1960, 1956, 2041, 2131, 2150, 2215, 2408, 2638, 3196, 2614, 2380, 2201, 2125, 1958, 1875, 1826, 1763, 1755, 1786, 1892, 1963, 2026, 2098, 2279, 2490, 2885, 2516, 2272, 2146, 1996, 1856, 1717, 1637, 1581, 1586, 1630, 1708, 1820, 1948, 2055, 2186, 2372, 2699, 2361, 2162, 2030, 1848, 1717, 1563, 1467, 1427, 1397, 1473, 1562, 1690, 1829, 1986, 2100, 2269, 2633, 2264, 2051, 1935, 1793, 1588, 1432, 1327, 1280, 1284, 1328, 1449, 1589, 1725, 1918, 2060, 2187, 2553, 2186, 2022, 1861, 1660, 1480, 1318, 1224, 1180, 1161, 1217, 1341, 1477, 1638, 1814, 2026, 2168, 2446, 2167, 1993, 1829, 1579, 1388, 1238, 1142, 1090, 1096, 1144, 1255, 1385, 1586, 1766, 1974, 2132, 2458, 2096, 1935, 1732, 1545, 1351, 1195, 1087, 1036, 1036, 1079, 1204, 1353, 1526, 1726, 1966, 2116, 2519, 2142, 1935, 1741, 1562, 1346, 1170, 1085, 1032, 1024, 1072, 1195, 1332, 1537, 1736, 1995, 2083, 2484, 2118, 1961, 1778, 1568, 1358, 1206, 1094, 1047, 1049, 1103, 1201, 1355, 1542, 1747, 1946, 2123, 2543, 2152, 2017, 1826, 1609, 1426, 1272, 1158, 1098, 1112, 1157, 1266, 1404, 1602, 1778, 1985, 2132, 2619, 2247, 2069, 1922, 1684, 1507, 1356, 1258, 1203, 1197, 1242, 1350, 1488, 1664, 1853, 2033, 2151, 2788, 2332, 2114, 1972, 1820, 1621, 1482, 1385, 1312, 1310, 1367, 1483, 1619, 1775, 1922, 2103, 2285, 2850, 2408, 2192, 2080, 1934, 1772, 1619, 1526, 1460, 1460, 1505, 1622, 1766, 1908, 2005, 2173, 2328, 3031, 2609, 2372, 2164, 2051, 1937, 1809, 1707, 1620, 1638, 1701, 1766, 1893, 2025, 2138, 2225, 2444, 3318, 2738, 2501, 2286, 2167, 2078, 1969, 1895, 1818, 1815, 1871, 1924, 2039, 2111, 2173, 2307, 2556, 3856, 3014, 2653, 2495, 2376, 2216, 2116, 2077, 1998, 2053, 2055, 2107, 2200, 2305, 2358, 2576, 2834]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2841, 2266, 2042, 1912, 1836, 1780, 1718, 1710, 1682, 1669, 1661, 1695, 1765, 1767, 1835, 2001, 2148, 2471, 2081, 1902, 1774, 1740, 1682, 1602, 1575, 1566, 1536, 1549, 1586, 1648, 1672, 1744, 1866, 2032, 2296, 1992, 1831, 1697, 1655, 1582, 1512, 1459, 1422, 1403, 1449, 1518, 1576, 1610, 1712, 1808, 1921, 2166, 1871, 1719, 1641, 1574, 1469, 1392, 1330, 1308, 1307, 1342, 1393, 1478, 1575, 1638, 1739, 1847, 2115, 1817, 1670, 1591, 1504, 1386, 1292, 1246, 1221, 1205, 1237, 1304, 1385, 1496, 1588, 1680, 1780, 2012, 1766, 1654, 1551, 1421, 1307, 1229, 1148, 1126, 1126, 1162, 1233, 1329, 1414, 1536, 1669, 1748, 1972, 1734, 1641, 1541, 1368, 1268, 1174, 1108, 1075, 1084, 1119, 1175, 1283, 1394, 1516, 1639, 1741, 1943, 1727, 1609, 1477, 1352, 1236, 1126, 1079, 1036, 1041, 1073, 1144, 1253, 1348, 1486, 1621, 1726, 1949, 1726, 1602, 1497, 1363, 1228, 1134, 1070, 1024, 1042, 1065, 1161, 1242, 1355, 1476, 1635, 1740, 1965, 1732, 1609, 1501, 1376, 1242, 1153, 1075, 1044, 1051, 1087, 1153, 1253, 1376, 1500, 1641, 1717, 2029, 1792, 1679, 1541, 1430, 1290, 1191, 1126, 1092, 1080, 1119, 1181, 1274, 1397, 1535, 1659, 1748, 2047, 1828, 1673, 1591, 1479, 1350, 1256, 1190, 1149, 1142, 1176, 1248, 1353, 1443, 1561, 1689, 1786, 2178, 1868, 1741, 1643, 1558, 1423, 1347, 1295, 1253, 1234, 1269, 1336, 1439, 1508, 1631, 1762, 1848, 2260, 1959, 1795, 1709, 1647, 1543, 1442, 1401, 1363, 1333, 1385, 1423, 1545, 1583, 1665, 1770, 1918, 2427, 2108, 1918, 1814, 1755, 1629, 1565, 1516, 1473, 1477, 1502, 1541, 1600, 1689, 1754, 1831, 2023, 2631, 2191, 1982, 1864, 1807, 1736, 1664, 1634, 1614, 1609, 1613, 1650, 1718, 1740, 1772, 1933, 2108, 3076, 2433, 2170, 1997, 1935, 1853, 1794, 1740, 1717, 1704, 1720, 1779, 1829, 1812, 1878, 2059, 2281]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2985, 2423, 2114, 1945, 1901, 1820, 1741, 1713, 1736, 1691, 1691, 1757, 1798, 1810, 1836, 2023, 2164, 2551, 2162, 1952, 1855, 1784, 1712, 1664, 1601, 1570, 1544, 1560, 1642, 1690, 1741, 1769, 1876, 2044, 2405, 2060, 1871, 1775, 1721, 1622, 1554, 1491, 1440, 1447, 1473, 1507, 1575, 1660, 1741, 1821, 1974, 2220, 1940, 1806, 1692, 1642, 1535, 1424, 1364, 1335, 1331, 1341, 1401, 1487, 1571, 1660, 1776, 1856, 2134, 1874, 1745, 1641, 1572, 1431, 1332, 1254, 1223, 1218, 1238, 1336, 1412, 1502, 1615, 1725, 1812, 2063, 1805, 1697, 1612, 1489, 1360, 1256, 1181, 1141, 1138, 1176, 1237, 1339, 1450, 1562, 1670, 1758, 2029, 1779, 1671, 1560, 1427, 1284, 1180, 1104, 1071, 1076, 1115, 1192, 1290, 1415, 1532, 1637, 1797, 1998, 1755, 1639, 1515, 1378, 1263, 1152, 1086, 1027, 1037, 1075, 1153, 1247, 1382, 1499, 1645, 1758, 2051, 1775, 1625, 1518, 1397, 1234, 1131, 1078, 1028, 1024, 1056, 1148, 1230, 1378, 1495, 1645, 1745, 2019, 1757, 1649, 1530, 1384, 1253, 1130, 1076, 1038, 1038, 1073, 1150, 1240, 1380, 1495, 1641, 1727, 2029, 1780, 1660, 1539, 1385, 1274, 1188, 1100, 1066, 1073, 1096, 1157, 1269, 1409, 1522, 1649, 1734, 2060, 1798, 1674, 1577, 1448, 1311, 1222, 1151, 1123, 1121, 1156, 1210, 1295, 1427, 1535, 1658, 1757, 2170, 1856, 1701, 1605, 1517, 1403, 1296, 1250, 1205, 1197, 1211, 1297, 1384, 1483, 1588, 1725, 1812, 2236, 1945, 1765, 1659, 1600, 1477, 1390, 1311, 1298, 1282, 1317, 1390, 1488, 1545, 1626, 1750, 1885, 2406, 2078, 1853, 1751, 1659, 1572, 1514, 1457, 1395, 1399, 1403, 1480, 1552, 1633, 1703, 1785, 1936, 2569, 2159, 1943, 1805, 1728, 1647, 1611, 1544, 1509, 1508, 1526, 1600, 1630, 1673, 1730, 1862, 2046, 2994, 2364, 2112, 1910, 1836, 1714, 1700, 1669, 1634, 1638, 1658, 1674, 1742, 1761, 1833, 2013, 2221]
| },
| "lsc_samples_blue": {
| "uCoeff": [3065, 2314, 2039, 1896, 1918, 1771, 1732, 1732, 1714, 1666, 1635, 1734, 1743, 1716, 1762, 2037, 2174, 2590, 2074, 1860, 1798, 1741, 1650, 1610, 1577, 1545, 1515, 1507, 1571, 1609, 1627, 1705, 1853, 2046, 2342, 2000, 1819, 1737, 1707, 1556, 1526, 1458, 1433, 1405, 1444, 1479, 1568, 1597, 1699, 1769, 1926, 2118, 1880, 1732, 1668, 1586, 1500, 1410, 1347, 1299, 1304, 1332, 1367, 1453, 1554, 1653, 1710, 1883, 2168, 1827, 1653, 1606, 1556, 1399, 1297, 1240, 1241, 1193, 1226, 1319, 1408, 1488, 1609, 1706, 1837, 2010, 1742, 1668, 1580, 1470, 1351, 1223, 1156, 1134, 1125, 1166, 1225, 1331, 1423, 1535, 1651, 1794, 1996, 1747, 1650, 1549, 1395, 1258, 1176, 1093, 1077, 1071, 1113, 1192, 1308, 1408, 1521, 1641, 1733, 1948, 1720, 1589, 1484, 1351, 1248, 1122, 1071, 1024, 1035, 1059, 1143, 1259, 1328, 1477, 1612, 1718, 1943, 1728, 1591, 1471, 1386, 1226, 1118, 1059, 1039, 1031, 1074, 1142, 1251, 1362, 1456, 1668, 1770, 1935, 1718, 1589, 1509, 1343, 1236, 1125, 1059, 1034, 1030, 1078, 1138, 1259, 1350, 1488, 1605, 1720, 1977, 1706, 1631, 1513, 1382, 1271, 1164, 1098, 1049, 1061, 1096, 1155, 1274, 1372, 1498, 1621, 1747, 1989, 1766, 1573, 1532, 1422, 1296, 1222, 1146, 1114, 1119, 1150, 1223, 1303, 1397, 1551, 1621, 1743, 2118, 1792, 1635, 1572, 1511, 1372, 1283, 1247, 1194, 1190, 1217, 1287, 1383, 1474, 1534, 1686, 1858, 2223, 1843, 1642, 1593, 1593, 1451, 1356, 1332, 1283, 1260, 1300, 1350, 1482, 1512, 1605, 1685, 1866, 2401, 2016, 1800, 1713, 1631, 1551, 1460, 1450, 1387, 1399, 1414, 1457, 1510, 1615, 1675, 1731, 1941, 2570, 2040, 1877, 1747, 1668, 1630, 1577, 1525, 1505, 1519, 1513, 1555, 1616, 1639, 1697, 1798, 1989, 2959, 2347, 2106, 1926, 1885, 1777, 1701, 1695, 1653, 1671, 1637, 1732, 1768, 1785, 1830, 1999, 2310]
| }
| }, {
| "name": "1600x1200_CWF_100",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3559, 2775, 2430, 2100, 2007, 1909, 1832, 1763, 1721, 1791, 1774, 1822, 1898, 1968, 2093, 2279, 2611, 3098, 2509, 2168, 1975, 1831, 1726, 1673, 1612, 1567, 1559, 1617, 1646, 1753, 1830, 1944, 2082, 2410, 2769, 2282, 2005, 1852, 1736, 1643, 1536, 1490, 1419, 1450, 1457, 1535, 1608, 1740, 1845, 1996, 2226, 2598, 2129, 1897, 1766, 1601, 1518, 1425, 1352, 1349, 1336, 1356, 1430, 1513, 1626, 1744, 1907, 2103, 2372, 2009, 1812, 1656, 1553, 1408, 1294, 1226, 1224, 1218, 1267, 1328, 1449, 1557, 1677, 1821, 2010, 2281, 1920, 1731, 1621, 1462, 1317, 1224, 1168, 1128, 1152, 1168, 1252, 1340, 1490, 1623, 1792, 1921, 2239, 1850, 1687, 1550, 1389, 1273, 1172, 1111, 1071, 1080, 1120, 1171, 1285, 1426, 1586, 1725, 1922, 2191, 1857, 1652, 1518, 1364, 1243, 1148, 1079, 1048, 1042, 1077, 1145, 1258, 1378, 1526, 1726, 1910, 2204, 1858, 1664, 1514, 1375, 1225, 1114, 1052, 1024, 1046, 1086, 1138, 1257, 1378, 1536, 1700, 1892, 2179, 1843, 1689, 1501, 1390, 1249, 1141, 1079, 1051, 1054, 1088, 1157, 1268, 1376, 1541, 1714, 1913, 2245, 1879, 1722, 1562, 1422, 1301, 1185, 1116, 1080, 1083, 1124, 1203, 1295, 1431, 1605, 1728, 1953, 2356, 1938, 1769, 1628, 1465, 1349, 1227, 1175, 1166, 1149, 1190, 1245, 1368, 1490, 1653, 1798, 1990, 2499, 2061, 1838, 1690, 1577, 1440, 1328, 1254, 1221, 1221, 1273, 1338, 1420, 1563, 1692, 1830, 2049, 2652, 2189, 1935, 1792, 1636, 1547, 1443, 1366, 1328, 1334, 1376, 1455, 1555, 1645, 1772, 1930, 2153, 2978, 2379, 2065, 1868, 1758, 1673, 1579, 1512, 1443, 1467, 1504, 1556, 1646, 1761, 1844, 1998, 2323, 3271, 2576, 2223, 2035, 1872, 1784, 1705, 1608, 1573, 1579, 1625, 1675, 1756, 1874, 1954, 2162, 2516, 3806, 2926, 2480, 2205, 1983, 1895, 1824, 1782, 1709, 1780, 1788, 1798, 1923, 1962, 2144, 2351, 2847]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3252, 2470, 2162, 1922, 1833, 1733, 1681, 1648, 1627, 1645, 1652, 1692, 1737, 1835, 1947, 2117, 2404, 2776, 2232, 1956, 1789, 1683, 1619, 1560, 1535, 1498, 1491, 1490, 1551, 1597, 1682, 1790, 1970, 2208, 2518, 2038, 1829, 1679, 1589, 1528, 1444, 1400, 1371, 1374, 1396, 1439, 1526, 1590, 1715, 1841, 2075, 2281, 1932, 1709, 1617, 1509, 1429, 1362, 1299, 1272, 1276, 1289, 1353, 1437, 1540, 1628, 1753, 1920, 2170, 1826, 1631, 1527, 1442, 1343, 1262, 1211, 1186, 1175, 1210, 1255, 1339, 1432, 1563, 1699, 1869, 2089, 1756, 1613, 1488, 1360, 1264, 1190, 1138, 1118, 1111, 1146, 1201, 1271, 1383, 1504, 1652, 1839, 2033, 1705, 1582, 1472, 1316, 1232, 1137, 1093, 1061, 1056, 1096, 1139, 1236, 1354, 1483, 1641, 1794, 1967, 1713, 1566, 1437, 1303, 1201, 1107, 1065, 1024, 1034, 1055, 1126, 1211, 1314, 1454, 1619, 1760, 1982, 1720, 1555, 1442, 1325, 1195, 1104, 1062, 1027, 1038, 1064, 1116, 1203, 1309, 1424, 1614, 1765, 2013, 1714, 1573, 1439, 1301, 1200, 1127, 1056, 1032, 1035, 1074, 1134, 1217, 1313, 1462, 1616, 1737, 2053, 1755, 1602, 1481, 1357, 1246, 1161, 1096, 1077, 1078, 1102, 1164, 1244, 1362, 1498, 1664, 1788, 2131, 1826, 1657, 1544, 1432, 1297, 1214, 1167, 1128, 1127, 1160, 1212, 1297, 1416, 1532, 1682, 1826, 2248, 1887, 1716, 1591, 1485, 1390, 1304, 1247, 1214, 1207, 1230, 1288, 1372, 1485, 1614, 1725, 1928, 2419, 2025, 1799, 1689, 1568, 1470, 1400, 1348, 1307, 1301, 1345, 1387, 1467, 1570, 1683, 1815, 1989, 2645, 2192, 1943, 1744, 1673, 1578, 1522, 1451, 1427, 1434, 1447, 1489, 1568, 1635, 1775, 1900, 2122, 3037, 2335, 2063, 1877, 1744, 1686, 1611, 1556, 1545, 1548, 1569, 1588, 1664, 1737, 1827, 2022, 2317, 3553, 2671, 2252, 2047, 1880, 1811, 1744, 1696, 1666, 1699, 1694, 1748, 1798, 1841, 1967, 2245, 2538]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3401, 2585, 2298, 2012, 1903, 1838, 1770, 1740, 1718, 1726, 1700, 1731, 1817, 1873, 1942, 2171, 2467, 2893, 2306, 2040, 1886, 1778, 1703, 1652, 1583, 1534, 1555, 1566, 1594, 1687, 1742, 1832, 1984, 2242, 2606, 2135, 1883, 1780, 1682, 1602, 1504, 1459, 1420, 1430, 1442, 1493, 1568, 1654, 1739, 1859, 2081, 2370, 2000, 1802, 1683, 1597, 1500, 1392, 1329, 1314, 1296, 1339, 1374, 1462, 1544, 1671, 1803, 1959, 2223, 1886, 1724, 1606, 1512, 1384, 1288, 1241, 1210, 1205, 1222, 1300, 1360, 1468, 1598, 1724, 1899, 2151, 1816, 1660, 1549, 1422, 1313, 1220, 1158, 1128, 1131, 1141, 1216, 1307, 1411, 1518, 1646, 1835, 2075, 1768, 1613, 1490, 1347, 1245, 1156, 1098, 1067, 1072, 1091, 1148, 1245, 1354, 1478, 1642, 1769, 2005, 1727, 1585, 1457, 1338, 1226, 1127, 1059, 1031, 1035, 1062, 1118, 1198, 1330, 1449, 1608, 1750, 1986, 1722, 1583, 1458, 1317, 1186, 1107, 1057, 1024, 1025, 1056, 1110, 1196, 1321, 1457, 1601, 1767, 2031, 1703, 1591, 1456, 1315, 1190, 1115, 1055, 1030, 1025, 1064, 1100, 1202, 1334, 1446, 1596, 1750, 2054, 1743, 1589, 1463, 1329, 1228, 1145, 1085, 1052, 1062, 1081, 1134, 1231, 1359, 1479, 1616, 1767, 2101, 1815, 1645, 1498, 1377, 1274, 1190, 1124, 1106, 1106, 1126, 1181, 1272, 1373, 1523, 1660, 1820, 2265, 1834, 1672, 1544, 1433, 1330, 1254, 1201, 1165, 1164, 1174, 1245, 1329, 1445, 1571, 1714, 1857, 2416, 1971, 1753, 1615, 1506, 1425, 1339, 1276, 1234, 1238, 1277, 1340, 1411, 1518, 1619, 1754, 1957, 2646, 2135, 1858, 1685, 1602, 1521, 1442, 1395, 1341, 1358, 1390, 1444, 1504, 1595, 1686, 1850, 2101, 2908, 2301, 2011, 1787, 1686, 1597, 1543, 1487, 1452, 1467, 1486, 1524, 1597, 1660, 1771, 1985, 2216, 3471, 2582, 2205, 1977, 1799, 1716, 1647, 1629, 1580, 1622, 1605, 1646, 1718, 1784, 1903, 2154, 2502]
| },
| "lsc_samples_blue": {
| "uCoeff": [3301, 2446, 2093, 1900, 1860, 1746, 1727, 1669, 1634, 1627, 1634, 1684, 1717, 1763, 1857, 2049, 2432, 2845, 2178, 1887, 1797, 1672, 1616, 1560, 1513, 1468, 1493, 1507, 1520, 1602, 1637, 1753, 1897, 2208, 2488, 1995, 1833, 1677, 1580, 1532, 1475, 1384, 1353, 1381, 1393, 1426, 1498, 1577, 1676, 1796, 2000, 2223, 1887, 1691, 1591, 1487, 1421, 1345, 1326, 1269, 1285, 1285, 1338, 1409, 1498, 1581, 1718, 1914, 2155, 1812, 1612, 1531, 1458, 1341, 1273, 1219, 1208, 1207, 1219, 1258, 1351, 1447, 1514, 1671, 1839, 2067, 1688, 1583, 1479, 1381, 1271, 1194, 1142, 1133, 1128, 1150, 1198, 1287, 1374, 1498, 1596, 1778, 1991, 1654, 1527, 1436, 1346, 1236, 1139, 1095, 1080, 1063, 1100, 1163, 1228, 1343, 1458, 1595, 1744, 1942, 1631, 1508, 1420, 1276, 1190, 1111, 1062, 1052, 1050, 1072, 1113, 1208, 1293, 1432, 1559, 1728, 1947, 1628, 1492, 1392, 1274, 1157, 1095, 1071, 1045, 1032, 1056, 1112, 1200, 1286, 1403, 1577, 1679, 1939, 1622, 1508, 1395, 1265, 1184, 1095, 1046, 1024, 1054, 1073, 1112, 1190, 1292, 1420, 1561, 1719, 1964, 1673, 1513, 1402, 1303, 1203, 1123, 1085, 1048, 1065, 1082, 1135, 1222, 1302, 1427, 1580, 1749, 2051, 1673, 1538, 1426, 1339, 1235, 1158, 1118, 1101, 1094, 1114, 1175, 1238, 1329, 1455, 1584, 1727, 2148, 1744, 1558, 1487, 1370, 1307, 1235, 1185, 1146, 1139, 1173, 1226, 1296, 1411, 1522, 1637, 1833, 2231, 1858, 1630, 1542, 1459, 1376, 1277, 1244, 1224, 1213, 1262, 1303, 1391, 1467, 1541, 1662, 1930, 2521, 2004, 1762, 1615, 1530, 1453, 1375, 1360, 1327, 1326, 1365, 1395, 1470, 1510, 1625, 1789, 2044, 2812, 2180, 1889, 1713, 1599, 1538, 1490, 1444, 1433, 1413, 1431, 1481, 1538, 1617, 1709, 1864, 2196, 3453, 2499, 2161, 1902, 1749, 1688, 1644, 1601, 1606, 1571, 1613, 1596, 1664, 1742, 1851, 2044, 2499]
| }
| }, {
| "name": "1600x1200_CWF_70",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2799, 2331, 2126, 1901, 1850, 1786, 1731, 1678, 1643, 1702, 1681, 1711, 1759, 1793, 1862, 1961, 2135, 2533, 2168, 1948, 1822, 1722, 1646, 1609, 1559, 1520, 1511, 1558, 1575, 1655, 1700, 1767, 1839, 2033, 2331, 2019, 1836, 1736, 1655, 1586, 1497, 1458, 1393, 1421, 1424, 1488, 1542, 1640, 1704, 1793, 1924, 2230, 1918, 1763, 1676, 1546, 1482, 1402, 1336, 1334, 1321, 1337, 1400, 1467, 1553, 1633, 1738, 1851, 2076, 1835, 1702, 1589, 1511, 1386, 1283, 1219, 1218, 1212, 1257, 1310, 1415, 1500, 1586, 1680, 1794, 2019, 1772, 1641, 1564, 1433, 1304, 1218, 1165, 1126, 1149, 1164, 1242, 1319, 1446, 1547, 1665, 1734, 1996, 1720, 1608, 1505, 1368, 1264, 1169, 1110, 1071, 1079, 1118, 1166, 1270, 1391, 1519, 1615, 1742, 1963, 1730, 1580, 1478, 1346, 1236, 1146, 1079, 1048, 1042, 1076, 1141, 1246, 1349, 1469, 1619, 1737, 1975, 1732, 1592, 1475, 1357, 1219, 1113, 1052, 1024, 1046, 1085, 1135, 1245, 1350, 1478, 1598, 1724, 1953, 1718, 1613, 1462, 1371, 1242, 1139, 1079, 1051, 1054, 1087, 1153, 1255, 1347, 1482, 1609, 1739, 2000, 1744, 1639, 1516, 1399, 1291, 1182, 1115, 1080, 1082, 1122, 1197, 1279, 1396, 1536, 1617, 1767, 2079, 1787, 1674, 1571, 1435, 1334, 1221, 1172, 1164, 1147, 1185, 1235, 1345, 1446, 1573, 1670, 1789, 2175, 1878, 1725, 1619, 1533, 1416, 1315, 1247, 1215, 1215, 1263, 1320, 1389, 1506, 1599, 1687, 1824, 2272, 1966, 1795, 1699, 1578, 1509, 1419, 1349, 1314, 1319, 1356, 1423, 1505, 1569, 1657, 1757, 1889, 2487, 2096, 1886, 1750, 1675, 1613, 1536, 1479, 1416, 1437, 1467, 1507, 1576, 1658, 1703, 1795, 1997, 2659, 2220, 1992, 1872, 1758, 1697, 1637, 1555, 1525, 1529, 1565, 1601, 1657, 1737, 1775, 1901, 2110, 2971, 2444, 2165, 1986, 1830, 1774, 1724, 1694, 1632, 1693, 1693, 1690, 1780, 1788, 1902, 2015, 2300]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2584, 2104, 1916, 1756, 1704, 1634, 1599, 1576, 1559, 1573, 1574, 1599, 1623, 1685, 1747, 1840, 1990, 2299, 1955, 1776, 1666, 1594, 1551, 1507, 1489, 1457, 1449, 1444, 1491, 1520, 1576, 1642, 1753, 1886, 2143, 1826, 1691, 1587, 1525, 1482, 1412, 1375, 1349, 1350, 1367, 1401, 1469, 1511, 1596, 1670, 1811, 1987, 1758, 1604, 1545, 1463, 1399, 1342, 1286, 1261, 1264, 1274, 1329, 1398, 1477, 1535, 1614, 1711, 1919, 1684, 1547, 1473, 1409, 1325, 1252, 1205, 1181, 1170, 1202, 1242, 1314, 1389, 1488, 1580, 1684, 1867, 1635, 1538, 1444, 1337, 1253, 1185, 1136, 1116, 1109, 1142, 1193, 1254, 1349, 1443, 1548, 1669, 1831, 1598, 1515, 1433, 1299, 1224, 1135, 1092, 1061, 1056, 1095, 1135, 1224, 1326, 1428, 1544, 1640, 1783, 1608, 1504, 1404, 1288, 1196, 1106, 1065, 1024, 1034, 1055, 1123, 1201, 1291, 1405, 1528, 1616, 1796, 1615, 1495, 1409, 1310, 1190, 1103, 1062, 1027, 1038, 1063, 1113, 1194, 1286, 1379, 1525, 1621, 1820, 1609, 1510, 1405, 1286, 1195, 1125, 1056, 1032, 1035, 1073, 1131, 1207, 1290, 1412, 1526, 1598, 1847, 1640, 1533, 1442, 1338, 1238, 1158, 1095, 1077, 1077, 1100, 1159, 1231, 1333, 1441, 1563, 1635, 1901, 1693, 1576, 1495, 1405, 1285, 1208, 1164, 1126, 1125, 1156, 1204, 1279, 1379, 1467, 1573, 1659, 1980, 1734, 1620, 1531, 1448, 1369, 1292, 1240, 1208, 1201, 1221, 1273, 1344, 1436, 1532, 1601, 1730, 2093, 1834, 1680, 1608, 1516, 1437, 1378, 1332, 1294, 1288, 1326, 1360, 1425, 1504, 1582, 1664, 1764, 2238, 1948, 1785, 1643, 1599, 1527, 1484, 1422, 1401, 1406, 1414, 1446, 1506, 1550, 1646, 1717, 1846, 2489, 2034, 1863, 1740, 1647, 1610, 1553, 1508, 1500, 1501, 1515, 1524, 1578, 1622, 1672, 1793, 1965, 2794, 2254, 1986, 1857, 1743, 1701, 1654, 1618, 1594, 1621, 1611, 1647, 1675, 1690, 1763, 1936, 2084]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2688, 2190, 2022, 1829, 1763, 1725, 1677, 1657, 1640, 1645, 1616, 1633, 1690, 1716, 1743, 1880, 2034, 2384, 2012, 1844, 1747, 1676, 1625, 1590, 1533, 1490, 1507, 1512, 1529, 1598, 1626, 1676, 1764, 1910, 2209, 1903, 1735, 1674, 1607, 1549, 1467, 1430, 1394, 1403, 1410, 1450, 1506, 1566, 1616, 1685, 1816, 2056, 1813, 1682, 1603, 1543, 1465, 1371, 1314, 1301, 1283, 1321, 1348, 1421, 1481, 1571, 1654, 1741, 1960, 1734, 1627, 1544, 1473, 1363, 1277, 1234, 1205, 1199, 1214, 1284, 1333, 1421, 1518, 1600, 1707, 1916, 1685, 1579, 1499, 1395, 1300, 1214, 1155, 1126, 1129, 1138, 1207, 1288, 1374, 1455, 1543, 1666, 1865, 1651, 1543, 1450, 1328, 1237, 1153, 1097, 1067, 1071, 1090, 1143, 1232, 1326, 1424, 1545, 1620, 1813, 1620, 1521, 1422, 1321, 1220, 1125, 1059, 1031, 1035, 1061, 1115, 1189, 1305, 1400, 1519, 1608, 1799, 1617, 1520, 1424, 1302, 1181, 1106, 1057, 1024, 1025, 1056, 1107, 1187, 1297, 1408, 1514, 1623, 1834, 1599, 1526, 1421, 1300, 1185, 1114, 1055, 1030, 1025, 1063, 1098, 1193, 1309, 1398, 1509, 1608, 1848, 1630, 1522, 1425, 1311, 1221, 1143, 1084, 1052, 1062, 1080, 1130, 1219, 1330, 1425, 1523, 1618, 1877, 1684, 1566, 1453, 1353, 1263, 1185, 1122, 1105, 1104, 1123, 1174, 1255, 1340, 1459, 1555, 1654, 1993, 1691, 1582, 1489, 1401, 1312, 1244, 1195, 1161, 1159, 1168, 1232, 1305, 1400, 1495, 1592, 1674, 2091, 1790, 1641, 1543, 1460, 1396, 1321, 1264, 1225, 1228, 1262, 1317, 1374, 1458, 1527, 1614, 1739, 2239, 1903, 1715, 1593, 1537, 1475, 1410, 1370, 1321, 1335, 1362, 1405, 1450, 1515, 1572, 1678, 1831, 2395, 2008, 1821, 1664, 1597, 1532, 1492, 1445, 1415, 1427, 1440, 1467, 1520, 1557, 1627, 1765, 1891, 2737, 2187, 1949, 1800, 1675, 1620, 1569, 1559, 1517, 1553, 1533, 1559, 1607, 1643, 1713, 1868, 2059]
| },
| "lsc_samples_blue": {
| "uCoeff": [2618, 2086, 1862, 1738, 1727, 1646, 1640, 1594, 1565, 1557, 1558, 1592, 1606, 1626, 1677, 1789, 2010, 2349, 1913, 1721, 1672, 1585, 1548, 1507, 1469, 1429, 1451, 1459, 1463, 1524, 1538, 1613, 1697, 1886, 2120, 1792, 1694, 1586, 1517, 1485, 1440, 1360, 1332, 1357, 1365, 1389, 1444, 1500, 1564, 1635, 1755, 1943, 1722, 1588, 1522, 1443, 1392, 1326, 1311, 1258, 1272, 1270, 1315, 1373, 1440, 1495, 1585, 1706, 1907, 1673, 1530, 1477, 1424, 1323, 1263, 1213, 1203, 1201, 1211, 1245, 1325, 1402, 1446, 1557, 1660, 1850, 1578, 1512, 1436, 1357, 1260, 1189, 1140, 1131, 1126, 1146, 1190, 1269, 1341, 1438, 1501, 1621, 1797, 1555, 1467, 1401, 1327, 1228, 1137, 1094, 1080, 1063, 1098, 1158, 1216, 1316, 1406, 1505, 1600, 1763, 1538, 1453, 1388, 1263, 1185, 1110, 1062, 1052, 1050, 1071, 1110, 1198, 1271, 1385, 1477, 1590, 1768, 1537, 1439, 1363, 1261, 1153, 1094, 1071, 1045, 1032, 1056, 1109, 1191, 1265, 1360, 1494, 1552, 1760, 1531, 1453, 1365, 1252, 1179, 1094, 1046, 1024, 1054, 1072, 1109, 1181, 1270, 1375, 1479, 1583, 1776, 1571, 1455, 1369, 1287, 1197, 1121, 1084, 1048, 1065, 1081, 1131, 1210, 1278, 1379, 1492, 1604, 1837, 1566, 1472, 1388, 1318, 1225, 1154, 1116, 1100, 1093, 1111, 1168, 1224, 1300, 1400, 1491, 1581, 1901, 1617, 1484, 1438, 1343, 1291, 1226, 1180, 1142, 1135, 1167, 1214, 1274, 1370, 1453, 1529, 1656, 1949, 1699, 1537, 1479, 1418, 1350, 1262, 1233, 1215, 1204, 1248, 1283, 1356, 1413, 1461, 1540, 1718, 2145, 1799, 1635, 1532, 1473, 1413, 1348, 1337, 1307, 1306, 1339, 1361, 1419, 1442, 1522, 1629, 1788, 2325, 1915, 1722, 1602, 1521, 1479, 1444, 1406, 1397, 1378, 1391, 1429, 1469, 1521, 1577, 1671, 1877, 2724, 2125, 1915, 1739, 1633, 1596, 1567, 1534, 1540, 1508, 1540, 1516, 1562, 1609, 1672, 1786, 2057]
| }
| }, {
| "name": "1600x1200_D50_100",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3534, 2756, 2365, 2114, 1999, 1960, 1862, 1801, 1748, 1737, 1792, 1799, 1879, 1970, 2107, 2344, 2645, 3060, 2451, 2179, 1956, 1847, 1730, 1681, 1622, 1551, 1560, 1606, 1637, 1716, 1832, 1927, 2089, 2401, 2780, 2291, 1997, 1832, 1756, 1631, 1546, 1468, 1427, 1443, 1456, 1545, 1605, 1709, 1847, 1979, 2227, 2578, 2102, 1896, 1740, 1606, 1500, 1436, 1361, 1326, 1316, 1341, 1410, 1501, 1618, 1737, 1925, 2114, 2371, 1978, 1774, 1679, 1548, 1412, 1307, 1228, 1223, 1211, 1241, 1318, 1425, 1525, 1683, 1827, 2031, 2285, 1924, 1743, 1596, 1443, 1344, 1233, 1181, 1141, 1138, 1180, 1261, 1349, 1478, 1601, 1762, 1975, 2245, 1881, 1692, 1576, 1391, 1260, 1171, 1111, 1085, 1062, 1112, 1182, 1288, 1440, 1573, 1731, 1902, 2212, 1840, 1694, 1509, 1381, 1253, 1143, 1076, 1045, 1046, 1088, 1149, 1245, 1390, 1542, 1707, 1886, 2172, 1875, 1663, 1549, 1376, 1230, 1127, 1074, 1024, 1028, 1070, 1157, 1262, 1389, 1528, 1704, 1886, 2229, 1865, 1687, 1521, 1373, 1239, 1140, 1080, 1052, 1043, 1093, 1153, 1278, 1390, 1544, 1719, 1897, 2240, 1884, 1741, 1586, 1440, 1285, 1193, 1122, 1092, 1080, 1124, 1186, 1295, 1430, 1587, 1744, 1933, 2363, 1946, 1783, 1637, 1505, 1356, 1250, 1178, 1153, 1150, 1189, 1282, 1354, 1472, 1620, 1780, 1960, 2430, 2056, 1852, 1704, 1558, 1438, 1360, 1256, 1232, 1222, 1258, 1326, 1449, 1560, 1703, 1827, 2043, 2681, 2163, 1908, 1786, 1639, 1537, 1449, 1357, 1318, 1337, 1352, 1440, 1503, 1660, 1759, 1939, 2154, 2899, 2377, 2055, 1870, 1762, 1674, 1575, 1510, 1440, 1447, 1480, 1547, 1650, 1770, 1839, 2028, 2358, 3250, 2538, 2238, 1981, 1843, 1727, 1679, 1605, 1550, 1568, 1611, 1670, 1760, 1867, 1961, 2136, 2502, 3843, 2973, 2491, 2174, 2018, 1872, 1822, 1760, 1748, 1751, 1736, 1806, 1911, 1978, 2137, 2416, 2825]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3176, 2491, 2154, 1935, 1819, 1725, 1686, 1625, 1599, 1626, 1653, 1671, 1717, 1799, 1910, 2111, 2455, 2775, 2218, 1969, 1772, 1694, 1623, 1569, 1517, 1490, 1487, 1487, 1566, 1608, 1682, 1797, 1956, 2220, 2488, 2052, 1817, 1692, 1605, 1527, 1455, 1391, 1357, 1379, 1399, 1432, 1520, 1599, 1690, 1825, 2037, 2323, 1910, 1724, 1633, 1530, 1421, 1349, 1289, 1261, 1275, 1284, 1339, 1424, 1515, 1638, 1757, 1946, 2156, 1849, 1659, 1530, 1433, 1347, 1261, 1217, 1184, 1184, 1207, 1261, 1350, 1452, 1564, 1707, 1856, 2085, 1776, 1626, 1504, 1370, 1286, 1182, 1134, 1116, 1122, 1141, 1197, 1285, 1400, 1534, 1665, 1825, 2014, 1717, 1593, 1455, 1331, 1231, 1145, 1092, 1068, 1071, 1104, 1159, 1242, 1347, 1498, 1616, 1779, 1975, 1708, 1581, 1433, 1313, 1208, 1119, 1062, 1042, 1043, 1069, 1133, 1218, 1310, 1468, 1623, 1747, 1970, 1697, 1571, 1448, 1301, 1204, 1111, 1058, 1024, 1036, 1061, 1127, 1215, 1315, 1471, 1606, 1748, 2023, 1720, 1592, 1471, 1338, 1216, 1128, 1066, 1041, 1041, 1074, 1138, 1220, 1329, 1442, 1618, 1753, 2055, 1755, 1617, 1496, 1383, 1248, 1165, 1111, 1091, 1076, 1115, 1175, 1251, 1365, 1505, 1622, 1744, 2134, 1841, 1654, 1547, 1423, 1303, 1211, 1161, 1129, 1148, 1158, 1223, 1290, 1404, 1542, 1674, 1843, 2244, 1895, 1723, 1584, 1498, 1389, 1304, 1236, 1211, 1204, 1233, 1293, 1369, 1485, 1596, 1730, 1908, 2402, 2007, 1810, 1667, 1571, 1467, 1403, 1349, 1318, 1315, 1333, 1381, 1463, 1562, 1680, 1804, 2002, 2636, 2165, 1930, 1759, 1671, 1572, 1524, 1446, 1424, 1416, 1438, 1505, 1583, 1664, 1756, 1912, 2116, 2922, 2348, 2061, 1887, 1748, 1687, 1644, 1584, 1548, 1557, 1547, 1603, 1689, 1751, 1847, 2013, 2307, 3414, 2667, 2256, 2022, 1890, 1791, 1741, 1713, 1673, 1673, 1699, 1733, 1789, 1847, 1985, 2221, 2635]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3389, 2590, 2254, 2032, 1902, 1849, 1788, 1725, 1702, 1683, 1700, 1768, 1782, 1888, 1958, 2180, 2493, 2893, 2305, 2046, 1865, 1786, 1710, 1650, 1580, 1565, 1551, 1572, 1605, 1684, 1743, 1805, 1986, 2247, 2568, 2120, 1913, 1763, 1689, 1600, 1505, 1462, 1417, 1434, 1449, 1497, 1572, 1663, 1733, 1894, 2106, 2362, 2006, 1803, 1690, 1588, 1505, 1397, 1345, 1304, 1312, 1316, 1362, 1462, 1570, 1677, 1812, 1974, 2201, 1899, 1740, 1628, 1508, 1387, 1288, 1238, 1216, 1211, 1234, 1286, 1386, 1474, 1610, 1727, 1878, 2123, 1822, 1674, 1564, 1428, 1308, 1228, 1147, 1130, 1130, 1165, 1212, 1296, 1395, 1542, 1664, 1800, 2044, 1773, 1640, 1507, 1381, 1256, 1163, 1097, 1073, 1081, 1113, 1163, 1251, 1358, 1499, 1644, 1796, 2029, 1756, 1597, 1476, 1336, 1222, 1131, 1070, 1035, 1040, 1073, 1134, 1223, 1323, 1460, 1618, 1769, 2010, 1721, 1585, 1461, 1333, 1204, 1114, 1062, 1024, 1041, 1055, 1122, 1219, 1334, 1464, 1601, 1756, 2004, 1731, 1576, 1456, 1321, 1206, 1118, 1059, 1033, 1045, 1079, 1113, 1221, 1315, 1444, 1608, 1739, 2047, 1765, 1592, 1455, 1341, 1229, 1140, 1083, 1055, 1071, 1089, 1156, 1232, 1357, 1468, 1648, 1762, 2115, 1806, 1632, 1492, 1386, 1272, 1176, 1132, 1105, 1120, 1146, 1191, 1273, 1394, 1520, 1649, 1789, 2248, 1856, 1666, 1542, 1441, 1339, 1260, 1194, 1181, 1176, 1206, 1270, 1342, 1469, 1564, 1681, 1858, 2373, 1964, 1747, 1611, 1510, 1429, 1334, 1281, 1247, 1259, 1278, 1339, 1426, 1523, 1631, 1756, 1944, 2562, 2151, 1885, 1719, 1589, 1514, 1427, 1389, 1362, 1352, 1384, 1443, 1517, 1594, 1724, 1856, 2129, 2943, 2270, 2007, 1789, 1687, 1604, 1555, 1495, 1461, 1474, 1501, 1550, 1596, 1676, 1791, 1989, 2306, 3450, 2627, 2218, 1966, 1823, 1714, 1666, 1627, 1604, 1598, 1643, 1662, 1719, 1803, 1926, 2146, 2550]
| },
| "lsc_samples_blue": {
| "uCoeff": [3470, 2508, 2235, 1944, 1903, 1807, 1771, 1686, 1675, 1713, 1691, 1709, 1780, 1804, 1936, 2150, 2451, 2819, 2268, 1971, 1829, 1746, 1670, 1605, 1562, 1523, 1522, 1533, 1595, 1648, 1696, 1779, 1968, 2234, 2513, 2025, 1838, 1715, 1651, 1562, 1486, 1443, 1425, 1395, 1430, 1452, 1544, 1605, 1702, 1829, 2091, 2313, 1916, 1740, 1629, 1562, 1444, 1368, 1339, 1280, 1278, 1314, 1380, 1456, 1529, 1654, 1752, 2001, 2171, 1848, 1657, 1578, 1458, 1376, 1283, 1231, 1194, 1207, 1227, 1275, 1356, 1476, 1578, 1706, 1857, 2093, 1756, 1621, 1526, 1401, 1297, 1210, 1141, 1116, 1140, 1148, 1213, 1286, 1391, 1507, 1637, 1821, 2001, 1716, 1593, 1473, 1357, 1255, 1139, 1114, 1072, 1069, 1098, 1154, 1241, 1357, 1493, 1633, 1815, 1941, 1709, 1568, 1432, 1319, 1212, 1120, 1065, 1031, 1032, 1063, 1126, 1201, 1316, 1443, 1614, 1758, 1953, 1683, 1544, 1431, 1293, 1178, 1113, 1049, 1029, 1024, 1053, 1111, 1201, 1303, 1454, 1602, 1730, 2008, 1694, 1513, 1431, 1304, 1184, 1105, 1061, 1027, 1036, 1074, 1111, 1186, 1302, 1462, 1567, 1778, 2012, 1697, 1553, 1437, 1324, 1215, 1134, 1084, 1052, 1057, 1097, 1136, 1217, 1336, 1464, 1603, 1774, 2094, 1713, 1577, 1480, 1372, 1260, 1170, 1128, 1100, 1101, 1131, 1187, 1278, 1379, 1505, 1615, 1794, 2192, 1795, 1625, 1517, 1403, 1305, 1238, 1185, 1159, 1168, 1184, 1227, 1330, 1446, 1547, 1661, 1888, 2300, 1893, 1693, 1584, 1478, 1381, 1340, 1270, 1231, 1263, 1267, 1322, 1400, 1481, 1619, 1719, 1963, 2579, 2022, 1790, 1633, 1565, 1482, 1420, 1381, 1340, 1341, 1377, 1415, 1515, 1591, 1672, 1850, 2099, 2868, 2205, 1917, 1726, 1656, 1590, 1555, 1491, 1466, 1461, 1454, 1534, 1587, 1636, 1752, 1925, 2239, 3527, 2609, 2173, 1925, 1820, 1728, 1664, 1686, 1606, 1645, 1646, 1667, 1720, 1801, 1920, 2152, 2530]
| }
| }, {
| "name": "1600x1200_D50_70",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2781, 2317, 2075, 1912, 1843, 1830, 1758, 1711, 1667, 1655, 1696, 1691, 1743, 1795, 1873, 2010, 2159, 2506, 2124, 1956, 1806, 1736, 1649, 1616, 1568, 1505, 1512, 1548, 1567, 1623, 1702, 1753, 1845, 2026, 2339, 2027, 1830, 1719, 1673, 1575, 1506, 1438, 1401, 1415, 1423, 1497, 1539, 1613, 1706, 1780, 1925, 2215, 1896, 1762, 1653, 1551, 1465, 1412, 1345, 1312, 1302, 1323, 1382, 1456, 1546, 1627, 1753, 1859, 2076, 1809, 1670, 1609, 1506, 1390, 1295, 1221, 1217, 1205, 1232, 1301, 1393, 1472, 1591, 1685, 1810, 2022, 1775, 1651, 1542, 1415, 1330, 1227, 1178, 1139, 1136, 1175, 1250, 1327, 1435, 1527, 1640, 1777, 2000, 1746, 1612, 1528, 1370, 1251, 1168, 1110, 1085, 1062, 1110, 1176, 1273, 1404, 1508, 1620, 1726, 1980, 1716, 1617, 1470, 1362, 1246, 1141, 1076, 1045, 1046, 1087, 1145, 1233, 1360, 1483, 1603, 1717, 1949, 1747, 1591, 1507, 1358, 1224, 1126, 1074, 1024, 1028, 1069, 1153, 1250, 1360, 1471, 1601, 1719, 1993, 1737, 1611, 1481, 1354, 1232, 1138, 1080, 1052, 1043, 1092, 1149, 1265, 1360, 1485, 1613, 1726, 1996, 1749, 1655, 1538, 1416, 1276, 1190, 1121, 1092, 1079, 1122, 1180, 1279, 1395, 1520, 1631, 1751, 2084, 1793, 1686, 1579, 1473, 1341, 1243, 1175, 1151, 1148, 1184, 1270, 1332, 1430, 1544, 1655, 1765, 2122, 1874, 1737, 1632, 1516, 1414, 1346, 1249, 1226, 1216, 1248, 1309, 1415, 1503, 1608, 1685, 1820, 2294, 1945, 1772, 1693, 1581, 1499, 1424, 1341, 1305, 1322, 1333, 1410, 1458, 1583, 1646, 1764, 1890, 2428, 2095, 1878, 1752, 1678, 1614, 1533, 1477, 1413, 1418, 1445, 1499, 1579, 1666, 1699, 1818, 2023, 2644, 2191, 2004, 1827, 1732, 1647, 1614, 1553, 1504, 1519, 1553, 1596, 1661, 1731, 1780, 1881, 2100, 2997, 2479, 2173, 1961, 1859, 1754, 1723, 1675, 1667, 1667, 1647, 1697, 1769, 1801, 1896, 2063, 2285]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2530, 2119, 1909, 1766, 1692, 1627, 1604, 1556, 1534, 1556, 1575, 1581, 1606, 1655, 1718, 1836, 2026, 2298, 1944, 1787, 1651, 1604, 1555, 1515, 1473, 1449, 1445, 1441, 1504, 1529, 1576, 1648, 1742, 1894, 2120, 1837, 1681, 1599, 1539, 1481, 1422, 1366, 1335, 1355, 1370, 1394, 1464, 1519, 1576, 1658, 1783, 2020, 1741, 1616, 1559, 1482, 1392, 1330, 1276, 1250, 1263, 1269, 1316, 1386, 1455, 1543, 1617, 1731, 1908, 1703, 1571, 1476, 1401, 1328, 1251, 1211, 1179, 1179, 1199, 1247, 1324, 1406, 1489, 1586, 1674, 1864, 1652, 1549, 1459, 1347, 1274, 1177, 1132, 1114, 1120, 1138, 1189, 1267, 1364, 1469, 1559, 1658, 1816, 1608, 1525, 1418, 1313, 1223, 1143, 1091, 1068, 1071, 1102, 1154, 1229, 1319, 1441, 1523, 1628, 1789, 1604, 1517, 1400, 1298, 1202, 1118, 1062, 1042, 1043, 1068, 1130, 1208, 1287, 1417, 1532, 1606, 1787, 1595, 1509, 1414, 1287, 1199, 1110, 1058, 1024, 1036, 1061, 1124, 1205, 1292, 1421, 1518, 1608, 1828, 1614, 1527, 1435, 1321, 1210, 1126, 1066, 1041, 1041, 1073, 1134, 1210, 1304, 1394, 1527, 1610, 1849, 1640, 1546, 1455, 1362, 1240, 1162, 1110, 1091, 1075, 1113, 1170, 1238, 1336, 1448, 1528, 1600, 1903, 1706, 1574, 1497, 1396, 1290, 1206, 1158, 1127, 1146, 1154, 1214, 1272, 1368, 1476, 1566, 1672, 1976, 1741, 1626, 1524, 1460, 1368, 1292, 1229, 1206, 1198, 1224, 1278, 1342, 1436, 1516, 1605, 1714, 2080, 1819, 1689, 1589, 1519, 1435, 1381, 1333, 1305, 1301, 1315, 1355, 1421, 1497, 1579, 1655, 1774, 2231, 1927, 1774, 1656, 1598, 1521, 1486, 1417, 1398, 1389, 1406, 1461, 1520, 1574, 1630, 1727, 1842, 2405, 2044, 1861, 1748, 1650, 1611, 1582, 1534, 1502, 1509, 1495, 1537, 1599, 1634, 1688, 1786, 1958, 2697, 2251, 1989, 1837, 1752, 1684, 1652, 1633, 1600, 1598, 1615, 1634, 1667, 1694, 1777, 1918, 2152]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2680, 2193, 1988, 1845, 1762, 1734, 1693, 1644, 1626, 1607, 1616, 1664, 1661, 1728, 1756, 1887, 2052, 2384, 2011, 1849, 1729, 1683, 1632, 1588, 1530, 1518, 1504, 1518, 1539, 1595, 1627, 1655, 1765, 1914, 2180, 1891, 1760, 1660, 1614, 1547, 1468, 1432, 1392, 1406, 1416, 1453, 1510, 1574, 1611, 1712, 1834, 2049, 1818, 1683, 1609, 1535, 1470, 1375, 1329, 1291, 1298, 1299, 1337, 1421, 1504, 1576, 1661, 1752, 1943, 1744, 1640, 1564, 1470, 1366, 1277, 1231, 1210, 1205, 1225, 1271, 1357, 1426, 1528, 1603, 1691, 1894, 1690, 1591, 1513, 1401, 1295, 1222, 1145, 1128, 1128, 1161, 1204, 1278, 1360, 1476, 1558, 1638, 1840, 1655, 1567, 1465, 1360, 1248, 1160, 1096, 1073, 1080, 1111, 1158, 1238, 1329, 1442, 1546, 1641, 1833, 1644, 1532, 1439, 1319, 1216, 1129, 1070, 1035, 1040, 1072, 1131, 1212, 1299, 1410, 1527, 1623, 1819, 1616, 1522, 1426, 1317, 1199, 1113, 1062, 1024, 1041, 1055, 1119, 1209, 1309, 1414, 1514, 1614, 1812, 1623, 1513, 1421, 1305, 1200, 1117, 1059, 1033, 1045, 1078, 1110, 1211, 1291, 1396, 1519, 1599, 1842, 1648, 1524, 1418, 1323, 1222, 1138, 1082, 1055, 1071, 1088, 1151, 1220, 1328, 1415, 1550, 1614, 1888, 1677, 1554, 1448, 1362, 1261, 1172, 1130, 1104, 1118, 1142, 1183, 1256, 1359, 1457, 1546, 1630, 1980, 1709, 1577, 1487, 1408, 1321, 1250, 1189, 1176, 1171, 1198, 1256, 1317, 1422, 1489, 1565, 1675, 2058, 1784, 1636, 1540, 1464, 1399, 1316, 1269, 1237, 1248, 1263, 1316, 1388, 1462, 1538, 1616, 1729, 2176, 1916, 1737, 1622, 1525, 1469, 1396, 1364, 1340, 1330, 1356, 1404, 1461, 1514, 1604, 1682, 1851, 2420, 1984, 1818, 1666, 1598, 1538, 1502, 1453, 1423, 1433, 1454, 1490, 1519, 1571, 1643, 1768, 1957, 2722, 2221, 1959, 1791, 1696, 1618, 1586, 1557, 1539, 1532, 1566, 1573, 1608, 1659, 1731, 1862, 2092]
| },
| "lsc_samples_blue": {
| "uCoeff": [2736, 2132, 1973, 1773, 1763, 1698, 1678, 1610, 1602, 1633, 1608, 1614, 1659, 1659, 1739, 1865, 2023, 2330, 1983, 1789, 1699, 1649, 1596, 1547, 1514, 1480, 1477, 1482, 1530, 1564, 1588, 1634, 1751, 1904, 2139, 1816, 1698, 1618, 1580, 1512, 1450, 1415, 1399, 1370, 1399, 1413, 1485, 1524, 1586, 1661, 1823, 2012, 1745, 1630, 1555, 1511, 1413, 1348, 1324, 1268, 1266, 1297, 1354, 1415, 1468, 1557, 1613, 1773, 1919, 1702, 1569, 1519, 1424, 1356, 1272, 1224, 1189, 1201, 1219, 1261, 1330, 1428, 1501, 1585, 1674, 1870, 1635, 1545, 1478, 1376, 1285, 1205, 1139, 1114, 1138, 1144, 1204, 1268, 1356, 1445, 1536, 1655, 1805, 1607, 1525, 1434, 1338, 1247, 1137, 1113, 1072, 1069, 1096, 1149, 1228, 1328, 1437, 1537, 1657, 1762, 1605, 1506, 1399, 1303, 1206, 1119, 1065, 1031, 1032, 1062, 1123, 1192, 1292, 1395, 1524, 1615, 1773, 1584, 1485, 1399, 1279, 1174, 1112, 1049, 1029, 1024, 1053, 1108, 1192, 1281, 1406, 1515, 1593, 1816, 1592, 1457, 1398, 1289, 1179, 1104, 1061, 1027, 1036, 1073, 1108, 1177, 1279, 1412, 1484, 1631, 1814, 1591, 1490, 1401, 1306, 1208, 1132, 1083, 1052, 1057, 1096, 1132, 1206, 1309, 1412, 1512, 1624, 1871, 1599, 1506, 1437, 1349, 1249, 1166, 1126, 1099, 1099, 1128, 1180, 1261, 1345, 1444, 1517, 1634, 1936, 1659, 1541, 1464, 1373, 1289, 1229, 1180, 1155, 1163, 1177, 1215, 1306, 1401, 1474, 1548, 1699, 2002, 1727, 1590, 1516, 1435, 1355, 1322, 1258, 1222, 1251, 1253, 1300, 1364, 1425, 1527, 1586, 1744, 2188, 1814, 1658, 1548, 1504, 1440, 1390, 1357, 1320, 1320, 1350, 1379, 1459, 1512, 1561, 1678, 1829, 2366, 1934, 1745, 1613, 1571, 1525, 1502, 1449, 1428, 1422, 1411, 1476, 1511, 1537, 1612, 1718, 1908, 2776, 2208, 1924, 1758, 1693, 1630, 1584, 1610, 1540, 1573, 1569, 1578, 1609, 1657, 1726, 1866, 2078]
| }
| }, {
| "name": "1600x1200_D65_100",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3703, 2987, 2658, 2370, 2252, 2111, 2008, 1937, 1899, 1934, 1955, 2074, 2141, 2193, 2404, 2742, 3187, 3230, 2654, 2362, 2158, 2079, 1934, 1822, 1752, 1712, 1725, 1752, 1844, 1923, 2038, 2171, 2395, 2879, 2972, 2495, 2244, 2092, 1915, 1797, 1671, 1587, 1544, 1553, 1595, 1687, 1806, 1928, 2103, 2290, 2631, 2840, 2324, 2106, 1941, 1759, 1619, 1519, 1421, 1394, 1398, 1461, 1557, 1667, 1829, 2009, 2144, 2483, 2655, 2236, 2007, 1855, 1679, 1491, 1371, 1302, 1268, 1255, 1326, 1423, 1566, 1686, 1910, 2118, 2342, 2562, 2115, 1926, 1767, 1578, 1412, 1276, 1195, 1174, 1180, 1216, 1341, 1457, 1635, 1830, 2024, 2279, 2499, 2111, 1893, 1719, 1523, 1326, 1202, 1140, 1080, 1091, 1170, 1259, 1385, 1588, 1797, 2010, 2272, 2423, 2059, 1884, 1658, 1475, 1298, 1167, 1082, 1047, 1042, 1118, 1216, 1371, 1536, 1713, 1925, 2235, 2385, 2060, 1842, 1644, 1481, 1291, 1146, 1084, 1024, 1032, 1101, 1201, 1351, 1562, 1755, 1954, 2211, 2462, 2097, 1898, 1671, 1486, 1296, 1172, 1091, 1041, 1055, 1104, 1208, 1383, 1549, 1730, 2006, 2184, 2537, 2176, 1936, 1739, 1552, 1380, 1231, 1138, 1088, 1119, 1161, 1269, 1421, 1599, 1817, 2003, 2262, 2569, 2172, 1991, 1811, 1612, 1434, 1311, 1221, 1190, 1197, 1255, 1337, 1489, 1669, 1834, 2049, 2342, 2771, 2294, 2048, 1877, 1747, 1536, 1429, 1351, 1298, 1310, 1359, 1464, 1627, 1762, 1904, 2155, 2445, 2842, 2375, 2128, 1973, 1844, 1677, 1563, 1493, 1436, 1415, 1487, 1614, 1718, 1869, 2004, 2261, 2614, 3316, 2683, 2315, 2127, 1952, 1849, 1702, 1633, 1561, 1575, 1640, 1705, 1841, 2024, 2149, 2309, 2786, 3521, 2834, 2506, 2217, 2061, 1964, 1859, 1788, 1734, 1732, 1816, 1903, 1966, 2084, 2271, 2531, 3028, 4186, 3268, 2751, 2431, 2237, 2131, 2026, 1970, 1955, 1938, 1954, 2057, 2210, 2284, 2527, 2879, 3473]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3051, 2427, 2159, 1940, 1879, 1767, 1715, 1693, 1654, 1658, 1667, 1726, 1790, 1841, 1992, 2258, 2703, 2712, 2209, 1958, 1820, 1722, 1661, 1586, 1550, 1515, 1524, 1539, 1610, 1669, 1734, 1873, 2069, 2336, 2408, 2075, 1858, 1740, 1628, 1560, 1466, 1429, 1379, 1383, 1436, 1491, 1578, 1662, 1766, 1945, 2193, 2264, 1942, 1776, 1645, 1550, 1432, 1355, 1316, 1270, 1294, 1302, 1380, 1487, 1581, 1718, 1842, 2052, 2198, 1863, 1710, 1581, 1452, 1343, 1248, 1218, 1201, 1189, 1216, 1283, 1382, 1510, 1638, 1788, 1980, 2086, 1819, 1652, 1530, 1394, 1276, 1192, 1126, 1118, 1121, 1156, 1216, 1320, 1450, 1592, 1730, 1889, 2068, 1780, 1643, 1478, 1340, 1221, 1132, 1089, 1068, 1074, 1111, 1167, 1276, 1403, 1563, 1726, 1862, 2031, 1773, 1617, 1463, 1319, 1201, 1113, 1054, 1034, 1027, 1068, 1151, 1244, 1354, 1520, 1683, 1864, 2012, 1739, 1603, 1475, 1333, 1195, 1110, 1057, 1024, 1029, 1067, 1145, 1247, 1383, 1525, 1694, 1843, 2060, 1778, 1611, 1494, 1334, 1208, 1128, 1058, 1038, 1047, 1093, 1147, 1261, 1378, 1525, 1690, 1830, 2099, 1787, 1663, 1536, 1391, 1249, 1156, 1098, 1065, 1088, 1122, 1182, 1279, 1417, 1566, 1733, 1902, 2168, 1856, 1695, 1585, 1454, 1318, 1207, 1158, 1135, 1150, 1176, 1245, 1329, 1445, 1584, 1741, 1939, 2286, 1938, 1766, 1643, 1532, 1403, 1306, 1238, 1226, 1221, 1261, 1339, 1433, 1539, 1669, 1839, 2078, 2410, 2043, 1837, 1707, 1615, 1491, 1416, 1356, 1332, 1322, 1362, 1421, 1535, 1619, 1732, 1890, 2167, 2701, 2203, 1969, 1824, 1727, 1613, 1543, 1498, 1443, 1460, 1491, 1526, 1613, 1720, 1863, 2043, 2305, 2990, 2357, 2065, 1903, 1793, 1705, 1634, 1585, 1570, 1581, 1591, 1639, 1730, 1824, 1926, 2149, 2518, 3517, 2656, 2269, 2062, 1947, 1840, 1753, 1727, 1699, 1723, 1737, 1797, 1893, 1916, 2130, 2419, 2895]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3265, 2574, 2290, 2044, 1970, 1891, 1785, 1770, 1730, 1737, 1766, 1801, 1887, 1900, 2048, 2283, 2707, 2838, 2326, 2066, 1902, 1847, 1731, 1667, 1617, 1557, 1587, 1591, 1656, 1747, 1813, 1876, 2084, 2391, 2525, 2154, 1953, 1852, 1710, 1624, 1533, 1483, 1439, 1439, 1485, 1534, 1618, 1736, 1796, 1978, 2250, 2346, 2056, 1830, 1730, 1634, 1499, 1399, 1336, 1310, 1322, 1343, 1400, 1499, 1588, 1752, 1876, 2080, 2242, 1924, 1772, 1658, 1527, 1401, 1309, 1238, 1204, 1204, 1240, 1317, 1427, 1525, 1651, 1826, 1987, 2119, 1843, 1711, 1587, 1444, 1312, 1214, 1160, 1135, 1128, 1154, 1235, 1337, 1471, 1599, 1731, 1885, 2087, 1822, 1682, 1559, 1371, 1251, 1162, 1094, 1071, 1083, 1106, 1177, 1284, 1421, 1561, 1701, 1922, 2054, 1745, 1637, 1477, 1348, 1206, 1117, 1053, 1032, 1034, 1081, 1153, 1250, 1368, 1531, 1700, 1866, 2042, 1790, 1602, 1471, 1342, 1182, 1098, 1055, 1024, 1038, 1076, 1140, 1255, 1371, 1524, 1687, 1851, 2069, 1738, 1611, 1470, 1346, 1204, 1106, 1060, 1028, 1043, 1071, 1139, 1248, 1379, 1516, 1696, 1850, 2098, 1811, 1642, 1496, 1358, 1235, 1154, 1085, 1059, 1072, 1113, 1174, 1266, 1406, 1554, 1710, 1856, 2167, 1831, 1672, 1535, 1403, 1286, 1190, 1138, 1109, 1124, 1164, 1212, 1336, 1438, 1587, 1744, 1915, 2260, 1909, 1703, 1591, 1471, 1356, 1272, 1201, 1195, 1190, 1213, 1282, 1403, 1510, 1611, 1795, 2038, 2399, 1999, 1817, 1657, 1551, 1442, 1348, 1304, 1281, 1286, 1335, 1381, 1476, 1572, 1678, 1844, 2143, 2660, 2191, 1894, 1773, 1633, 1549, 1475, 1422, 1387, 1381, 1439, 1486, 1581, 1689, 1795, 1983, 2262, 2815, 2339, 2033, 1804, 1735, 1636, 1576, 1551, 1509, 1518, 1573, 1603, 1679, 1758, 1894, 2128, 2447, 3475, 2648, 2253, 2034, 1876, 1747, 1711, 1650, 1648, 1659, 1685, 1739, 1823, 1879, 2023, 2354, 2897]
| },
| "lsc_samples_blue": {
| "uCoeff": [3309, 2497, 2210, 2003, 1953, 1837, 1828, 1732, 1720, 1726, 1738, 1776, 1849, 1868, 2002, 2273, 2666, 2696, 2220, 1957, 1867, 1793, 1724, 1629, 1592, 1550, 1562, 1575, 1649, 1708, 1751, 1879, 2067, 2381, 2480, 2046, 1888, 1790, 1711, 1589, 1513, 1491, 1420, 1407, 1450, 1518, 1591, 1681, 1757, 1978, 2251, 2290, 1958, 1768, 1668, 1568, 1476, 1401, 1358, 1317, 1313, 1344, 1415, 1475, 1600, 1723, 1848, 2075, 2191, 1874, 1700, 1619, 1493, 1384, 1284, 1244, 1213, 1224, 1243, 1311, 1421, 1536, 1654, 1807, 2024, 2046, 1794, 1664, 1546, 1439, 1306, 1209, 1151, 1113, 1139, 1161, 1215, 1334, 1433, 1587, 1721, 1918, 2050, 1776, 1618, 1499, 1354, 1254, 1161, 1099, 1074, 1072, 1127, 1186, 1286, 1403, 1557, 1706, 1873, 1982, 1719, 1580, 1450, 1314, 1212, 1114, 1083, 1040, 1054, 1079, 1151, 1259, 1369, 1497, 1670, 1882, 1953, 1718, 1579, 1448, 1312, 1192, 1101, 1060, 1031, 1024, 1068, 1157, 1251, 1372, 1517, 1668, 1856, 2003, 1712, 1568, 1449, 1329, 1195, 1115, 1064, 1038, 1039, 1088, 1144, 1253, 1364, 1515, 1657, 1860, 2032, 1719, 1590, 1490, 1334, 1223, 1135, 1087, 1073, 1067, 1100, 1176, 1285, 1402, 1546, 1683, 1834, 2101, 1770, 1623, 1489, 1378, 1251, 1188, 1140, 1126, 1124, 1147, 1215, 1307, 1443, 1574, 1728, 1957, 2168, 1832, 1651, 1545, 1456, 1329, 1273, 1230, 1213, 1181, 1211, 1291, 1385, 1487, 1608, 1769, 2055, 2341, 1907, 1699, 1614, 1528, 1407, 1360, 1299, 1266, 1276, 1306, 1366, 1480, 1541, 1658, 1842, 2102, 2519, 2030, 1809, 1672, 1622, 1531, 1451, 1423, 1374, 1385, 1420, 1464, 1552, 1664, 1744, 1962, 2247, 2862, 2269, 1941, 1783, 1708, 1642, 1555, 1541, 1503, 1504, 1540, 1579, 1662, 1719, 1814, 2009, 2443, 3532, 2606, 2167, 1993, 1875, 1760, 1703, 1684, 1686, 1700, 1727, 1742, 1828, 1882, 2045, 2337, 2825]
| }
| }, {
| "name": "1600x1200_D65_70",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2899, 2490, 2304, 2121, 2056, 1960, 1886, 1832, 1801, 1829, 1839, 1928, 1963, 1976, 2105, 2307, 2538, 2629, 2280, 2104, 1975, 1937, 1830, 1743, 1686, 1652, 1662, 1680, 1750, 1802, 1875, 1950, 2081, 2374, 2483, 2188, 2034, 1943, 1814, 1726, 1621, 1549, 1510, 1517, 1551, 1626, 1717, 1802, 1918, 2026, 2227, 2416, 2075, 1939, 1829, 1689, 1575, 1490, 1402, 1377, 1380, 1436, 1518, 1606, 1731, 1857, 1930, 2142, 2297, 2022, 1870, 1766, 1627, 1464, 1356, 1293, 1261, 1248, 1313, 1400, 1523, 1615, 1787, 1925, 2053, 2242, 1934, 1811, 1697, 1541, 1394, 1269, 1192, 1172, 1177, 1210, 1327, 1428, 1577, 1727, 1859, 2018, 2204, 1940, 1789, 1659, 1494, 1315, 1198, 1139, 1080, 1090, 1167, 1250, 1364, 1539, 1705, 1855, 2022, 2150, 1901, 1786, 1607, 1451, 1290, 1165, 1082, 1047, 1042, 1117, 1210, 1353, 1495, 1634, 1788, 1998, 2121, 1904, 1750, 1595, 1458, 1283, 1144, 1084, 1024, 1032, 1100, 1196, 1334, 1519, 1673, 1814, 1981, 2181, 1933, 1798, 1619, 1461, 1288, 1170, 1091, 1041, 1055, 1103, 1202, 1364, 1506, 1649, 1856, 1957, 2234, 1995, 1827, 1677, 1521, 1367, 1227, 1137, 1088, 1118, 1158, 1260, 1398, 1549, 1722, 1849, 2014, 2247, 1982, 1868, 1736, 1573, 1415, 1303, 1217, 1187, 1194, 1248, 1323, 1458, 1608, 1731, 1879, 2068, 2388, 2069, 1905, 1786, 1690, 1507, 1412, 1340, 1290, 1301, 1345, 1439, 1579, 1683, 1782, 1955, 2133, 2417, 2117, 1958, 1858, 1766, 1629, 1532, 1470, 1417, 1396, 1460, 1571, 1652, 1766, 1853, 2024, 2243, 2740, 2337, 2093, 1973, 1847, 1773, 1650, 1592, 1526, 1538, 1593, 1642, 1748, 1884, 1956, 2041, 2343, 2841, 2419, 2220, 2025, 1921, 1857, 1776, 1719, 1672, 1668, 1737, 1803, 1839, 1913, 2031, 2185, 2482, 3237, 2700, 2377, 2170, 2043, 1977, 1901, 1861, 1850, 1832, 1838, 1913, 2021, 2050, 2202, 2409, 2738]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2443, 2072, 1913, 1770, 1743, 1664, 1629, 1616, 1583, 1585, 1587, 1628, 1668, 1690, 1782, 1945, 2199, 2252, 1937, 1778, 1692, 1628, 1588, 1530, 1503, 1472, 1479, 1488, 1543, 1582, 1620, 1709, 1829, 1979, 2060, 1856, 1715, 1640, 1560, 1511, 1432, 1402, 1356, 1359, 1404, 1448, 1515, 1573, 1639, 1753, 1899, 1974, 1766, 1660, 1569, 1500, 1402, 1336, 1302, 1259, 1281, 1286, 1354, 1443, 1513, 1611, 1686, 1812, 1941, 1715, 1615, 1522, 1418, 1325, 1239, 1212, 1196, 1184, 1208, 1268, 1354, 1458, 1553, 1653, 1770, 1865, 1687, 1572, 1482, 1369, 1265, 1187, 1124, 1116, 1119, 1152, 1207, 1300, 1410, 1520, 1613, 1709, 1859, 1661, 1569, 1439, 1322, 1214, 1130, 1088, 1068, 1073, 1109, 1162, 1261, 1370, 1499, 1616, 1694, 1834, 1659, 1549, 1427, 1303, 1196, 1112, 1054, 1034, 1027, 1067, 1147, 1232, 1327, 1463, 1583, 1700, 1820, 1631, 1538, 1439, 1317, 1190, 1109, 1057, 1024, 1029, 1066, 1141, 1236, 1355, 1469, 1593, 1684, 1857, 1663, 1544, 1456, 1318, 1202, 1126, 1058, 1038, 1047, 1092, 1143, 1248, 1349, 1468, 1588, 1672, 1884, 1667, 1587, 1492, 1370, 1241, 1153, 1097, 1065, 1087, 1120, 1176, 1264, 1383, 1501, 1621, 1726, 1930, 1718, 1609, 1532, 1425, 1305, 1202, 1155, 1133, 1148, 1172, 1235, 1309, 1405, 1513, 1622, 1748, 2009, 1776, 1663, 1577, 1492, 1381, 1294, 1231, 1220, 1215, 1251, 1321, 1401, 1484, 1579, 1695, 1847, 2086, 1848, 1712, 1624, 1559, 1457, 1393, 1340, 1318, 1308, 1342, 1392, 1487, 1547, 1623, 1724, 1900, 2280, 1957, 1807, 1712, 1647, 1559, 1503, 1466, 1416, 1430, 1455, 1480, 1546, 1623, 1719, 1830, 1983, 2455, 2051, 1864, 1761, 1689, 1627, 1573, 1534, 1522, 1531, 1535, 1569, 1635, 1695, 1752, 1891, 2111, 2769, 2243, 1999, 1870, 1800, 1726, 1662, 1646, 1623, 1642, 1648, 1689, 1754, 1751, 1891, 2066, 2334]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2593, 2181, 2016, 1855, 1819, 1770, 1690, 1684, 1651, 1655, 1674, 1693, 1749, 1738, 1826, 1964, 2202, 2344, 2027, 1865, 1760, 1736, 1650, 1603, 1564, 1511, 1536, 1535, 1584, 1649, 1686, 1712, 1841, 2019, 2148, 1918, 1793, 1736, 1632, 1569, 1494, 1452, 1412, 1411, 1450, 1487, 1551, 1636, 1663, 1779, 1942, 2037, 1859, 1706, 1644, 1576, 1464, 1377, 1321, 1297, 1308, 1325, 1372, 1454, 1519, 1640, 1713, 1833, 1975, 1765, 1668, 1590, 1487, 1379, 1297, 1231, 1199, 1198, 1231, 1300, 1395, 1472, 1564, 1684, 1776, 1891, 1707, 1623, 1534, 1416, 1299, 1208, 1157, 1133, 1126, 1150, 1225, 1316, 1429, 1526, 1614, 1706, 1874, 1696, 1604, 1513, 1351, 1243, 1159, 1093, 1071, 1082, 1104, 1171, 1269, 1387, 1497, 1594, 1742, 1853, 1635, 1567, 1440, 1331, 1200, 1116, 1053, 1032, 1034, 1080, 1149, 1238, 1340, 1473, 1597, 1701, 1845, 1674, 1537, 1436, 1326, 1177, 1097, 1055, 1024, 1038, 1075, 1137, 1243, 1344, 1468, 1587, 1691, 1865, 1629, 1544, 1434, 1329, 1198, 1105, 1060, 1028, 1043, 1070, 1135, 1236, 1350, 1460, 1594, 1689, 1883, 1687, 1568, 1455, 1339, 1227, 1151, 1084, 1059, 1071, 1111, 1169, 1252, 1373, 1491, 1602, 1689, 1929, 1697, 1589, 1487, 1378, 1274, 1185, 1136, 1108, 1122, 1160, 1204, 1315, 1399, 1515, 1625, 1729, 1989, 1753, 1608, 1531, 1436, 1337, 1262, 1195, 1190, 1185, 1205, 1267, 1373, 1458, 1529, 1659, 1816, 2078, 1813, 1695, 1580, 1501, 1411, 1329, 1290, 1269, 1273, 1317, 1355, 1433, 1505, 1577, 1687, 1882, 2249, 1947, 1745, 1668, 1564, 1501, 1440, 1395, 1364, 1357, 1407, 1443, 1518, 1596, 1663, 1783, 1951, 2327, 2037, 1839, 1678, 1639, 1566, 1521, 1504, 1467, 1473, 1519, 1537, 1591, 1640, 1726, 1875, 2059, 2740, 2237, 1987, 1847, 1740, 1646, 1626, 1578, 1578, 1586, 1603, 1639, 1696, 1721, 1807, 2017, 2335]
| },
| "lsc_samples_blue": {
| "uCoeff": [2624, 2124, 1953, 1822, 1805, 1724, 1728, 1650, 1642, 1645, 1649, 1671, 1717, 1712, 1790, 1957, 2173, 2241, 1946, 1777, 1731, 1689, 1644, 1569, 1541, 1504, 1514, 1520, 1578, 1616, 1634, 1714, 1828, 2011, 2114, 1833, 1740, 1683, 1633, 1537, 1475, 1459, 1394, 1381, 1417, 1472, 1527, 1589, 1631, 1779, 1943, 1994, 1779, 1653, 1590, 1516, 1443, 1379, 1342, 1304, 1299, 1326, 1386, 1432, 1530, 1615, 1690, 1829, 1935, 1724, 1606, 1556, 1456, 1363, 1273, 1237, 1207, 1218, 1234, 1294, 1390, 1481, 1566, 1669, 1805, 1833, 1667, 1582, 1497, 1411, 1293, 1204, 1148, 1112, 1137, 1157, 1206, 1313, 1394, 1515, 1606, 1732, 1845, 1658, 1547, 1458, 1335, 1246, 1158, 1098, 1074, 1071, 1125, 1180, 1271, 1370, 1493, 1599, 1703, 1795, 1613, 1516, 1416, 1299, 1206, 1113, 1083, 1040, 1054, 1078, 1147, 1247, 1341, 1443, 1571, 1714, 1773, 1613, 1517, 1414, 1297, 1187, 1100, 1060, 1031, 1024, 1067, 1153, 1239, 1344, 1462, 1571, 1695, 1812, 1607, 1506, 1415, 1313, 1190, 1114, 1064, 1038, 1039, 1087, 1140, 1241, 1336, 1459, 1560, 1697, 1830, 1610, 1522, 1450, 1316, 1216, 1133, 1086, 1073, 1067, 1098, 1170, 1270, 1369, 1484, 1579, 1672, 1877, 1647, 1547, 1445, 1354, 1241, 1183, 1138, 1124, 1122, 1143, 1206, 1288, 1403, 1504, 1611, 1763, 1917, 1689, 1564, 1489, 1422, 1311, 1263, 1223, 1207, 1176, 1203, 1276, 1356, 1438, 1527, 1637, 1829, 2033, 1738, 1595, 1542, 1480, 1379, 1341, 1286, 1255, 1264, 1290, 1341, 1437, 1478, 1560, 1686, 1850, 2144, 1820, 1674, 1581, 1554, 1484, 1418, 1396, 1351, 1361, 1390, 1423, 1492, 1574, 1620, 1766, 1940, 2361, 1983, 1764, 1661, 1616, 1571, 1502, 1494, 1461, 1461, 1489, 1516, 1576, 1607, 1662, 1783, 2057, 2780, 2205, 1920, 1813, 1739, 1658, 1618, 1608, 1611, 1622, 1640, 1642, 1700, 1723, 1824, 2004, 2285]
| }
| }, {
| "name": "1600x1200_D75_100",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4104, 3111, 2607, 2302, 2209, 2043, 1925, 1903, 1906, 1886, 1856, 1942, 2064, 2044, 2201, 2518, 2813, 3442, 2664, 2315, 2097, 2011, 1840, 1788, 1719, 1659, 1619, 1674, 1777, 1875, 1913, 2054, 2279, 2600, 3088, 2526, 2215, 2008, 1893, 1748, 1643, 1537, 1508, 1510, 1539, 1629, 1750, 1836, 1963, 2185, 2421, 2788, 2310, 2048, 1877, 1753, 1620, 1510, 1404, 1365, 1365, 1406, 1491, 1592, 1729, 1861, 2013, 2279, 2621, 2166, 1934, 1792, 1673, 1479, 1372, 1281, 1252, 1237, 1280, 1391, 1509, 1653, 1828, 2029, 2227, 2529, 2101, 1898, 1712, 1568, 1402, 1276, 1194, 1168, 1161, 1186, 1284, 1406, 1546, 1726, 1926, 2140, 2435, 2090, 1851, 1688, 1495, 1340, 1201, 1125, 1071, 1086, 1131, 1214, 1357, 1516, 1693, 1871, 2126, 2385, 2045, 1803, 1657, 1455, 1310, 1165, 1078, 1027, 1030, 1070, 1176, 1309, 1460, 1657, 1821, 2049, 2455, 2060, 1799, 1634, 1467, 1282, 1141, 1062, 1024, 1029, 1072, 1175, 1310, 1458, 1652, 1866, 2085, 2426, 2016, 1851, 1643, 1468, 1290, 1153, 1098, 1055, 1044, 1096, 1182, 1310, 1481, 1653, 1849, 2046, 2439, 2099, 1884, 1712, 1528, 1363, 1246, 1137, 1083, 1093, 1141, 1224, 1362, 1525, 1709, 1900, 2083, 2614, 2185, 1935, 1779, 1594, 1436, 1311, 1211, 1169, 1161, 1214, 1281, 1430, 1563, 1737, 1947, 2121, 2842, 2279, 1995, 1842, 1690, 1548, 1376, 1331, 1260, 1259, 1305, 1418, 1531, 1619, 1818, 2034, 2250, 2987, 2366, 2095, 1927, 1785, 1663, 1516, 1449, 1387, 1374, 1418, 1523, 1651, 1749, 1907, 2090, 2365, 3203, 2635, 2275, 2046, 1927, 1803, 1698, 1605, 1532, 1534, 1577, 1668, 1762, 1888, 2040, 2207, 2563, 3596, 2794, 2443, 2150, 2020, 1925, 1826, 1743, 1711, 1658, 1727, 1816, 1876, 1971, 2076, 2350, 2640, 4347, 3195, 2588, 2403, 2184, 2073, 1939, 1876, 1847, 1889, 1894, 1971, 2065, 2110, 2254, 2569, 3136]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3351, 2560, 2200, 1946, 1862, 1755, 1690, 1670, 1642, 1639, 1658, 1704, 1743, 1799, 1937, 2171, 2502, 2872, 2277, 1969, 1814, 1744, 1625, 1601, 1533, 1522, 1504, 1509, 1573, 1628, 1696, 1790, 1969, 2269, 2606, 2091, 1860, 1723, 1651, 1524, 1468, 1404, 1390, 1372, 1411, 1466, 1562, 1630, 1709, 1860, 2081, 2371, 1966, 1757, 1635, 1539, 1435, 1351, 1302, 1270, 1283, 1295, 1361, 1452, 1559, 1653, 1777, 1937, 2248, 1873, 1676, 1561, 1459, 1371, 1277, 1238, 1206, 1178, 1211, 1285, 1368, 1474, 1596, 1739, 1893, 2169, 1805, 1656, 1528, 1386, 1283, 1198, 1138, 1115, 1119, 1142, 1209, 1307, 1391, 1545, 1688, 1819, 2108, 1772, 1622, 1496, 1347, 1244, 1146, 1097, 1064, 1072, 1092, 1153, 1265, 1348, 1511, 1654, 1817, 2019, 1745, 1584, 1468, 1321, 1209, 1113, 1059, 1027, 1043, 1060, 1127, 1226, 1313, 1452, 1654, 1764, 2051, 1751, 1596, 1479, 1331, 1193, 1112, 1059, 1027, 1024, 1054, 1136, 1219, 1335, 1467, 1664, 1779, 2045, 1749, 1609, 1475, 1360, 1214, 1129, 1064, 1043, 1039, 1058, 1130, 1242, 1337, 1479, 1631, 1781, 2150, 1791, 1654, 1504, 1382, 1258, 1164, 1097, 1067, 1076, 1098, 1160, 1264, 1383, 1505, 1666, 1811, 2191, 1841, 1707, 1587, 1438, 1306, 1231, 1173, 1133, 1132, 1162, 1228, 1316, 1434, 1557, 1703, 1831, 2344, 1943, 1765, 1635, 1532, 1394, 1303, 1243, 1212, 1196, 1232, 1312, 1401, 1488, 1613, 1763, 1930, 2452, 2045, 1812, 1702, 1622, 1490, 1407, 1355, 1315, 1309, 1334, 1401, 1482, 1569, 1678, 1805, 2024, 2762, 2248, 1958, 1792, 1711, 1604, 1524, 1470, 1438, 1428, 1447, 1500, 1601, 1683, 1780, 1922, 2169, 3077, 2402, 2085, 1902, 1797, 1725, 1626, 1594, 1570, 1558, 1577, 1619, 1687, 1762, 1858, 2042, 2325, 3641, 2726, 2303, 2046, 1917, 1843, 1763, 1730, 1684, 1711, 1707, 1764, 1818, 1863, 2011, 2227, 2675]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3570, 2667, 2301, 2107, 2002, 1885, 1807, 1792, 1771, 1732, 1736, 1820, 1861, 1895, 1987, 2240, 2594, 3006, 2376, 2089, 1937, 1848, 1744, 1681, 1620, 1590, 1610, 1609, 1634, 1720, 1795, 1871, 2037, 2270, 2670, 2227, 1970, 1843, 1737, 1646, 1554, 1498, 1469, 1459, 1473, 1531, 1623, 1682, 1787, 1944, 2134, 2479, 2051, 1842, 1749, 1621, 1514, 1420, 1361, 1339, 1329, 1351, 1411, 1497, 1605, 1712, 1805, 2016, 2277, 1941, 1755, 1650, 1565, 1431, 1326, 1250, 1236, 1216, 1250, 1322, 1402, 1503, 1653, 1779, 1925, 2228, 1861, 1725, 1614, 1465, 1342, 1237, 1185, 1151, 1141, 1175, 1240, 1336, 1440, 1589, 1740, 1841, 2123, 1803, 1693, 1558, 1408, 1287, 1193, 1118, 1089, 1087, 1120, 1184, 1284, 1389, 1549, 1695, 1819, 2109, 1793, 1645, 1496, 1378, 1249, 1147, 1080, 1045, 1044, 1082, 1141, 1234, 1356, 1483, 1641, 1814, 2109, 1786, 1620, 1499, 1368, 1210, 1117, 1071, 1041, 1024, 1073, 1135, 1234, 1360, 1485, 1666, 1801, 2105, 1775, 1643, 1501, 1363, 1229, 1131, 1065, 1048, 1044, 1074, 1140, 1228, 1344, 1491, 1655, 1795, 2117, 1826, 1647, 1513, 1378, 1262, 1173, 1095, 1073, 1084, 1105, 1172, 1250, 1393, 1519, 1680, 1805, 2195, 1836, 1688, 1560, 1425, 1296, 1206, 1157, 1125, 1133, 1167, 1209, 1303, 1424, 1540, 1684, 1850, 2366, 1941, 1715, 1597, 1489, 1377, 1291, 1224, 1199, 1188, 1201, 1285, 1383, 1482, 1601, 1763, 1932, 2491, 2037, 1817, 1652, 1581, 1473, 1360, 1317, 1274, 1276, 1317, 1371, 1459, 1564, 1660, 1806, 2011, 2691, 2211, 1918, 1759, 1648, 1580, 1472, 1439, 1403, 1364, 1408, 1456, 1531, 1663, 1761, 1907, 2138, 3007, 2379, 2055, 1837, 1737, 1637, 1581, 1537, 1521, 1493, 1529, 1581, 1646, 1720, 1808, 2008, 2284, 3636, 2749, 2266, 2029, 1880, 1772, 1720, 1659, 1664, 1658, 1672, 1721, 1803, 1826, 1956, 2224, 2605]
| },
| "lsc_samples_blue": {
| "uCoeff": [3496, 2508, 2190, 1986, 1928, 1836, 1762, 1747, 1726, 1681, 1687, 1787, 1844, 1827, 1957, 2161, 2596, 2882, 2249, 1962, 1829, 1777, 1697, 1645, 1627, 1563, 1542, 1565, 1609, 1662, 1711, 1781, 1989, 2287, 2539, 2087, 1881, 1763, 1696, 1591, 1508, 1471, 1440, 1416, 1446, 1500, 1582, 1609, 1732, 1883, 2102, 2369, 1895, 1758, 1690, 1565, 1502, 1389, 1330, 1330, 1305, 1318, 1383, 1471, 1541, 1679, 1789, 1989, 2298, 1887, 1672, 1611, 1506, 1377, 1284, 1259, 1226, 1202, 1251, 1300, 1388, 1474, 1613, 1752, 1947, 2155, 1758, 1639, 1531, 1412, 1307, 1212, 1156, 1145, 1148, 1164, 1224, 1308, 1390, 1520, 1709, 1841, 2071, 1740, 1616, 1494, 1366, 1245, 1170, 1108, 1078, 1082, 1125, 1182, 1253, 1373, 1527, 1652, 1808, 2007, 1692, 1575, 1465, 1325, 1225, 1118, 1065, 1034, 1035, 1069, 1133, 1235, 1313, 1469, 1641, 1800, 2029, 1719, 1552, 1446, 1343, 1189, 1110, 1066, 1035, 1024, 1059, 1127, 1223, 1330, 1464, 1646, 1767, 2025, 1719, 1556, 1440, 1317, 1212, 1107, 1064, 1038, 1036, 1058, 1128, 1216, 1323, 1455, 1622, 1763, 2105, 1688, 1589, 1455, 1338, 1219, 1152, 1098, 1056, 1056, 1087, 1150, 1225, 1342, 1476, 1660, 1789, 2080, 1753, 1590, 1497, 1389, 1259, 1177, 1136, 1108, 1093, 1132, 1180, 1269, 1374, 1490, 1641, 1821, 2240, 1797, 1631, 1518, 1427, 1312, 1259, 1200, 1186, 1159, 1178, 1262, 1342, 1457, 1552, 1712, 1892, 2390, 1914, 1694, 1574, 1507, 1417, 1329, 1292, 1255, 1247, 1285, 1332, 1436, 1493, 1601, 1742, 1978, 2549, 2098, 1824, 1695, 1601, 1513, 1438, 1400, 1371, 1354, 1386, 1423, 1510, 1613, 1705, 1821, 2095, 2888, 2238, 1956, 1794, 1695, 1592, 1549, 1493, 1475, 1485, 1472, 1536, 1612, 1673, 1740, 1919, 2282, 3627, 2654, 2160, 1974, 1861, 1770, 1696, 1678, 1661, 1626, 1682, 1697, 1754, 1799, 1925, 2189, 2592]
| }
| }, {
| "name": "1600x1200_D75_70",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3180, 2582, 2264, 2065, 2020, 1901, 1813, 1801, 1807, 1786, 1752, 1814, 1898, 1855, 1946, 2140, 2276, 2784, 2288, 2066, 1924, 1878, 1747, 1712, 1656, 1604, 1565, 1610, 1691, 1760, 1770, 1856, 1991, 2171, 2570, 2212, 2010, 1870, 1795, 1681, 1595, 1502, 1477, 1477, 1499, 1573, 1668, 1722, 1802, 1943, 2070, 2376, 2064, 1890, 1773, 1684, 1576, 1482, 1386, 1350, 1349, 1384, 1457, 1538, 1643, 1732, 1824, 1986, 2271, 1964, 1807, 1710, 1622, 1453, 1357, 1273, 1245, 1230, 1269, 1370, 1471, 1586, 1716, 1851, 1963, 2216, 1923, 1786, 1647, 1531, 1385, 1269, 1191, 1166, 1158, 1181, 1272, 1380, 1497, 1636, 1777, 1908, 2152, 1922, 1752, 1631, 1468, 1329, 1197, 1124, 1071, 1085, 1129, 1207, 1338, 1474, 1613, 1738, 1905, 2119, 1889, 1714, 1606, 1432, 1301, 1163, 1078, 1027, 1030, 1069, 1171, 1294, 1425, 1585, 1699, 1849, 2178, 1904, 1712, 1586, 1444, 1274, 1139, 1062, 1024, 1029, 1071, 1171, 1295, 1424, 1581, 1739, 1879, 2152, 1865, 1757, 1593, 1444, 1282, 1151, 1098, 1055, 1044, 1095, 1177, 1295, 1444, 1581, 1723, 1846, 2156, 1930, 1781, 1653, 1499, 1351, 1241, 1136, 1083, 1092, 1139, 1217, 1342, 1482, 1627, 1762, 1871, 2283, 1993, 1819, 1708, 1556, 1417, 1303, 1207, 1167, 1158, 1208, 1269, 1403, 1512, 1646, 1794, 1893, 2443, 2057, 1860, 1755, 1637, 1518, 1361, 1321, 1253, 1251, 1293, 1395, 1491, 1556, 1707, 1855, 1981, 2528, 2109, 1930, 1817, 1713, 1616, 1488, 1428, 1371, 1357, 1395, 1486, 1592, 1661, 1771, 1886, 2052, 2656, 2299, 2060, 1903, 1825, 1731, 1646, 1566, 1499, 1499, 1534, 1609, 1678, 1767, 1865, 1960, 2176, 2896, 2388, 2170, 1969, 1886, 1822, 1746, 1678, 1651, 1601, 1657, 1726, 1761, 1818, 1873, 2046, 2200, 3350, 2645, 2249, 2147, 1999, 1927, 1825, 1778, 1754, 1789, 1786, 1839, 1899, 1909, 1988, 2178, 2502]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2653, 2171, 1945, 1775, 1728, 1653, 1607, 1595, 1572, 1568, 1579, 1609, 1628, 1655, 1739, 1880, 2059, 2369, 1990, 1787, 1687, 1647, 1556, 1544, 1487, 1479, 1461, 1461, 1510, 1546, 1588, 1642, 1752, 1930, 2209, 1868, 1716, 1625, 1580, 1478, 1434, 1378, 1366, 1348, 1381, 1425, 1501, 1545, 1591, 1685, 1816, 2056, 1786, 1644, 1561, 1490, 1405, 1332, 1289, 1259, 1270, 1279, 1336, 1411, 1494, 1556, 1633, 1724, 1980, 1723, 1585, 1504, 1425, 1351, 1266, 1231, 1201, 1173, 1203, 1270, 1341, 1426, 1516, 1613, 1702, 1931, 1676, 1575, 1480, 1362, 1271, 1193, 1136, 1114, 1117, 1139, 1201, 1288, 1356, 1479, 1578, 1653, 1891, 1654, 1551, 1455, 1328, 1236, 1144, 1096, 1064, 1071, 1091, 1148, 1251, 1320, 1453, 1555, 1658, 1824, 1635, 1520, 1432, 1305, 1203, 1112, 1059, 1027, 1043, 1059, 1124, 1215, 1290, 1403, 1558, 1619, 1852, 1641, 1532, 1443, 1315, 1188, 1111, 1059, 1027, 1024, 1054, 1133, 1209, 1310, 1417, 1567, 1633, 1845, 1638, 1542, 1438, 1342, 1208, 1127, 1064, 1043, 1039, 1057, 1127, 1230, 1312, 1427, 1538, 1633, 1924, 1670, 1579, 1463, 1361, 1250, 1161, 1096, 1067, 1075, 1096, 1155, 1250, 1352, 1448, 1565, 1653, 1948, 1706, 1620, 1534, 1410, 1293, 1225, 1170, 1131, 1130, 1158, 1219, 1296, 1395, 1489, 1591, 1663, 2054, 1781, 1662, 1570, 1492, 1373, 1291, 1236, 1207, 1190, 1223, 1295, 1371, 1439, 1531, 1632, 1731, 2118, 1850, 1691, 1620, 1565, 1456, 1385, 1339, 1302, 1295, 1316, 1373, 1439, 1503, 1577, 1656, 1790, 2326, 1992, 1798, 1685, 1633, 1551, 1486, 1440, 1411, 1401, 1414, 1456, 1536, 1591, 1650, 1735, 1881, 2518, 2086, 1881, 1760, 1693, 1645, 1566, 1543, 1522, 1510, 1522, 1551, 1598, 1643, 1697, 1808, 1971, 2856, 2295, 2026, 1857, 1775, 1729, 1671, 1648, 1610, 1632, 1622, 1661, 1691, 1707, 1797, 1922, 2180]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2806, 2251, 2025, 1906, 1846, 1765, 1710, 1703, 1687, 1650, 1647, 1709, 1727, 1734, 1779, 1932, 2123, 2466, 2066, 1884, 1790, 1737, 1662, 1616, 1566, 1541, 1557, 1551, 1564, 1626, 1671, 1708, 1805, 1931, 2257, 1976, 1807, 1728, 1656, 1589, 1513, 1466, 1440, 1430, 1438, 1484, 1555, 1590, 1656, 1752, 1855, 2139, 1855, 1716, 1661, 1564, 1478, 1397, 1345, 1325, 1314, 1332, 1383, 1452, 1534, 1606, 1656, 1784, 2002, 1779, 1653, 1583, 1522, 1408, 1313, 1243, 1230, 1210, 1241, 1305, 1372, 1452, 1565, 1646, 1727, 1977, 1722, 1636, 1558, 1435, 1328, 1231, 1182, 1149, 1139, 1171, 1230, 1315, 1401, 1517, 1622, 1671, 1903, 1680, 1613, 1512, 1386, 1277, 1190, 1117, 1089, 1086, 1118, 1178, 1269, 1358, 1486, 1589, 1660, 1897, 1676, 1574, 1458, 1359, 1242, 1145, 1080, 1045, 1044, 1081, 1137, 1223, 1329, 1431, 1547, 1660, 1899, 1671, 1553, 1461, 1350, 1205, 1116, 1071, 1041, 1024, 1072, 1132, 1223, 1333, 1433, 1569, 1650, 1894, 1660, 1572, 1462, 1345, 1223, 1129, 1065, 1048, 1044, 1073, 1136, 1217, 1318, 1438, 1559, 1644, 1898, 1700, 1573, 1471, 1357, 1253, 1170, 1094, 1073, 1083, 1103, 1167, 1237, 1361, 1460, 1577, 1649, 1951, 1702, 1603, 1509, 1398, 1284, 1201, 1154, 1123, 1131, 1163, 1201, 1284, 1386, 1474, 1575, 1678, 2072, 1779, 1619, 1536, 1452, 1357, 1280, 1218, 1194, 1183, 1194, 1270, 1355, 1433, 1521, 1632, 1733, 2148, 1843, 1695, 1576, 1528, 1440, 1341, 1303, 1263, 1264, 1300, 1346, 1418, 1498, 1562, 1656, 1780, 2272, 1963, 1764, 1656, 1577, 1529, 1438, 1411, 1379, 1341, 1378, 1416, 1474, 1574, 1634, 1723, 1858, 2467, 2068, 1856, 1706, 1641, 1567, 1526, 1491, 1478, 1451, 1479, 1517, 1562, 1608, 1657, 1782, 1941, 2852, 2312, 1997, 1843, 1743, 1668, 1633, 1586, 1592, 1585, 1591, 1624, 1679, 1677, 1754, 1920, 2131]
| },
| "lsc_samples_blue": {
| "uCoeff": [2754, 2132, 1938, 1808, 1784, 1723, 1670, 1663, 1647, 1605, 1604, 1681, 1713, 1678, 1755, 1873, 2124, 2376, 1968, 1781, 1699, 1675, 1620, 1583, 1573, 1516, 1495, 1511, 1542, 1576, 1600, 1635, 1768, 1943, 2159, 1865, 1734, 1660, 1620, 1539, 1471, 1441, 1413, 1389, 1414, 1456, 1519, 1527, 1610, 1704, 1831, 2055, 1728, 1645, 1609, 1514, 1467, 1368, 1315, 1316, 1291, 1301, 1357, 1429, 1478, 1578, 1643, 1764, 2019, 1734, 1582, 1548, 1468, 1357, 1273, 1251, 1220, 1196, 1241, 1284, 1359, 1426, 1531, 1623, 1745, 1920, 1637, 1561, 1483, 1386, 1294, 1206, 1153, 1143, 1146, 1160, 1215, 1289, 1355, 1457, 1596, 1671, 1861, 1627, 1545, 1454, 1346, 1237, 1167, 1107, 1078, 1081, 1123, 1176, 1240, 1343, 1467, 1553, 1651, 1815, 1590, 1512, 1429, 1309, 1219, 1117, 1065, 1034, 1035, 1068, 1130, 1224, 1290, 1418, 1547, 1648, 1834, 1614, 1493, 1413, 1327, 1184, 1109, 1066, 1035, 1024, 1059, 1124, 1213, 1306, 1414, 1552, 1623, 1829, 1613, 1495, 1406, 1301, 1206, 1106, 1064, 1038, 1036, 1057, 1125, 1206, 1299, 1406, 1531, 1619, 1889, 1583, 1522, 1418, 1320, 1212, 1149, 1097, 1056, 1056, 1086, 1145, 1213, 1315, 1422, 1560, 1636, 1860, 1632, 1518, 1452, 1365, 1248, 1173, 1134, 1107, 1092, 1129, 1173, 1253, 1341, 1431, 1539, 1655, 1973, 1660, 1547, 1465, 1395, 1295, 1249, 1194, 1181, 1155, 1172, 1248, 1317, 1411, 1479, 1590, 1702, 2071, 1744, 1591, 1507, 1461, 1388, 1311, 1279, 1245, 1236, 1270, 1309, 1397, 1436, 1512, 1605, 1755, 2166, 1874, 1687, 1601, 1536, 1468, 1406, 1375, 1349, 1332, 1358, 1386, 1455, 1531, 1588, 1655, 1826, 2380, 1960, 1776, 1670, 1604, 1527, 1497, 1451, 1436, 1443, 1428, 1478, 1533, 1568, 1602, 1714, 1939, 2846, 2241, 1914, 1798, 1727, 1666, 1612, 1602, 1589, 1556, 1600, 1603, 1638, 1655, 1730, 1894, 2122]
| }
| }, {
| "name": "1600x1200_HZ_100",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5117, 3599, 3031, 2745, 2636, 2417, 2272, 2220, 2178, 2127, 2171, 2291, 2426, 2431, 2570, 3038, 3447, 4136, 3192, 2800, 2519, 2401, 2148, 2028, 1981, 1918, 1873, 1917, 2055, 2186, 2279, 2416, 2727, 3074, 3740, 2992, 2635, 2396, 2185, 2018, 1863, 1736, 1665, 1683, 1731, 1846, 2018, 2148, 2350, 2604, 2878, 3370, 2772, 2446, 2182, 2004, 1800, 1639, 1514, 1480, 1456, 1510, 1625, 1806, 2006, 2237, 2463, 2754, 3310, 2629, 2319, 2086, 1909, 1655, 1475, 1368, 1330, 1303, 1348, 1514, 1686, 1886, 2155, 2417, 2659, 3124, 2511, 2212, 2020, 1762, 1518, 1336, 1231, 1196, 1173, 1230, 1382, 1551, 1733, 1993, 2254, 2526, 2964, 2507, 2213, 1960, 1661, 1423, 1258, 1150, 1087, 1105, 1155, 1274, 1449, 1686, 1969, 2250, 2509, 2874, 2394, 2112, 1867, 1627, 1392, 1218, 1087, 1044, 1035, 1089, 1228, 1387, 1629, 1885, 2202, 2411, 3038, 2458, 2133, 1864, 1628, 1376, 1187, 1088, 1038, 1024, 1078, 1221, 1404, 1606, 1897, 2248, 2513, 3035, 2410, 2151, 1921, 1643, 1404, 1206, 1115, 1058, 1049, 1108, 1221, 1411, 1635, 1922, 2197, 2452, 3066, 2537, 2249, 1964, 1671, 1474, 1305, 1158, 1103, 1120, 1175, 1290, 1458, 1708, 2009, 2284, 2479, 3202, 2596, 2295, 2059, 1800, 1555, 1392, 1268, 1225, 1213, 1267, 1387, 1565, 1760, 2052, 2335, 2561, 3453, 2750, 2386, 2178, 1974, 1713, 1531, 1433, 1373, 1358, 1393, 1542, 1736, 1905, 2117, 2463, 2761, 3596, 2875, 2491, 2282, 2122, 1885, 1696, 1603, 1542, 1508, 1570, 1706, 1898, 2053, 2261, 2553, 2773, 3952, 3178, 2777, 2481, 2302, 2114, 1959, 1846, 1723, 1736, 1761, 1904, 2051, 2259, 2464, 2706, 3050, 4437, 3367, 2944, 2636, 2462, 2294, 2123, 2051, 1955, 1942, 2019, 2103, 2262, 2355, 2562, 2799, 3206, 5343, 3916, 3248, 2911, 2765, 2515, 2399, 2276, 2216, 2267, 2231, 2459, 2565, 2597, 2788, 3248, 3795]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3892, 2725, 2357, 2126, 2089, 1911, 1815, 1828, 1866, 1792, 1775, 1920, 1971, 1921, 2045, 2425, 2749, 3184, 2493, 2137, 1973, 1909, 1751, 1712, 1672, 1659, 1601, 1623, 1713, 1768, 1784, 1923, 2209, 2428, 2811, 2293, 2057, 1883, 1797, 1687, 1572, 1532, 1489, 1449, 1515, 1578, 1695, 1747, 1846, 2040, 2314, 2568, 2105, 1892, 1754, 1670, 1558, 1432, 1399, 1357, 1333, 1367, 1442, 1573, 1667, 1813, 1922, 2158, 2550, 2056, 1830, 1684, 1607, 1431, 1314, 1282, 1231, 1214, 1254, 1366, 1479, 1574, 1708, 1942, 2103, 2340, 1962, 1761, 1645, 1515, 1353, 1245, 1178, 1145, 1135, 1160, 1259, 1371, 1467, 1646, 1816, 1974, 2289, 1940, 1779, 1608, 1416, 1294, 1184, 1116, 1072, 1062, 1128, 1208, 1324, 1467, 1629, 1790, 1945, 2194, 1881, 1720, 1552, 1422, 1266, 1149, 1068, 1027, 1041, 1071, 1154, 1256, 1405, 1553, 1752, 1933, 2289, 1900, 1701, 1563, 1442, 1257, 1130, 1069, 1038, 1024, 1054, 1184, 1289, 1416, 1575, 1804, 1937, 2288, 1940, 1731, 1578, 1462, 1281, 1159, 1070, 1048, 1038, 1077, 1161, 1299, 1405, 1602, 1783, 1903, 2348, 1974, 1805, 1655, 1485, 1343, 1220, 1130, 1095, 1085, 1115, 1217, 1327, 1467, 1644, 1798, 1959, 2390, 2022, 1836, 1710, 1547, 1403, 1294, 1220, 1168, 1167, 1185, 1286, 1407, 1515, 1671, 1839, 1997, 2674, 2135, 1887, 1740, 1681, 1491, 1389, 1323, 1306, 1243, 1296, 1406, 1525, 1606, 1711, 1950, 2157, 2720, 2257, 1976, 1849, 1795, 1613, 1499, 1462, 1402, 1381, 1435, 1506, 1641, 1705, 1833, 2016, 2209, 2955, 2540, 2174, 1998, 1875, 1750, 1658, 1591, 1521, 1525, 1553, 1622, 1714, 1835, 1990, 2085, 2370, 3366, 2636, 2292, 2080, 1963, 1889, 1790, 1728, 1686, 1700, 1727, 1782, 1851, 1894, 2011, 2204, 2557, 4217, 3038, 2528, 2277, 2202, 2025, 1925, 1884, 1880, 1845, 1867, 1988, 2084, 2092, 2162, 2512, 2884]
| },
| "lsc_samples_greenB": {
| "uCoeff": [4091, 2920, 2456, 2230, 2143, 1974, 1900, 1863, 1868, 1801, 1820, 1920, 2011, 1970, 2065, 2477, 2829, 3244, 2550, 2199, 2021, 2000, 1851, 1761, 1720, 1667, 1647, 1647, 1739, 1808, 1864, 1955, 2216, 2531, 2980, 2443, 2109, 2015, 1854, 1732, 1669, 1550, 1505, 1506, 1542, 1609, 1733, 1772, 1920, 2098, 2331, 2627, 2243, 1987, 1848, 1786, 1601, 1477, 1389, 1371, 1341, 1407, 1477, 1603, 1711, 1839, 2008, 2203, 2640, 2145, 1874, 1798, 1708, 1517, 1366, 1302, 1283, 1218, 1289, 1395, 1515, 1625, 1804, 2012, 2109, 2424, 2057, 1842, 1740, 1577, 1400, 1287, 1201, 1167, 1148, 1184, 1289, 1415, 1515, 1662, 1878, 1974, 2385, 2037, 1828, 1693, 1478, 1336, 1212, 1131, 1069, 1085, 1132, 1226, 1356, 1505, 1663, 1879, 2029, 2323, 1947, 1778, 1626, 1460, 1282, 1169, 1092, 1050, 1040, 1085, 1174, 1291, 1445, 1605, 1811, 2007, 2347, 1986, 1730, 1627, 1491, 1277, 1153, 1081, 1049, 1024, 1062, 1181, 1313, 1452, 1616, 1842, 2006, 2381, 1949, 1776, 1635, 1479, 1297, 1164, 1070, 1047, 1038, 1080, 1173, 1303, 1471, 1614, 1810, 1939, 2321, 2031, 1822, 1642, 1478, 1336, 1218, 1134, 1087, 1090, 1127, 1200, 1328, 1478, 1663, 1842, 1996, 2436, 2057, 1833, 1708, 1549, 1394, 1274, 1196, 1140, 1137, 1188, 1253, 1373, 1519, 1672, 1862, 1995, 2730, 2122, 1889, 1758, 1631, 1465, 1352, 1283, 1269, 1223, 1252, 1374, 1490, 1568, 1695, 1959, 2158, 2761, 2257, 1952, 1819, 1723, 1554, 1430, 1415, 1352, 1341, 1361, 1462, 1582, 1662, 1766, 1965, 2168, 3099, 2468, 2120, 1927, 1849, 1710, 1594, 1536, 1462, 1459, 1480, 1549, 1670, 1812, 1934, 2092, 2356, 3317, 2589, 2214, 2012, 1914, 1773, 1730, 1657, 1591, 1605, 1640, 1683, 1800, 1861, 1960, 2189, 2476, 4174, 3022, 2470, 2198, 2128, 1953, 1827, 1827, 1739, 1796, 1768, 1906, 2008, 1998, 2155, 2497, 2998]
| },
| "lsc_samples_blue": {
| "uCoeff": [4373, 2868, 2331, 2140, 2218, 1940, 1862, 1896, 1936, 1711, 1709, 1954, 2007, 1841, 2022, 2525, 2884, 3360, 2363, 2088, 1953, 2009, 1800, 1722, 1753, 1706, 1574, 1625, 1740, 1781, 1694, 1808, 2137, 2416, 2976, 2422, 2089, 1967, 1825, 1727, 1645, 1553, 1522, 1507, 1559, 1608, 1723, 1739, 1885, 2038, 2356, 2686, 2116, 1912, 1777, 1744, 1587, 1494, 1404, 1385, 1332, 1415, 1485, 1624, 1675, 1833, 1959, 2190, 2743, 2105, 1826, 1750, 1708, 1507, 1333, 1315, 1294, 1246, 1291, 1432, 1565, 1643, 1803, 1990, 2087, 2457, 2029, 1770, 1723, 1610, 1401, 1267, 1194, 1181, 1188, 1196, 1330, 1436, 1501, 1609, 1880, 1935, 2390, 2046, 1834, 1678, 1464, 1358, 1206, 1135, 1086, 1096, 1176, 1273, 1389, 1523, 1709, 1836, 2108, 2203, 1905, 1733, 1610, 1465, 1290, 1171, 1111, 1050, 1058, 1083, 1220, 1323, 1456, 1595, 1808, 1929, 2443, 1948, 1704, 1575, 1553, 1288, 1151, 1093, 1078, 1024, 1072, 1243, 1389, 1482, 1686, 1903, 2025, 2398, 1894, 1723, 1644, 1510, 1325, 1189, 1105, 1069, 1029, 1097, 1204, 1332, 1477, 1631, 1831, 1865, 2374, 2063, 1829, 1616, 1445, 1357, 1251, 1133, 1092, 1071, 1128, 1215, 1348, 1549, 1671, 1865, 1999, 2375, 2031, 1781, 1703, 1542, 1368, 1289, 1214, 1143, 1142, 1179, 1292, 1408, 1496, 1662, 1865, 1957, 2772, 2114, 1801, 1735, 1680, 1488, 1339, 1338, 1300, 1244, 1264, 1397, 1560, 1539, 1667, 1963, 2209, 2914, 2198, 1833, 1801, 1720, 1546, 1448, 1446, 1399, 1345, 1395, 1482, 1630, 1645, 1761, 1919, 2218, 3059, 2518, 2139, 1941, 1815, 1727, 1572, 1565, 1467, 1462, 1512, 1580, 1666, 1834, 1895, 2058, 2348, 3337, 2452, 2150, 1981, 1912, 1769, 1709, 1675, 1629, 1593, 1638, 1696, 1809, 1797, 1902, 2110, 2466, 4663, 3036, 2420, 2232, 2213, 1971, 1878, 1861, 1794, 1795, 1834, 1972, 2054, 1949, 2082, 2610, 3158]
| }
| }, {
| "name": "1600x1200_HZ_70",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3889, 2947, 2596, 2426, 2379, 2223, 2117, 2082, 2048, 2000, 2028, 2115, 2202, 2170, 2235, 2528, 2720, 3289, 2695, 2458, 2278, 2215, 2020, 1928, 1895, 1840, 1796, 1828, 1937, 2029, 2077, 2148, 2336, 2516, 3058, 2581, 2358, 2204, 2053, 1926, 1798, 1688, 1624, 1638, 1677, 1770, 1905, 1991, 2122, 2274, 2412, 2822, 2438, 2227, 2041, 1911, 1743, 1603, 1490, 1459, 1435, 1482, 1581, 1732, 1887, 2050, 2188, 2350, 2809, 2345, 2139, 1973, 1839, 1619, 1456, 1357, 1321, 1294, 1334, 1486, 1634, 1794, 1998, 2171, 2300, 2687, 2265, 2060, 1926, 1712, 1496, 1327, 1227, 1193, 1170, 1224, 1366, 1516, 1666, 1869, 2050, 2213, 2575, 2274, 2071, 1879, 1624, 1409, 1253, 1149, 1087, 1104, 1152, 1265, 1424, 1629, 1856, 2057, 2212, 2512, 2185, 1988, 1799, 1595, 1381, 1215, 1087, 1044, 1035, 1088, 1222, 1368, 1580, 1787, 2022, 2140, 2648, 2242, 2008, 1797, 1597, 1366, 1185, 1088, 1038, 1024, 1077, 1215, 1385, 1560, 1799, 2063, 2224, 2642, 2199, 2022, 1848, 1610, 1392, 1203, 1115, 1058, 1049, 1107, 1215, 1390, 1586, 1819, 2018, 2173, 2657, 2299, 2103, 1883, 1633, 1458, 1299, 1157, 1102, 1119, 1172, 1280, 1433, 1649, 1892, 2086, 2188, 2749, 2336, 2133, 1961, 1748, 1531, 1381, 1263, 1222, 1209, 1260, 1371, 1529, 1690, 1921, 2118, 2241, 2920, 2445, 2196, 2055, 1899, 1673, 1510, 1420, 1363, 1347, 1378, 1512, 1680, 1811, 1965, 2209, 2380, 2995, 2521, 2265, 2129, 2018, 1822, 1657, 1575, 1519, 1485, 1538, 1656, 1815, 1928, 2071, 2261, 2364, 3217, 2728, 2476, 2277, 2157, 2013, 1887, 1790, 1678, 1688, 1704, 1823, 1935, 2086, 2217, 2355, 2541, 3508, 2830, 2574, 2376, 2268, 2149, 2014, 1958, 1874, 1859, 1920, 1980, 2095, 2140, 2266, 2392, 2612, 4047, 3183, 2766, 2561, 2487, 2307, 2228, 2131, 2082, 2123, 2081, 2259, 2319, 2305, 2406, 2685, 2964]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3032, 2294, 2068, 1922, 1919, 1788, 1717, 1735, 1771, 1703, 1682, 1795, 1820, 1755, 1824, 2070, 2232, 2596, 2156, 1923, 1820, 1790, 1668, 1644, 1614, 1604, 1549, 1564, 1634, 1668, 1662, 1750, 1937, 2046, 2362, 2028, 1880, 1763, 1709, 1626, 1530, 1498, 1459, 1420, 1477, 1527, 1619, 1646, 1705, 1828, 1990, 2207, 1898, 1758, 1665, 1609, 1519, 1408, 1381, 1342, 1318, 1347, 1411, 1521, 1589, 1692, 1750, 1893, 2215, 1874, 1718, 1614, 1561, 1408, 1302, 1274, 1225, 1208, 1244, 1346, 1443, 1515, 1613, 1780, 1866, 2066, 1807, 1667, 1586, 1482, 1338, 1239, 1175, 1143, 1133, 1156, 1248, 1348, 1425, 1567, 1685, 1776, 2036, 1796, 1689, 1558, 1393, 1284, 1181, 1115, 1072, 1062, 1126, 1201, 1306, 1429, 1557, 1669, 1761, 1965, 1750, 1640, 1509, 1401, 1259, 1147, 1068, 1027, 1041, 1070, 1150, 1244, 1374, 1493, 1641, 1755, 2044, 1768, 1625, 1520, 1421, 1250, 1129, 1069, 1038, 1024, 1054, 1179, 1275, 1385, 1513, 1686, 1760, 2041, 1800, 1650, 1533, 1439, 1273, 1157, 1070, 1048, 1038, 1076, 1157, 1284, 1374, 1536, 1667, 1731, 2083, 1824, 1712, 1601, 1458, 1331, 1216, 1129, 1094, 1084, 1113, 1210, 1309, 1429, 1570, 1676, 1772, 2106, 1857, 1732, 1645, 1512, 1386, 1286, 1216, 1166, 1164, 1180, 1274, 1381, 1469, 1588, 1704, 1794, 2312, 1939, 1767, 1664, 1629, 1464, 1374, 1313, 1298, 1236, 1285, 1384, 1485, 1544, 1615, 1786, 1909, 2324, 2021, 1829, 1749, 1722, 1570, 1472, 1441, 1385, 1364, 1411, 1471, 1583, 1622, 1708, 1826, 1932, 2470, 2224, 1976, 1862, 1779, 1683, 1609, 1553, 1489, 1491, 1512, 1567, 1636, 1722, 1824, 1864, 2032, 2728, 2266, 2048, 1910, 1836, 1790, 1714, 1665, 1628, 1639, 1657, 1695, 1739, 1754, 1821, 1933, 2140, 3259, 2528, 2202, 2045, 2014, 1886, 1813, 1785, 1784, 1750, 1762, 1854, 1915, 1894, 1916, 2135, 2326]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3171, 2440, 2146, 2006, 1964, 1842, 1791, 1766, 1773, 1711, 1721, 1795, 1854, 1795, 1840, 2109, 2288, 2639, 2200, 1973, 1860, 1868, 1757, 1688, 1657, 1611, 1591, 1585, 1657, 1702, 1729, 1776, 1943, 2121, 2489, 2147, 1923, 1876, 1760, 1667, 1619, 1514, 1474, 1473, 1502, 1555, 1653, 1667, 1766, 1874, 2003, 2253, 2010, 1839, 1748, 1714, 1559, 1451, 1371, 1355, 1326, 1385, 1444, 1548, 1627, 1714, 1820, 1928, 2286, 1947, 1756, 1716, 1654, 1489, 1352, 1293, 1275, 1212, 1278, 1374, 1476, 1561, 1695, 1837, 1871, 2132, 1886, 1738, 1672, 1540, 1383, 1279, 1198, 1165, 1146, 1179, 1277, 1389, 1469, 1581, 1737, 1776, 2112, 1878, 1732, 1635, 1452, 1325, 1208, 1130, 1069, 1084, 1130, 1219, 1337, 1464, 1587, 1744, 1828, 2069, 1806, 1692, 1577, 1437, 1274, 1167, 1092, 1050, 1040, 1084, 1169, 1277, 1411, 1539, 1691, 1815, 2090, 1841, 1651, 1579, 1467, 1270, 1151, 1081, 1049, 1024, 1062, 1176, 1298, 1418, 1549, 1719, 1816, 2116, 1808, 1690, 1586, 1455, 1289, 1162, 1070, 1047, 1038, 1079, 1168, 1288, 1435, 1547, 1690, 1760, 2061, 1873, 1727, 1589, 1452, 1325, 1214, 1133, 1087, 1089, 1125, 1194, 1310, 1439, 1587, 1713, 1801, 2142, 1886, 1730, 1643, 1514, 1377, 1267, 1193, 1138, 1135, 1183, 1243, 1350, 1472, 1589, 1723, 1793, 2356, 1928, 1769, 1680, 1583, 1440, 1338, 1275, 1262, 1217, 1242, 1354, 1453, 1510, 1602, 1794, 1909, 2355, 2021, 1809, 1722, 1657, 1515, 1407, 1396, 1337, 1326, 1342, 1430, 1529, 1584, 1652, 1785, 1901, 2578, 2167, 1932, 1801, 1756, 1647, 1550, 1501, 1434, 1430, 1445, 1501, 1597, 1702, 1778, 1869, 2021, 2693, 2230, 1985, 1853, 1794, 1687, 1660, 1600, 1542, 1553, 1579, 1608, 1695, 1726, 1780, 1922, 2081, 3229, 2516, 2157, 1980, 1952, 1824, 1727, 1734, 1659, 1707, 1675, 1783, 1851, 1817, 1910, 2124, 2406]
| },
| "lsc_samples_blue": {
| "uCoeff": [3368, 2401, 2048, 1933, 2027, 1813, 1758, 1795, 1833, 1632, 1624, 1825, 1850, 1690, 1806, 2145, 2326, 2724, 2056, 1883, 1803, 1876, 1711, 1653, 1687, 1647, 1524, 1565, 1658, 1679, 1586, 1657, 1882, 2037, 2486, 2130, 1906, 1835, 1734, 1662, 1597, 1517, 1490, 1474, 1518, 1554, 1644, 1639, 1737, 1826, 2021, 2298, 1907, 1775, 1685, 1676, 1546, 1467, 1386, 1369, 1317, 1392, 1451, 1567, 1596, 1708, 1780, 1918, 2366, 1914, 1714, 1673, 1654, 1479, 1320, 1306, 1286, 1239, 1280, 1409, 1522, 1577, 1695, 1819, 1854, 2159, 1863, 1675, 1657, 1571, 1384, 1260, 1191, 1178, 1185, 1191, 1316, 1408, 1456, 1534, 1738, 1745, 2116, 1885, 1737, 1622, 1438, 1346, 1202, 1134, 1086, 1095, 1173, 1264, 1368, 1480, 1627, 1708, 1891, 1973, 1771, 1652, 1563, 1442, 1282, 1169, 1111, 1050, 1058, 1082, 1214, 1307, 1421, 1530, 1688, 1752, 2168, 1809, 1627, 1531, 1526, 1280, 1149, 1093, 1078, 1024, 1071, 1237, 1370, 1446, 1611, 1770, 1831, 2129, 1761, 1643, 1594, 1484, 1316, 1187, 1105, 1069, 1029, 1096, 1198, 1316, 1440, 1562, 1708, 1701, 2104, 1899, 1733, 1565, 1420, 1345, 1246, 1132, 1092, 1071, 1126, 1208, 1329, 1504, 1594, 1733, 1804, 2094, 1864, 1684, 1639, 1507, 1352, 1281, 1210, 1141, 1140, 1174, 1280, 1382, 1451, 1581, 1726, 1763, 2389, 1921, 1693, 1659, 1628, 1461, 1326, 1328, 1292, 1237, 1254, 1376, 1518, 1484, 1578, 1797, 1949, 2472, 1973, 1708, 1706, 1654, 1508, 1424, 1426, 1382, 1329, 1374, 1448, 1573, 1569, 1648, 1748, 1939, 2548, 2206, 1947, 1813, 1725, 1662, 1530, 1528, 1438, 1432, 1474, 1529, 1593, 1721, 1745, 1842, 2015, 2707, 2124, 1933, 1827, 1792, 1684, 1641, 1616, 1576, 1542, 1577, 1619, 1703, 1672, 1733, 1861, 2073, 3571, 2526, 2118, 2008, 2023, 1839, 1772, 1764, 1707, 1706, 1733, 1840, 1890, 1778, 1853, 2208, 2518]
| }
| }, {
| "name": "1600x1200_TL84_100",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3405, 2687, 2311, 2074, 1938, 1889, 1802, 1751, 1722, 1739, 1698, 1786, 1849, 1921, 2044, 2248, 2555, 3071, 2437, 2133, 1932, 1822, 1726, 1642, 1587, 1541, 1555, 1571, 1648, 1741, 1812, 1898, 2060, 2350, 2716, 2261, 1978, 1813, 1702, 1603, 1513, 1465, 1410, 1423, 1434, 1517, 1618, 1708, 1802, 1968, 2187, 2523, 2077, 1851, 1737, 1607, 1513, 1393, 1335, 1316, 1304, 1342, 1406, 1512, 1597, 1740, 1864, 2046, 2389, 1989, 1778, 1634, 1514, 1389, 1309, 1223, 1194, 1211, 1235, 1318, 1419, 1524, 1678, 1815, 1948, 2271, 1875, 1723, 1561, 1454, 1328, 1215, 1152, 1122, 1132, 1161, 1240, 1335, 1455, 1591, 1726, 1948, 2193, 1828, 1672, 1521, 1396, 1265, 1148, 1099, 1077, 1079, 1112, 1179, 1289, 1417, 1562, 1721, 1893, 2154, 1807, 1645, 1486, 1356, 1223, 1130, 1069, 1040, 1028, 1084, 1139, 1246, 1374, 1515, 1679, 1854, 2147, 1826, 1615, 1491, 1364, 1215, 1125, 1065, 1024, 1036, 1066, 1145, 1234, 1370, 1518, 1663, 1876, 2181, 1797, 1654, 1504, 1378, 1220, 1142, 1063, 1048, 1046, 1084, 1145, 1250, 1363, 1515, 1682, 1872, 2264, 1872, 1681, 1548, 1414, 1280, 1165, 1113, 1073, 1085, 1107, 1185, 1295, 1423, 1565, 1720, 1913, 2320, 1951, 1742, 1594, 1451, 1352, 1228, 1173, 1134, 1135, 1174, 1247, 1340, 1471, 1612, 1768, 1963, 2385, 2027, 1827, 1674, 1554, 1421, 1340, 1244, 1232, 1217, 1256, 1332, 1426, 1555, 1675, 1803, 2017, 2624, 2132, 1918, 1769, 1659, 1529, 1439, 1349, 1308, 1316, 1356, 1430, 1527, 1645, 1750, 1896, 2147, 2887, 2331, 2016, 1871, 1767, 1652, 1555, 1499, 1429, 1437, 1474, 1536, 1638, 1716, 1844, 2002, 2291, 3179, 2558, 2200, 1983, 1845, 1755, 1674, 1617, 1558, 1574, 1608, 1665, 1761, 1822, 1939, 2126, 2420, 3826, 2897, 2496, 2212, 2025, 1880, 1805, 1765, 1737, 1737, 1771, 1781, 1906, 1979, 2095, 2334, 2694]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3305, 2551, 2231, 1987, 1868, 1781, 1733, 1708, 1663, 1703, 1715, 1721, 1759, 1810, 1970, 2181, 2464, 2900, 2268, 2002, 1839, 1740, 1643, 1591, 1550, 1516, 1524, 1524, 1579, 1631, 1743, 1839, 2006, 2291, 2519, 2093, 1863, 1726, 1628, 1553, 1461, 1417, 1409, 1392, 1422, 1471, 1573, 1636, 1750, 1883, 2094, 2363, 1955, 1776, 1646, 1532, 1449, 1378, 1314, 1274, 1300, 1332, 1376, 1462, 1560, 1686, 1776, 2006, 2229, 1858, 1677, 1576, 1464, 1366, 1290, 1233, 1195, 1190, 1219, 1278, 1364, 1471, 1613, 1732, 1896, 2166, 1804, 1678, 1546, 1415, 1289, 1203, 1146, 1125, 1126, 1144, 1213, 1313, 1425, 1544, 1696, 1866, 2072, 1746, 1622, 1469, 1351, 1249, 1144, 1099, 1074, 1066, 1111, 1171, 1278, 1393, 1519, 1670, 1827, 1999, 1722, 1584, 1458, 1329, 1218, 1126, 1079, 1024, 1029, 1068, 1133, 1238, 1346, 1469, 1631, 1785, 2033, 1728, 1604, 1473, 1335, 1201, 1119, 1057, 1024, 1027, 1063, 1139, 1225, 1335, 1464, 1659, 1787, 2041, 1759, 1586, 1476, 1351, 1228, 1138, 1070, 1046, 1038, 1074, 1139, 1239, 1349, 1484, 1634, 1800, 2086, 1792, 1630, 1503, 1392, 1268, 1168, 1109, 1084, 1076, 1105, 1182, 1276, 1394, 1505, 1676, 1810, 2163, 1848, 1672, 1579, 1447, 1318, 1223, 1171, 1136, 1140, 1164, 1234, 1344, 1436, 1565, 1727, 1876, 2273, 1933, 1764, 1614, 1520, 1410, 1326, 1252, 1216, 1221, 1257, 1316, 1395, 1513, 1635, 1773, 1933, 2453, 2029, 1834, 1726, 1628, 1513, 1431, 1356, 1324, 1317, 1353, 1389, 1492, 1591, 1728, 1829, 2034, 2721, 2258, 1956, 1803, 1715, 1605, 1546, 1487, 1461, 1453, 1484, 1527, 1600, 1703, 1776, 1913, 2143, 3044, 2413, 2119, 1908, 1792, 1717, 1649, 1613, 1557, 1573, 1575, 1637, 1701, 1757, 1875, 2087, 2381, 3594, 2718, 2293, 2053, 1923, 1825, 1771, 1750, 1735, 1707, 1724, 1789, 1813, 1920, 2040, 2267, 2584]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3478, 2686, 2303, 2068, 1933, 1876, 1815, 1760, 1742, 1739, 1729, 1795, 1840, 1892, 2001, 2204, 2555, 2925, 2376, 2075, 1920, 1816, 1737, 1683, 1619, 1578, 1566, 1589, 1632, 1707, 1791, 1898, 2018, 2300, 2679, 2193, 1946, 1812, 1724, 1631, 1532, 1480, 1455, 1455, 1470, 1530, 1601, 1698, 1790, 1919, 2139, 2438, 2035, 1850, 1740, 1625, 1523, 1434, 1363, 1329, 1338, 1358, 1407, 1483, 1608, 1721, 1815, 1994, 2296, 1936, 1761, 1628, 1537, 1420, 1317, 1267, 1230, 1228, 1255, 1314, 1398, 1499, 1627, 1772, 1929, 2198, 1835, 1702, 1588, 1440, 1334, 1241, 1179, 1147, 1146, 1157, 1228, 1334, 1448, 1563, 1696, 1873, 2134, 1799, 1652, 1546, 1394, 1279, 1192, 1119, 1072, 1091, 1122, 1179, 1279, 1396, 1509, 1665, 1829, 2041, 1762, 1639, 1481, 1358, 1226, 1150, 1074, 1044, 1033, 1075, 1148, 1233, 1355, 1491, 1655, 1806, 2058, 1767, 1599, 1493, 1368, 1223, 1117, 1064, 1024, 1028, 1066, 1130, 1232, 1359, 1488, 1645, 1786, 2045, 1760, 1618, 1474, 1367, 1232, 1128, 1065, 1034, 1029, 1080, 1122, 1228, 1353, 1483, 1630, 1788, 2114, 1784, 1641, 1494, 1381, 1244, 1159, 1102, 1074, 1073, 1103, 1168, 1251, 1385, 1520, 1659, 1801, 2172, 1828, 1682, 1541, 1411, 1291, 1206, 1135, 1118, 1128, 1149, 1212, 1299, 1417, 1541, 1685, 1865, 2298, 1911, 1711, 1583, 1482, 1372, 1285, 1213, 1195, 1191, 1228, 1270, 1380, 1470, 1603, 1739, 1888, 2491, 2041, 1792, 1645, 1557, 1461, 1371, 1319, 1273, 1291, 1300, 1376, 1445, 1555, 1663, 1787, 2007, 2672, 2188, 1924, 1738, 1645, 1548, 1463, 1424, 1400, 1397, 1418, 1460, 1568, 1633, 1741, 1868, 2163, 3016, 2354, 2035, 1842, 1733, 1636, 1584, 1540, 1499, 1513, 1533, 1561, 1631, 1725, 1814, 1997, 2309, 3543, 2669, 2249, 2025, 1827, 1739, 1687, 1649, 1640, 1626, 1642, 1695, 1741, 1849, 1945, 2194, 2583]
| },
| "lsc_samples_blue": {
| "uCoeff": [3355, 2468, 2175, 1955, 1819, 1737, 1703, 1672, 1633, 1644, 1648, 1654, 1746, 1796, 1895, 2102, 2404, 2759, 2176, 1925, 1799, 1693, 1632, 1572, 1502, 1492, 1491, 1491, 1551, 1620, 1645, 1725, 1905, 2191, 2530, 2045, 1769, 1671, 1605, 1540, 1450, 1390, 1373, 1367, 1398, 1451, 1508, 1589, 1651, 1802, 2036, 2360, 1883, 1706, 1601, 1522, 1423, 1363, 1329, 1287, 1285, 1303, 1358, 1413, 1520, 1602, 1730, 1952, 2195, 1820, 1612, 1557, 1424, 1348, 1270, 1228, 1191, 1198, 1251, 1272, 1347, 1445, 1537, 1667, 1845, 2023, 1717, 1573, 1496, 1364, 1283, 1192, 1141, 1116, 1127, 1145, 1203, 1273, 1383, 1526, 1618, 1797, 2023, 1688, 1561, 1442, 1314, 1224, 1129, 1094, 1081, 1071, 1104, 1164, 1255, 1352, 1458, 1597, 1754, 1868, 1645, 1518, 1405, 1293, 1187, 1120, 1065, 1024, 1069, 1071, 1142, 1213, 1295, 1446, 1562, 1785, 1965, 1636, 1519, 1379, 1301, 1179, 1106, 1072, 1038, 1042, 1057, 1136, 1206, 1298, 1415, 1560, 1774, 1919, 1645, 1518, 1386, 1292, 1178, 1108, 1055, 1052, 1028, 1072, 1133, 1214, 1285, 1420, 1553, 1754, 1937, 1668, 1518, 1417, 1309, 1185, 1120, 1085, 1061, 1048, 1097, 1147, 1208, 1327, 1475, 1605, 1732, 2049, 1720, 1564, 1448, 1352, 1226, 1165, 1115, 1100, 1092, 1127, 1194, 1274, 1341, 1470, 1615, 1780, 2136, 1757, 1611, 1479, 1409, 1295, 1248, 1180, 1155, 1145, 1193, 1236, 1312, 1425, 1517, 1673, 1821, 2271, 1855, 1687, 1537, 1450, 1364, 1308, 1264, 1218, 1226, 1245, 1286, 1387, 1455, 1558, 1674, 1936, 2477, 2082, 1777, 1598, 1521, 1442, 1379, 1343, 1317, 1319, 1360, 1414, 1476, 1541, 1622, 1773, 2002, 2834, 2190, 1888, 1735, 1594, 1536, 1497, 1451, 1434, 1410, 1439, 1478, 1564, 1628, 1708, 1899, 2250, 3418, 2553, 2141, 1980, 1778, 1678, 1645, 1607, 1603, 1590, 1612, 1630, 1653, 1735, 1871, 2109, 2483]
| }
| }, {
| "name": "1600x1200_TL84_70",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2691, 2266, 2032, 1879, 1792, 1769, 1705, 1667, 1643, 1656, 1614, 1680, 1717, 1755, 1823, 1938, 2096, 2514, 2113, 1919, 1786, 1714, 1646, 1581, 1536, 1496, 1507, 1517, 1577, 1644, 1685, 1730, 1822, 1989, 2291, 2003, 1814, 1703, 1625, 1550, 1475, 1435, 1385, 1396, 1402, 1472, 1551, 1612, 1668, 1771, 1895, 2173, 1876, 1724, 1650, 1552, 1477, 1372, 1320, 1303, 1290, 1324, 1378, 1466, 1527, 1630, 1703, 1807, 2090, 1818, 1673, 1569, 1475, 1368, 1297, 1217, 1189, 1205, 1226, 1301, 1388, 1471, 1587, 1675, 1745, 2011, 1734, 1634, 1510, 1425, 1314, 1209, 1149, 1120, 1130, 1157, 1230, 1314, 1414, 1519, 1610, 1756, 1959, 1701, 1595, 1478, 1374, 1256, 1145, 1098, 1077, 1078, 1110, 1173, 1274, 1383, 1498, 1611, 1719, 1933, 1688, 1574, 1449, 1338, 1217, 1128, 1069, 1040, 1028, 1083, 1135, 1234, 1346, 1459, 1579, 1692, 1929, 1705, 1548, 1454, 1347, 1209, 1124, 1065, 1024, 1036, 1065, 1141, 1223, 1343, 1462, 1567, 1711, 1955, 1679, 1582, 1465, 1359, 1214, 1140, 1063, 1048, 1046, 1083, 1141, 1238, 1336, 1459, 1582, 1706, 2016, 1739, 1603, 1503, 1391, 1271, 1162, 1112, 1073, 1084, 1105, 1179, 1279, 1389, 1500, 1610, 1735, 2050, 1798, 1650, 1540, 1422, 1337, 1222, 1170, 1132, 1133, 1170, 1237, 1319, 1429, 1537, 1645, 1767, 2086, 1850, 1715, 1605, 1512, 1398, 1327, 1237, 1226, 1211, 1246, 1314, 1394, 1498, 1584, 1665, 1799, 2250, 1920, 1780, 1678, 1599, 1492, 1415, 1333, 1295, 1302, 1337, 1400, 1479, 1569, 1638, 1729, 1885, 2419, 2058, 1846, 1752, 1683, 1594, 1514, 1467, 1403, 1409, 1439, 1489, 1568, 1619, 1703, 1798, 1973, 2592, 2206, 1973, 1828, 1734, 1671, 1610, 1564, 1511, 1524, 1550, 1592, 1662, 1693, 1763, 1873, 2040, 2985, 2423, 2177, 1992, 1865, 1761, 1708, 1679, 1657, 1655, 1678, 1676, 1765, 1802, 1863, 2002, 2193]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2621, 2164, 1970, 1808, 1733, 1676, 1645, 1629, 1591, 1625, 1629, 1624, 1642, 1664, 1765, 1888, 2032, 2389, 1983, 1814, 1708, 1643, 1572, 1535, 1503, 1473, 1479, 1474, 1516, 1549, 1627, 1682, 1781, 1946, 2144, 1870, 1719, 1628, 1560, 1504, 1427, 1390, 1384, 1367, 1391, 1430, 1511, 1550, 1625, 1704, 1825, 2050, 1777, 1660, 1570, 1484, 1418, 1358, 1300, 1263, 1287, 1314, 1350, 1421, 1495, 1584, 1632, 1777, 1965, 1711, 1586, 1517, 1429, 1346, 1279, 1226, 1190, 1185, 1211, 1263, 1337, 1423, 1531, 1607, 1705, 1928, 1675, 1595, 1497, 1389, 1277, 1198, 1144, 1123, 1124, 1140, 1204, 1294, 1387, 1478, 1585, 1691, 1862, 1632, 1551, 1431, 1332, 1241, 1142, 1098, 1074, 1066, 1109, 1166, 1263, 1361, 1460, 1568, 1666, 1808, 1616, 1520, 1423, 1313, 1212, 1124, 1079, 1024, 1029, 1067, 1130, 1227, 1320, 1418, 1538, 1636, 1837, 1622, 1539, 1437, 1319, 1196, 1118, 1057, 1024, 1027, 1062, 1136, 1215, 1310, 1414, 1563, 1639, 1842, 1647, 1522, 1439, 1334, 1222, 1136, 1070, 1046, 1038, 1073, 1135, 1228, 1323, 1431, 1541, 1648, 1873, 1671, 1558, 1462, 1371, 1259, 1165, 1108, 1084, 1075, 1103, 1176, 1261, 1362, 1448, 1573, 1653, 1926, 1712, 1589, 1526, 1419, 1305, 1217, 1168, 1134, 1138, 1160, 1225, 1323, 1397, 1496, 1611, 1699, 1999, 1772, 1661, 1551, 1481, 1388, 1313, 1245, 1210, 1215, 1247, 1299, 1366, 1461, 1550, 1641, 1734, 2119, 1837, 1709, 1641, 1571, 1477, 1407, 1340, 1310, 1303, 1334, 1362, 1448, 1522, 1620, 1675, 1798, 2295, 2000, 1796, 1694, 1637, 1551, 1506, 1456, 1433, 1424, 1449, 1481, 1535, 1608, 1647, 1727, 1862, 2494, 2094, 1908, 1766, 1688, 1638, 1587, 1560, 1511, 1524, 1520, 1567, 1610, 1639, 1711, 1843, 2011, 2823, 2289, 2018, 1862, 1780, 1714, 1678, 1666, 1655, 1628, 1637, 1683, 1687, 1754, 1820, 1952, 2116]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2742, 2265, 2026, 1874, 1788, 1757, 1717, 1675, 1661, 1656, 1641, 1688, 1710, 1731, 1789, 1905, 2096, 2407, 2066, 1873, 1776, 1709, 1656, 1618, 1565, 1530, 1517, 1533, 1563, 1615, 1667, 1730, 1790, 1953, 2263, 1949, 1788, 1702, 1645, 1575, 1493, 1449, 1427, 1426, 1436, 1483, 1536, 1604, 1658, 1732, 1859, 2108, 1842, 1723, 1653, 1568, 1486, 1410, 1347, 1315, 1323, 1339, 1379, 1440, 1537, 1614, 1664, 1767, 2017, 1775, 1658, 1564, 1496, 1397, 1305, 1259, 1224, 1221, 1245, 1297, 1368, 1448, 1543, 1640, 1731, 1954, 1701, 1615, 1535, 1412, 1320, 1235, 1176, 1145, 1144, 1153, 1219, 1313, 1408, 1494, 1585, 1696, 1912, 1677, 1577, 1501, 1372, 1270, 1189, 1118, 1072, 1090, 1120, 1173, 1264, 1364, 1451, 1564, 1668, 1842, 1649, 1569, 1444, 1340, 1220, 1148, 1074, 1044, 1033, 1074, 1144, 1222, 1328, 1438, 1559, 1653, 1858, 1655, 1534, 1456, 1350, 1217, 1116, 1064, 1024, 1028, 1065, 1127, 1221, 1332, 1436, 1551, 1638, 1845, 1648, 1550, 1438, 1349, 1226, 1126, 1065, 1034, 1029, 1079, 1119, 1217, 1326, 1431, 1538, 1639, 1896, 1664, 1567, 1454, 1360, 1236, 1156, 1101, 1074, 1072, 1101, 1163, 1238, 1354, 1461, 1559, 1645, 1933, 1695, 1598, 1492, 1385, 1279, 1201, 1133, 1116, 1126, 1145, 1204, 1281, 1380, 1475, 1576, 1690, 2019, 1754, 1615, 1523, 1446, 1352, 1274, 1207, 1190, 1186, 1219, 1256, 1352, 1422, 1522, 1613, 1699, 2148, 1847, 1674, 1569, 1507, 1429, 1351, 1305, 1262, 1278, 1284, 1350, 1405, 1490, 1565, 1641, 1777, 2258, 1945, 1769, 1638, 1575, 1500, 1429, 1397, 1376, 1372, 1388, 1420, 1506, 1548, 1618, 1692, 1877, 2474, 2049, 1840, 1710, 1637, 1566, 1528, 1493, 1458, 1469, 1482, 1500, 1549, 1612, 1662, 1774, 1959, 2787, 2252, 1984, 1839, 1699, 1639, 1604, 1577, 1571, 1556, 1565, 1602, 1627, 1696, 1746, 1898, 2115]
| },
| "lsc_samples_blue": {
| "uCoeff": [2656, 2102, 1926, 1782, 1692, 1638, 1618, 1597, 1564, 1572, 1570, 1566, 1631, 1653, 1706, 1829, 1990, 2287, 1912, 1751, 1674, 1603, 1563, 1518, 1459, 1451, 1449, 1445, 1491, 1540, 1545, 1590, 1703, 1873, 2152, 1832, 1641, 1580, 1539, 1492, 1417, 1365, 1350, 1344, 1369, 1412, 1453, 1510, 1543, 1640, 1782, 2048, 1719, 1601, 1531, 1475, 1394, 1343, 1314, 1275, 1272, 1287, 1334, 1376, 1460, 1513, 1595, 1735, 1938, 1679, 1530, 1500, 1392, 1329, 1260, 1221, 1186, 1192, 1241, 1258, 1321, 1400, 1466, 1553, 1665, 1815, 1602, 1503, 1451, 1341, 1271, 1187, 1139, 1114, 1125, 1141, 1195, 1256, 1349, 1462, 1520, 1636, 1823, 1583, 1497, 1406, 1297, 1217, 1127, 1093, 1081, 1071, 1102, 1159, 1242, 1324, 1406, 1507, 1608, 1703, 1550, 1462, 1374, 1279, 1182, 1119, 1065, 1024, 1069, 1070, 1138, 1203, 1273, 1398, 1480, 1636, 1783, 1544, 1463, 1351, 1287, 1174, 1105, 1072, 1038, 1042, 1057, 1133, 1197, 1276, 1371, 1479, 1629, 1744, 1550, 1462, 1357, 1278, 1173, 1107, 1055, 1052, 1028, 1071, 1130, 1204, 1264, 1375, 1472, 1611, 1754, 1567, 1459, 1383, 1292, 1179, 1118, 1084, 1061, 1048, 1096, 1143, 1197, 1301, 1421, 1514, 1590, 1836, 1605, 1495, 1408, 1330, 1217, 1161, 1113, 1099, 1091, 1124, 1186, 1257, 1311, 1413, 1517, 1623, 1892, 1627, 1529, 1431, 1378, 1279, 1239, 1175, 1151, 1141, 1186, 1224, 1289, 1382, 1448, 1558, 1646, 1980, 1696, 1585, 1475, 1410, 1339, 1292, 1252, 1209, 1216, 1232, 1267, 1353, 1403, 1476, 1550, 1723, 2112, 1861, 1648, 1518, 1465, 1403, 1352, 1321, 1298, 1299, 1334, 1378, 1425, 1469, 1519, 1617, 1756, 2341, 1923, 1722, 1620, 1517, 1478, 1450, 1413, 1398, 1375, 1398, 1426, 1491, 1531, 1576, 1698, 1916, 2700, 2166, 1899, 1803, 1658, 1587, 1568, 1540, 1538, 1525, 1539, 1546, 1553, 1603, 1688, 1834, 2045]
| }
| }, {
| "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.9572, 2.1169],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.431, 1.9748],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.5921, 1.5675],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.5168, 1.3168],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.655, 1.2367],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.8055, 2.2341],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.3512, 1.9695],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.362, -0.1409, -0.2211, -0.4583, 2.0188, -0.5606, -0.345, -1.3134, 2.6584],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.0894, 0.001, -0.0904, -0.2122, 1.5755, -0.3633, -0.1145, -0.6247, 1.7393],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.0784, -0.9787, -0.0997, -0.4052, 1.7349, -0.3296, -0.0246, -0.7994, 1.824],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.5418, -0.4684, -0.0734, -0.1659, 1.4255, -0.2596, 0.0791, -0.4732, 1.3941],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.043, -0.9067, -0.1364, -0.3559, 1.6956, -0.3397, -0.0027, -0.6221, 1.6248],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.4759, -0.4532, -0.0227, -0.1043, 1.3805, -0.2761, 0.1438, -0.4248, 1.281],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.7468, -0.643, -0.1038, -0.2798, 1.696, -0.4161, -0.0038, -0.4888, 1.4926],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.2613, -0.1926, -0.0687, -0.1143, 1.4541, -0.3398, 0.1518, -0.3597, 1.2079],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.7651, -0.6392, -0.1259, -0.2567, 1.7155, -0.4588, -0.0141, -0.5027, 1.5168],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.421, -0.333, -0.088, -0.108, 1.4452, -0.3372, 0.1418, -0.3008, 1.159],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.2806, 0.0685, -0.3491, -0.5543, 1.7055, -0.1512, -0.6605, -1.5979, 3.2584],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.0337, 0.1284, -0.1622, -0.2633, 1.3932, -0.1299, -0.3093, -0.7251, 2.0344],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.8134, -0.6594, -0.154, -0.4163, 1.7789, -0.3626, -0.0797, -0.806, 1.8857],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.3397, -0.259, -0.0807, -0.2061, 1.4943, -0.2882, 0.0592, -0.42, 1.3608],
| "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": [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": 600,
| "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
| }, {
| "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": 600,
| "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.2
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.3
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.4
| }, {
| "iso": 600,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.55
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.6,
| "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.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.2
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.3
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.4
| }, {
| "iso": 600,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.55
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.6,
| "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.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.45
| }, {
| "iso": 600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 1600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 3200,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 6400,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 12800,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 25600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 51200,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 102400,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 204800,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.45
| }, {
| "iso": 600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 1600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 3200,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 6400,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 12800,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 25600,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 51200,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 102400,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }, {
| "iso": 204800,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0625,
| "hi_clipwgt": 0.0625,
| "softwgt": 0.35
| }],
| "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": 40,
| "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": 35,
| "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": 600,
| "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": 40,
| "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": 35,
| "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": 600,
| "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
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "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": 600,
| "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
| }, {
| "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": 600,
| "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.4,
| "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.6,
| "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": 0.9,
| "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.2,
| "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.3,
| "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": 600,
| "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": 1.5,
| "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.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": 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.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": 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.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": 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.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": 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.4,
| "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.6,
| "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": 0.9,
| "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.2,
| "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.3,
| "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": 600,
| "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": 1.5,
| "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.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": 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.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": 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.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": 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.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": 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
| }],
| "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.5,
| "sharp_ratio": 12,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "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.6,
| "sharp_ratio": 10,
| "bf_gain": 0.8,
| "bf_ratio": 0.6,
| "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.8,
| "pbf_add": 9,
| "gaus_ratio": 0.8,
| "sharp_ratio": 8,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "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": 600,
| "pbf_gain": 1.2,
| "pbf_ratio": 1,
| "pbf_add": 12,
| "gaus_ratio": 1,
| "sharp_ratio": 6,
| "bf_gain": 1.2,
| "bf_ratio": 1,
| "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": 1,
| "pbf_add": 15,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "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": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "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": 1,
| "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": 1,
| "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": 12,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "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.6,
| "sharp_ratio": 10,
| "bf_gain": 0.8,
| "bf_ratio": 0.6,
| "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.8,
| "pbf_add": 9,
| "gaus_ratio": 0.8,
| "sharp_ratio": 8,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "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": 600,
| "pbf_gain": 1.2,
| "pbf_ratio": 1,
| "pbf_add": 12,
| "gaus_ratio": 1,
| "sharp_ratio": 6,
| "bf_gain": 1.2,
| "bf_ratio": 1,
| "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": 1,
| "pbf_add": 15,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "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": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "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": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "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": 1,
| "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": 1,
| "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
| }],
| "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
| }
| }
| }
|
|