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": [65, 65, 65, 65, 65, 65],
| "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": [1.07722, 1, 1, 2.12424],
| "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.333248, 0.333515, 0.333238],
| "rotationMat": [-0.660199, 0.751091, -0.221307, 0.751091, 0.660199, 0.324631, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0449219, 0.138672, 0.0136719, 28.625, -0.0859375, 0.00976562, 0.0703125, 131.312, 0.0449219, -0.0644531, 0.0527344, 114.188, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-963, -797, -34, -52]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-406, -114, 93, -30]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-633, -378, 19, -30]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1088, -904, 46, 7]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 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, 0.2, 0.7, 1, 1, 1, 0.7, 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": [1.07722, 1, 1, 2.12424],
| "uvRegion": {
| "u": [122, 53, 56, 123],
| "v": [129, 145, 108, 127]
| },
| "xyRegion": {
| "normal": [-1.05833, -0.73537, 0.0463855, -0.0403615],
| "big": [-1.05833, -0.736852, 0.0714458, -0.070241]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 135.875, 113.938, 187.062, 98.25, 115.812],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.43205, 1, 1, 1.9139],
| "uvRegion": {
| "u": [56, 68.5, 125, 124],
| "v": [108, 79, 125, 126]
| },
| "xyRegion": {
| "normal": [-0.736852, -0.398048, -0.0509639, -0.102851],
| "big": [-0.735085, -0.399074, -0.0509639, -0.125341]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 133.562, 114.938, 190.188, 117.438, 108.938],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.70275, 1, 1, 1.53744],
| "uvRegion": {
| "u": [67, 98, 127.5, 124.5],
| "v": [82, 52, 122.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.399992, 0.101242, -0.021004, -0.150803],
| "big": [-0.399992, 0.101242, -0.0222892, -0.163012]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.25, 115.188, 190.938, 132.875, 109.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.66503, 1, 1, 1.31707],
| "uvRegion": {
| "u": [90, 115, 128, 126],
| "v": [64.5, 44, 123, 123.5]
| },
| "xyRegion": {
| "normal": [-0.399992, 0.102106, 0.0451807, -0.021004],
| "big": [-0.399992, 0.101667, 0.089759, -0.0235743]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 131, 114.812, 190.812, 139.875, 115.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.78792, 1, 1, 1.21198],
| "uvRegion": {
| "u": [129, 128, 111, 125],
| "v": [123, 123, 47, 41]
| },
| "xyRegion": {
| "normal": [0.100185, 0.520926, 0.0261446, -0.0548193],
| "big": [0.100185, 0.520926, 0.0618072, -0.0750602]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 130.562, 114.812, 190.25, 146.938, 116.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.901187, 1, 1, 2.32306],
| "uvRegion": {
| "u": [121, 58, 53, 122],
| "v": [133, 167, 142, 129]
| },
| "xyRegion": {
| "normal": [-1.45665, -1.0561, 0.00946452, -0.073427],
| "big": [-1.45536, -1.05869, 0.0403079, -0.086921]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 137.625, 113.125, 183.188, 85.375, 120.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.32304, 1, 1, 1.92858],
| "uvRegion": {
| "u": [123, 55, 62, 124.5],
| "v": [127, 119, 96, 125.5]
| },
| "xyRegion": {
| "normal": [-0.737209, -0.399074, -0.00210174, -0.0528916],
| "big": [-0.736852, -0.405358, 0.0171754, -0.0519277]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 134.25, 114.312, 189.688, 112.5, 111.188],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.43205, 1, 1, 1.9139],
| "defaultDayGainHigh": [1.70275, 1, 1, 1.53744],
| "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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 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": [1.70275, 1, 1, 1.53744],
| "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.731,
| "meanH": 24.1514
| }, {
| "index": 13,
| "meanC": 20.1531,
| "meanH": -72.9686
| }, {
| "index": 5,
| "meanC": 9.85721,
| "meanH": -66.0241
| }, {
| "index": 10,
| "meanC": 9.93511,
| "meanH": -45.2915
| }, {
| "index": 14,
| "meanC": 15.3204,
| "meanH": 148.088
| }, {
| "index": 16,
| "meanC": 22.4433,
| "meanH": 92.1598
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.07722,
| "BGain": 2.12424
| }, {
| "name": "TL84",
| "RGain": 1.70275,
| "BGain": 1.53744
| }, {
| "name": "D50",
| "RGain": 1.32304,
| "BGain": 1.92858
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [1.70275, 1, 1, 1.53744],
| "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": 0,
| "Single_enable": 0,
| "Double_enable": 0,
| "Triple_enable": 0,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Triple_level_len": 13
| }
| },
| "Expert_Mode": {
| "stage1_Enable": 1,
| "grayscale_mode": 0,
| "dpcc_out_sel": 1,
| "stage1_g_3x3": 0,
| "stage1_rb_3x3": 0,
| "stage1_inc_rb_center": 1,
| "stage1_inc_g_center": 1,
| "rk_out_sel": 1,
| "SetEnable": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "fix_set": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "set1": {
| "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": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "sw_dis_scale_max": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_pg_fac": [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
| }
| }
| },
| "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": [1.0424, 2.1513],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.4108, 1.9932],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.7329, 1.5139],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.6012, 1.3668],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.7245, 1.2514],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.8749, 2.3385],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.2859, 1.9423],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [0, 0, 0, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "1600x1200_A_100",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4355, 3607, 3223, 2825, 2684, 2529, 2400, 2324, 2281, 2237, 2231, 2357, 2424, 2581, 2726, 2907, 3179, 3992, 3309, 2966, 2597, 2349, 2235, 2088, 1974, 1984, 1960, 2025, 2060, 2179, 2318, 2432, 2656, 2991, 3645, 3069, 2663, 2356, 2165, 1995, 1895, 1767, 1747, 1758, 1786, 1868, 1997, 2140, 2291, 2517, 2830, 3463, 2808, 2512, 2216, 1985, 1816, 1663, 1584, 1527, 1553, 1595, 1694, 1803, 1976, 2202, 2372, 2712, 3311, 2668, 2349, 2036, 1845, 1655, 1497, 1431, 1360, 1384, 1443, 1534, 1699, 1865, 2046, 2274, 2561, 3149, 2545, 2216, 1955, 1747, 1539, 1375, 1295, 1239, 1260, 1318, 1422, 1570, 1746, 1958, 2187, 2474, 3016, 2469, 2144, 1856, 1611, 1427, 1299, 1191, 1141, 1149, 1216, 1320, 1497, 1670, 1875, 2112, 2420, 2915, 2433, 2105, 1788, 1567, 1373, 1216, 1134, 1061, 1068, 1157, 1269, 1437, 1628, 1858, 2093, 2364, 2926, 2410, 2084, 1789, 1536, 1345, 1217, 1090, 1024, 1030, 1119, 1253, 1441, 1604, 1843, 2065, 2346, 2904, 2430, 2099, 1820, 1575, 1358, 1224, 1099, 1032, 1039, 1133, 1263, 1424, 1632, 1833, 2084, 2344, 2903, 2437, 2129, 1833, 1626, 1428, 1269, 1170, 1104, 1110, 1185, 1334, 1457, 1650, 1865, 2070, 2364, 3006, 2545, 2177, 1938, 1697, 1519, 1359, 1254, 1191, 1200, 1283, 1400, 1547, 1712, 1935, 2137, 2422, 3155, 2597, 2274, 2005, 1805, 1597, 1467, 1364, 1315, 1341, 1395, 1502, 1662, 1832, 2026, 2234, 2507, 3299, 2738, 2404, 2178, 1946, 1769, 1616, 1514, 1453, 1484, 1541, 1638, 1786, 1954, 2117, 2329, 2591, 3422, 2876, 2575, 2289, 2112, 1942, 1795, 1703, 1639, 1648, 1712, 1812, 1963, 2100, 2267, 2406, 2712, 3624, 3015, 2742, 2466, 2277, 2117, 1980, 1883, 1830, 1855, 1905, 1989, 2110, 2256, 2415, 2568, 2829, 3852, 3251, 2964, 2700, 2525, 2359, 2282, 2145, 2100, 2099, 2147, 2219, 2349, 2455, 2551, 2779, 3004]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3245, 2765, 2437, 2272, 2057, 1944, 1880, 1846, 1822, 1827, 1851, 1884, 1897, 1989, 2084, 2220, 2505, 2956, 2500, 2212, 2010, 1851, 1760, 1680, 1660, 1627, 1637, 1644, 1697, 1753, 1819, 1911, 2059, 2318, 2810, 2304, 2054, 1842, 1721, 1628, 1547, 1514, 1501, 1483, 1532, 1556, 1635, 1720, 1819, 1923, 2176, 2647, 2132, 1898, 1725, 1619, 1506, 1434, 1388, 1370, 1377, 1391, 1461, 1520, 1620, 1715, 1855, 2095, 2486, 2044, 1822, 1634, 1523, 1392, 1334, 1282, 1270, 1271, 1297, 1362, 1450, 1565, 1634, 1781, 1957, 2373, 1944, 1743, 1587, 1443, 1331, 1258, 1204, 1189, 1171, 1230, 1296, 1382, 1472, 1609, 1721, 1935, 2318, 1916, 1707, 1513, 1397, 1281, 1193, 1146, 1110, 1125, 1150, 1236, 1324, 1445, 1562, 1713, 1861, 2250, 1869, 1641, 1494, 1358, 1241, 1165, 1101, 1050, 1064, 1105, 1192, 1305, 1408, 1530, 1679, 1877, 2243, 1866, 1670, 1504, 1365, 1229, 1143, 1075, 1024, 1025, 1096, 1185, 1277, 1387, 1529, 1674, 1849, 2244, 1868, 1667, 1490, 1369, 1238, 1150, 1085, 1033, 1035, 1101, 1208, 1293, 1401, 1543, 1688, 1863, 2278, 1885, 1693, 1528, 1396, 1281, 1183, 1138, 1080, 1088, 1134, 1227, 1323, 1434, 1564, 1687, 1846, 2323, 1956, 1722, 1584, 1432, 1334, 1231, 1189, 1159, 1160, 1202, 1264, 1380, 1494, 1609, 1744, 1926, 2445, 2001, 1801, 1650, 1524, 1425, 1331, 1277, 1250, 1235, 1293, 1364, 1444, 1551, 1667, 1763, 1993, 2489, 2115, 1859, 1712, 1598, 1494, 1431, 1368, 1346, 1361, 1392, 1443, 1536, 1643, 1708, 1836, 2010, 2610, 2170, 1965, 1830, 1703, 1595, 1551, 1475, 1485, 1474, 1502, 1548, 1630, 1721, 1810, 1907, 2143, 2748, 2299, 2081, 1903, 1809, 1729, 1646, 1620, 1585, 1595, 1625, 1663, 1731, 1785, 1890, 2020, 2227, 2982, 2554, 2319, 2101, 1981, 1870, 1846, 1780, 1747, 1793, 1796, 1836, 1874, 1911, 2037, 2109, 2360]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3378, 2824, 2513, 2268, 2107, 1977, 1945, 1838, 1833, 1839, 1835, 1882, 1946, 2030, 2108, 2267, 2494, 3086, 2522, 2244, 2025, 1891, 1766, 1705, 1658, 1644, 1639, 1667, 1690, 1780, 1856, 1967, 2076, 2343, 2839, 2364, 2080, 1880, 1742, 1659, 1562, 1516, 1494, 1514, 1530, 1574, 1629, 1736, 1846, 1964, 2254, 2636, 2200, 1945, 1762, 1633, 1515, 1450, 1395, 1357, 1384, 1404, 1478, 1551, 1657, 1772, 1886, 2112, 2599, 2112, 1870, 1687, 1555, 1435, 1347, 1299, 1261, 1269, 1311, 1358, 1460, 1587, 1671, 1817, 2035, 2426, 2015, 1785, 1600, 1468, 1355, 1262, 1221, 1184, 1186, 1223, 1288, 1408, 1503, 1642, 1767, 1980, 2389, 1961, 1732, 1558, 1425, 1306, 1216, 1146, 1113, 1120, 1175, 1241, 1351, 1456, 1582, 1729, 1955, 2296, 1926, 1675, 1535, 1371, 1270, 1169, 1104, 1052, 1060, 1119, 1212, 1325, 1439, 1557, 1693, 1907, 2288, 1897, 1690, 1515, 1380, 1255, 1142, 1077, 1024, 1032, 1100, 1199, 1310, 1414, 1564, 1694, 1901, 2275, 1879, 1680, 1527, 1390, 1253, 1162, 1081, 1031, 1044, 1104, 1201, 1305, 1433, 1571, 1675, 1881, 2307, 1930, 1716, 1543, 1416, 1292, 1200, 1137, 1076, 1081, 1150, 1234, 1325, 1445, 1582, 1697, 1913, 2347, 1938, 1752, 1570, 1439, 1336, 1257, 1176, 1154, 1162, 1194, 1278, 1360, 1487, 1602, 1735, 1916, 2412, 2029, 1796, 1635, 1515, 1405, 1317, 1271, 1241, 1245, 1282, 1352, 1427, 1548, 1636, 1785, 1960, 2509, 2071, 1873, 1723, 1564, 1475, 1409, 1355, 1337, 1345, 1363, 1433, 1512, 1605, 1716, 1833, 2001, 2690, 2197, 1962, 1819, 1684, 1570, 1523, 1470, 1440, 1447, 1472, 1533, 1606, 1704, 1782, 1892, 2096, 2807, 2311, 2040, 1909, 1766, 1675, 1619, 1584, 1571, 1575, 1568, 1609, 1701, 1774, 1854, 1976, 2172, 2901, 2467, 2246, 2065, 1946, 1844, 1794, 1769, 1733, 1738, 1759, 1802, 1852, 1905, 2005, 2130, 2359]
| },
| "lsc_samples_blue": {
| "uCoeff": [3305, 2676, 2316, 2092, 2007, 1876, 1853, 1751, 1737, 1731, 1744, 1790, 1870, 1932, 2008, 2222, 2463, 2937, 2384, 2081, 1923, 1788, 1702, 1626, 1600, 1574, 1574, 1583, 1625, 1692, 1743, 1854, 1986, 2324, 2757, 2202, 1999, 1777, 1659, 1625, 1549, 1468, 1457, 1452, 1493, 1507, 1610, 1646, 1775, 1841, 2192, 2524, 2017, 1848, 1692, 1597, 1518, 1413, 1391, 1361, 1345, 1403, 1437, 1504, 1562, 1674, 1793, 2094, 2459, 1956, 1807, 1651, 1525, 1392, 1356, 1291, 1269, 1261, 1304, 1372, 1442, 1532, 1646, 1738, 1962, 2285, 1914, 1727, 1586, 1467, 1333, 1275, 1215, 1184, 1201, 1236, 1293, 1384, 1473, 1595, 1703, 1893, 2207, 1889, 1665, 1510, 1415, 1298, 1219, 1155, 1121, 1138, 1160, 1254, 1363, 1439, 1550, 1695, 1913, 2184, 1829, 1594, 1506, 1374, 1262, 1183, 1126, 1056, 1081, 1129, 1199, 1311, 1405, 1536, 1656, 1889, 2159, 1814, 1652, 1499, 1370, 1252, 1160, 1096, 1024, 1036, 1093, 1203, 1286, 1381, 1501, 1664, 1847, 2141, 1798, 1667, 1489, 1381, 1272, 1181, 1103, 1041, 1053, 1114, 1210, 1295, 1405, 1507, 1627, 1806, 2147, 1786, 1626, 1519, 1409, 1275, 1211, 1126, 1088, 1098, 1142, 1227, 1328, 1443, 1542, 1648, 1836, 2132, 1819, 1677, 1550, 1434, 1345, 1247, 1198, 1152, 1153, 1219, 1287, 1361, 1467, 1547, 1670, 1865, 2272, 1889, 1700, 1619, 1506, 1410, 1325, 1276, 1251, 1249, 1287, 1337, 1395, 1519, 1615, 1734, 1910, 2402, 2004, 1800, 1671, 1557, 1479, 1391, 1353, 1330, 1328, 1370, 1407, 1485, 1557, 1682, 1797, 1982, 2457, 2037, 1846, 1709, 1645, 1552, 1487, 1487, 1444, 1454, 1468, 1517, 1581, 1641, 1724, 1822, 2047, 2539, 2139, 1971, 1833, 1709, 1674, 1611, 1568, 1537, 1545, 1588, 1609, 1662, 1694, 1762, 1899, 2183, 2882, 2420, 2194, 1948, 1943, 1856, 1768, 1744, 1726, 1721, 1768, 1805, 1842, 1879, 1927, 2086, 2317]
| }
| }, {
| "name": "1600x1200_A_70",
| "resolution": "1600x1200",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3356, 2953, 2747, 2491, 2419, 2320, 2229, 2174, 2140, 2097, 2081, 2171, 2201, 2292, 2358, 2430, 2533, 3184, 2785, 2592, 2343, 2170, 2097, 1982, 1888, 1900, 1876, 1926, 1942, 2023, 2109, 2161, 2282, 2455, 2987, 2642, 2381, 2170, 2036, 1905, 1828, 1717, 1700, 1708, 1727, 1790, 1887, 1984, 2073, 2205, 2376, 2893, 2467, 2283, 2071, 1894, 1758, 1626, 1557, 1504, 1527, 1562, 1645, 1729, 1860, 2021, 2114, 2318, 2809, 2377, 2165, 1928, 1780, 1619, 1477, 1418, 1350, 1372, 1425, 1505, 1646, 1775, 1904, 2053, 2224, 2707, 2293, 2064, 1867, 1698, 1516, 1365, 1290, 1235, 1255, 1309, 1404, 1533, 1678, 1839, 1995, 2172, 2617, 2242, 2010, 1784, 1577, 1412, 1293, 1189, 1140, 1148, 1212, 1309, 1469, 1614, 1774, 1941, 2140, 2545, 2218, 1982, 1726, 1538, 1362, 1213, 1133, 1061, 1068, 1155, 1261, 1415, 1579, 1763, 1930, 2102, 2557, 2201, 1965, 1728, 1510, 1336, 1214, 1090, 1024, 1030, 1118, 1246, 1420, 1558, 1751, 1908, 2090, 2536, 2216, 1976, 1756, 1546, 1348, 1221, 1099, 1032, 1039, 1131, 1256, 1403, 1583, 1741, 1922, 2086, 2527, 2215, 1997, 1763, 1591, 1413, 1264, 1168, 1103, 1109, 1182, 1323, 1432, 1596, 1765, 1905, 2096, 2593, 2293, 2030, 1851, 1652, 1497, 1349, 1249, 1188, 1197, 1275, 1383, 1512, 1647, 1819, 1953, 2131, 2688, 2319, 2100, 1900, 1743, 1564, 1448, 1353, 1307, 1331, 1379, 1474, 1611, 1746, 1887, 2020, 2182, 2768, 2410, 2192, 2038, 1859, 1714, 1582, 1490, 1434, 1462, 1511, 1593, 1714, 1841, 1949, 2079, 2225, 2820, 2489, 2309, 2112, 1989, 1857, 1736, 1657, 1599, 1606, 1659, 1739, 1857, 1949, 2053, 2118, 2288, 2916, 2558, 2411, 2234, 2108, 1992, 1885, 1806, 1760, 1780, 1818, 1879, 1963, 2057, 2147, 2214, 2337, 3004, 2687, 2544, 2389, 2286, 2173, 2125, 2015, 1979, 1975, 2007, 2053, 2138, 2190, 2220, 2334, 2410]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2579, 2324, 2131, 2041, 1892, 1816, 1773, 1751, 1732, 1734, 1748, 1764, 1758, 1810, 1855, 1917, 2061, 2430, 2161, 1983, 1851, 1739, 1676, 1615, 1603, 1574, 1582, 1582, 1620, 1655, 1691, 1740, 1822, 1966, 2361, 2037, 1877, 1728, 1642, 1572, 1507, 1481, 1470, 1452, 1493, 1507, 1566, 1623, 1682, 1735, 1887, 2268, 1920, 1763, 1640, 1563, 1471, 1410, 1370, 1354, 1360, 1370, 1429, 1473, 1547, 1609, 1696, 1845, 2165, 1864, 1711, 1569, 1483, 1371, 1321, 1274, 1263, 1263, 1286, 1343, 1416, 1507, 1549, 1647, 1752, 2092, 1792, 1651, 1534, 1415, 1317, 1251, 1200, 1186, 1168, 1224, 1284, 1358, 1430, 1534, 1606, 1745, 2059, 1776, 1626, 1471, 1375, 1272, 1190, 1145, 1109, 1124, 1147, 1228, 1306, 1409, 1498, 1605, 1693, 2010, 1740, 1571, 1456, 1340, 1234, 1163, 1101, 1050, 1064, 1104, 1187, 1290, 1377, 1472, 1579, 1710, 2007, 1739, 1597, 1466, 1348, 1223, 1141, 1075, 1024, 1025, 1095, 1180, 1264, 1358, 1472, 1576, 1689, 2006, 1739, 1594, 1452, 1351, 1231, 1148, 1085, 1033, 1035, 1100, 1202, 1279, 1370, 1484, 1587, 1699, 2027, 1749, 1613, 1485, 1374, 1272, 1180, 1137, 1080, 1087, 1132, 1220, 1306, 1399, 1500, 1583, 1681, 2053, 1802, 1633, 1531, 1405, 1320, 1225, 1186, 1157, 1157, 1197, 1253, 1356, 1449, 1534, 1625, 1738, 2133, 1828, 1693, 1583, 1484, 1402, 1318, 1269, 1243, 1228, 1282, 1344, 1411, 1495, 1578, 1632, 1780, 2147, 1906, 1730, 1628, 1544, 1460, 1407, 1351, 1331, 1345, 1371, 1412, 1488, 1568, 1603, 1681, 1780, 2212, 1931, 1803, 1717, 1626, 1542, 1510, 1444, 1455, 1444, 1465, 1500, 1561, 1623, 1675, 1723, 1862, 2279, 2007, 1877, 1761, 1703, 1648, 1584, 1566, 1536, 1544, 1565, 1590, 1636, 1662, 1723, 1792, 1899, 2395, 2166, 2039, 1901, 1828, 1752, 1744, 1693, 1666, 1704, 1700, 1723, 1738, 1747, 1818, 1834, 1959]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2672, 2368, 2191, 2037, 1934, 1844, 1830, 1744, 1742, 1745, 1734, 1763, 1799, 1844, 1873, 1952, 2053, 2524, 2178, 2009, 1864, 1774, 1681, 1637, 1601, 1590, 1584, 1603, 1614, 1678, 1722, 1785, 1835, 1984, 2383, 2084, 1899, 1760, 1661, 1600, 1521, 1483, 1464, 1481, 1491, 1523, 1560, 1636, 1705, 1768, 1945, 2259, 1975, 1803, 1672, 1575, 1479, 1425, 1377, 1342, 1367, 1382, 1445, 1501, 1580, 1657, 1721, 1858, 2254, 1920, 1752, 1616, 1513, 1411, 1333, 1290, 1254, 1261, 1299, 1339, 1425, 1527, 1581, 1677, 1813, 2134, 1851, 1688, 1545, 1438, 1340, 1255, 1217, 1181, 1183, 1217, 1276, 1382, 1458, 1563, 1644, 1781, 2116, 1814, 1648, 1512, 1402, 1296, 1212, 1145, 1112, 1119, 1172, 1233, 1332, 1419, 1515, 1618, 1769, 2047, 1788, 1601, 1494, 1353, 1262, 1167, 1104, 1052, 1060, 1118, 1206, 1309, 1405, 1496, 1591, 1734, 2043, 1765, 1615, 1476, 1362, 1248, 1140, 1077, 1024, 1032, 1099, 1194, 1295, 1383, 1503, 1593, 1731, 2030, 1749, 1605, 1486, 1371, 1246, 1160, 1081, 1031, 1044, 1103, 1196, 1290, 1400, 1509, 1576, 1713, 2050, 1787, 1633, 1498, 1393, 1282, 1196, 1136, 1076, 1080, 1147, 1226, 1307, 1409, 1515, 1591, 1735, 2072, 1787, 1659, 1518, 1411, 1322, 1250, 1173, 1152, 1159, 1189, 1267, 1337, 1443, 1528, 1617, 1730, 2108, 1851, 1689, 1570, 1476, 1383, 1305, 1263, 1235, 1238, 1271, 1333, 1395, 1492, 1551, 1650, 1755, 2162, 1871, 1742, 1638, 1513, 1442, 1387, 1339, 1323, 1329, 1343, 1403, 1466, 1534, 1609, 1678, 1773, 2272, 1952, 1801, 1708, 1609, 1520, 1485, 1440, 1413, 1418, 1438, 1486, 1540, 1609, 1652, 1711, 1827, 2321, 2016, 1844, 1766, 1666, 1601, 1560, 1534, 1523, 1525, 1514, 1542, 1610, 1653, 1694, 1758, 1859, 2338, 2102, 1981, 1872, 1799, 1730, 1698, 1683, 1653, 1656, 1668, 1694, 1720, 1742, 1793, 1850, 1959]
| },
| "lsc_samples_blue": {
| "uCoeff": [2621, 2258, 2036, 1894, 1850, 1757, 1750, 1667, 1657, 1649, 1654, 1683, 1735, 1764, 1795, 1919, 2031, 2416, 2072, 1877, 1778, 1685, 1625, 1566, 1548, 1526, 1524, 1528, 1556, 1602, 1627, 1694, 1765, 1970, 2322, 1956, 1832, 1672, 1587, 1570, 1509, 1438, 1429, 1423, 1457, 1462, 1544, 1559, 1646, 1670, 1899, 2174, 1827, 1721, 1611, 1543, 1482, 1391, 1373, 1346, 1329, 1381, 1407, 1459, 1497, 1574, 1646, 1844, 2144, 1791, 1698, 1584, 1485, 1371, 1342, 1282, 1262, 1253, 1292, 1352, 1409, 1478, 1559, 1612, 1756, 2022, 1767, 1637, 1533, 1437, 1319, 1268, 1211, 1181, 1198, 1230, 1281, 1360, 1430, 1522, 1591, 1712, 1970, 1753, 1589, 1468, 1392, 1288, 1215, 1154, 1120, 1137, 1157, 1246, 1343, 1403, 1487, 1589, 1735, 1957, 1706, 1529, 1467, 1355, 1255, 1181, 1125, 1056, 1081, 1127, 1194, 1296, 1374, 1478, 1560, 1720, 1939, 1695, 1581, 1461, 1352, 1245, 1158, 1096, 1024, 1036, 1092, 1198, 1273, 1353, 1447, 1567, 1687, 1923, 1680, 1594, 1451, 1362, 1264, 1179, 1103, 1041, 1053, 1113, 1204, 1281, 1374, 1452, 1535, 1653, 1922, 1666, 1554, 1476, 1387, 1266, 1207, 1125, 1088, 1097, 1140, 1220, 1310, 1407, 1480, 1550, 1673, 1901, 1687, 1594, 1500, 1406, 1330, 1240, 1195, 1150, 1150, 1213, 1275, 1338, 1425, 1480, 1563, 1690, 1998, 1736, 1606, 1556, 1468, 1388, 1312, 1268, 1244, 1242, 1276, 1319, 1366, 1466, 1533, 1608, 1716, 2080, 1817, 1681, 1592, 1507, 1446, 1370, 1337, 1316, 1313, 1350, 1379, 1441, 1492, 1581, 1649, 1758, 2097, 1826, 1705, 1613, 1575, 1503, 1451, 1456, 1417, 1425, 1434, 1472, 1518, 1555, 1604, 1655, 1790, 2126, 1883, 1789, 1703, 1617, 1600, 1553, 1519, 1492, 1498, 1532, 1542, 1576, 1586, 1620, 1698, 1867, 2325, 2066, 1941, 1777, 1796, 1740, 1675, 1661, 1647, 1640, 1675, 1696, 1711, 1721, 1731, 1817, 1929]
| }
| }, {
| "name": "1600x1200_CWF_100",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3525, 3042, 2733, 2411, 2197, 2098, 1988, 1941, 1889, 1911, 1926, 1955, 2036, 2158, 2281, 2447, 2652, 3320, 2748, 2406, 2152, 1991, 1875, 1769, 1748, 1701, 1712, 1735, 1789, 1862, 1971, 2103, 2238, 2556, 3091, 2536, 2233, 1949, 1833, 1700, 1612, 1567, 1514, 1533, 1571, 1625, 1729, 1816, 1944, 2098, 2389, 2856, 2322, 2070, 1856, 1715, 1573, 1508, 1437, 1412, 1422, 1456, 1524, 1608, 1727, 1884, 2010, 2281, 2754, 2220, 1958, 1743, 1597, 1481, 1371, 1335, 1293, 1294, 1340, 1421, 1507, 1627, 1767, 1923, 2143, 2540, 2114, 1897, 1656, 1515, 1380, 1284, 1237, 1191, 1216, 1261, 1331, 1429, 1555, 1738, 1844, 2057, 2487, 2031, 1844, 1598, 1440, 1332, 1227, 1154, 1127, 1137, 1172, 1267, 1373, 1496, 1617, 1791, 2013, 2452, 1992, 1767, 1573, 1417, 1288, 1175, 1104, 1056, 1062, 1137, 1215, 1332, 1465, 1606, 1774, 1977, 2446, 1975, 1758, 1537, 1399, 1273, 1162, 1076, 1024, 1042, 1088, 1218, 1345, 1466, 1591, 1756, 2037, 2406, 2004, 1759, 1556, 1406, 1299, 1173, 1100, 1032, 1055, 1102, 1226, 1319, 1465, 1610, 1769, 2011, 2436, 2013, 1783, 1589, 1465, 1326, 1220, 1142, 1097, 1108, 1159, 1258, 1366, 1489, 1638, 1794, 1974, 2506, 2099, 1816, 1646, 1527, 1375, 1278, 1204, 1177, 1179, 1219, 1308, 1395, 1542, 1697, 1835, 2056, 2569, 2182, 1937, 1721, 1576, 1467, 1365, 1292, 1247, 1279, 1316, 1391, 1489, 1617, 1739, 1872, 2103, 2707, 2252, 2003, 1819, 1675, 1547, 1461, 1401, 1368, 1382, 1414, 1476, 1579, 1698, 1837, 1955, 2147, 2817, 2360, 2143, 1964, 1786, 1661, 1578, 1543, 1507, 1515, 1532, 1592, 1676, 1785, 1912, 2033, 2278, 2997, 2479, 2260, 2074, 1902, 1803, 1717, 1644, 1625, 1640, 1666, 1727, 1799, 1902, 2022, 2127, 2346, 3208, 2713, 2411, 2233, 2096, 1989, 1915, 1836, 1811, 1843, 1835, 1933, 1974, 2043, 2150, 2319, 2540]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3103, 2669, 2333, 2092, 1947, 1850, 1779, 1751, 1726, 1744, 1746, 1755, 1820, 1891, 1962, 2128, 2314, 2788, 2343, 2066, 1893, 1759, 1643, 1599, 1565, 1556, 1556, 1553, 1583, 1648, 1709, 1801, 1940, 2176, 2638, 2183, 1932, 1709, 1626, 1547, 1483, 1437, 1446, 1427, 1445, 1492, 1549, 1607, 1732, 1811, 2081, 2476, 2046, 1792, 1638, 1523, 1449, 1398, 1351, 1320, 1328, 1353, 1395, 1465, 1543, 1658, 1775, 1984, 2320, 1913, 1721, 1553, 1443, 1360, 1291, 1250, 1241, 1239, 1266, 1313, 1397, 1478, 1584, 1686, 1892, 2262, 1855, 1636, 1506, 1382, 1270, 1225, 1180, 1157, 1174, 1199, 1263, 1349, 1417, 1537, 1636, 1813, 2214, 1807, 1580, 1448, 1332, 1235, 1177, 1122, 1087, 1121, 1145, 1215, 1277, 1393, 1476, 1615, 1800, 2167, 1769, 1564, 1421, 1302, 1207, 1142, 1077, 1049, 1056, 1093, 1184, 1268, 1355, 1460, 1570, 1754, 2127, 1746, 1579, 1434, 1310, 1207, 1126, 1064, 1027, 1029, 1078, 1172, 1244, 1358, 1467, 1583, 1783, 2096, 1743, 1572, 1420, 1325, 1217, 1124, 1071, 1024, 1036, 1106, 1162, 1263, 1360, 1473, 1586, 1754, 2152, 1783, 1602, 1456, 1354, 1246, 1178, 1107, 1069, 1079, 1133, 1196, 1299, 1373, 1509, 1600, 1802, 2176, 1835, 1634, 1504, 1384, 1293, 1210, 1162, 1133, 1152, 1185, 1237, 1323, 1420, 1528, 1641, 1823, 2260, 1898, 1687, 1560, 1449, 1360, 1286, 1235, 1224, 1229, 1254, 1312, 1393, 1498, 1569, 1687, 1850, 2329, 1959, 1785, 1615, 1531, 1442, 1360, 1329, 1308, 1314, 1337, 1394, 1454, 1551, 1633, 1748, 1908, 2452, 2060, 1860, 1732, 1614, 1516, 1462, 1450, 1406, 1433, 1442, 1485, 1549, 1603, 1721, 1823, 1999, 2554, 2185, 1948, 1806, 1707, 1641, 1569, 1528, 1533, 1519, 1557, 1592, 1647, 1694, 1785, 1866, 2084, 2790, 2385, 2169, 1986, 1854, 1791, 1739, 1645, 1670, 1706, 1695, 1743, 1772, 1820, 1904, 2013, 2241]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3169, 2628, 2382, 2117, 1979, 1864, 1820, 1798, 1741, 1755, 1781, 1751, 1846, 1911, 1959, 2160, 2367, 2885, 2365, 2107, 1911, 1781, 1683, 1611, 1578, 1573, 1582, 1579, 1640, 1683, 1742, 1839, 1965, 2209, 2649, 2217, 1932, 1781, 1688, 1574, 1510, 1465, 1420, 1437, 1472, 1511, 1583, 1651, 1740, 1864, 2077, 2455, 2077, 1827, 1663, 1547, 1442, 1386, 1351, 1338, 1331, 1359, 1419, 1480, 1566, 1654, 1777, 1961, 2404, 1962, 1735, 1592, 1449, 1377, 1301, 1263, 1232, 1248, 1277, 1335, 1412, 1484, 1597, 1699, 1911, 2227, 1888, 1682, 1522, 1397, 1307, 1226, 1185, 1152, 1165, 1204, 1251, 1357, 1435, 1533, 1659, 1859, 2184, 1819, 1624, 1465, 1351, 1251, 1187, 1133, 1087, 1091, 1142, 1212, 1297, 1381, 1501, 1615, 1790, 2152, 1783, 1609, 1438, 1337, 1221, 1138, 1084, 1048, 1055, 1101, 1191, 1275, 1374, 1480, 1608, 1771, 2129, 1756, 1577, 1438, 1329, 1213, 1139, 1058, 1024, 1025, 1080, 1168, 1277, 1363, 1472, 1568, 1767, 2114, 1758, 1585, 1439, 1322, 1215, 1134, 1061, 1035, 1041, 1091, 1169, 1270, 1368, 1478, 1566, 1771, 2137, 1801, 1606, 1468, 1341, 1244, 1170, 1105, 1074, 1082, 1121, 1222, 1278, 1369, 1500, 1584, 1792, 2195, 1815, 1634, 1495, 1369, 1289, 1203, 1158, 1140, 1136, 1177, 1246, 1315, 1419, 1520, 1633, 1798, 2253, 1888, 1693, 1556, 1438, 1345, 1278, 1238, 1201, 1222, 1249, 1299, 1386, 1467, 1569, 1661, 1878, 2374, 1961, 1744, 1605, 1503, 1421, 1345, 1303, 1300, 1308, 1323, 1383, 1441, 1516, 1602, 1727, 1885, 2466, 2053, 1804, 1705, 1567, 1505, 1462, 1407, 1401, 1397, 1430, 1459, 1536, 1595, 1694, 1781, 1983, 2610, 2153, 1915, 1805, 1666, 1612, 1531, 1526, 1486, 1496, 1520, 1544, 1598, 1679, 1751, 1856, 2065, 2753, 2360, 2095, 1930, 1819, 1760, 1713, 1684, 1643, 1662, 1665, 1698, 1715, 1784, 1892, 2011, 2213]
| },
| "lsc_samples_blue": {
| "uCoeff": [3039, 2415, 2163, 1948, 1876, 1767, 1691, 1651, 1629, 1653, 1644, 1696, 1722, 1784, 1847, 2037, 2267, 2672, 2188, 1915, 1765, 1645, 1580, 1548, 1512, 1477, 1472, 1512, 1511, 1569, 1623, 1714, 1861, 2138, 2555, 2047, 1834, 1654, 1600, 1515, 1430, 1398, 1371, 1380, 1423, 1441, 1524, 1556, 1652, 1749, 2020, 2354, 1926, 1700, 1550, 1496, 1400, 1337, 1310, 1312, 1282, 1327, 1350, 1424, 1509, 1582, 1672, 1950, 2257, 1806, 1655, 1517, 1418, 1324, 1251, 1258, 1215, 1216, 1261, 1300, 1347, 1426, 1535, 1615, 1849, 2147, 1764, 1566, 1455, 1369, 1281, 1213, 1161, 1149, 1160, 1194, 1236, 1312, 1368, 1491, 1612, 1798, 2063, 1720, 1550, 1421, 1321, 1249, 1153, 1114, 1103, 1095, 1134, 1167, 1263, 1349, 1463, 1606, 1809, 2011, 1671, 1490, 1401, 1289, 1228, 1142, 1074, 1043, 1064, 1108, 1170, 1261, 1339, 1437, 1538, 1743, 2043, 1647, 1547, 1395, 1285, 1201, 1123, 1055, 1033, 1035, 1088, 1146, 1221, 1310, 1439, 1555, 1738, 2000, 1625, 1513, 1404, 1286, 1193, 1133, 1065, 1024, 1030, 1092, 1165, 1247, 1301, 1430, 1553, 1714, 1985, 1667, 1518, 1408, 1308, 1222, 1170, 1095, 1064, 1063, 1115, 1197, 1268, 1332, 1445, 1543, 1727, 2014, 1720, 1535, 1434, 1359, 1245, 1210, 1144, 1133, 1130, 1152, 1222, 1303, 1377, 1460, 1549, 1767, 2135, 1736, 1598, 1483, 1399, 1318, 1257, 1210, 1198, 1207, 1219, 1281, 1362, 1412, 1491, 1598, 1797, 2170, 1830, 1662, 1538, 1464, 1403, 1339, 1316, 1273, 1280, 1298, 1337, 1403, 1477, 1536, 1665, 1874, 2281, 1909, 1734, 1608, 1542, 1473, 1417, 1401, 1360, 1354, 1387, 1432, 1475, 1555, 1646, 1677, 1930, 2369, 2033, 1788, 1681, 1617, 1562, 1501, 1471, 1442, 1442, 1470, 1487, 1545, 1626, 1655, 1766, 2025, 2699, 2250, 2025, 1878, 1774, 1720, 1682, 1624, 1625, 1634, 1642, 1645, 1675, 1769, 1804, 1948, 2248]
| }
| }, {
| "name": "1600x1200_CWF_70",
| "resolution": "1600x1200",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2775, 2531, 2363, 2154, 2010, 1949, 1868, 1835, 1792, 1809, 1814, 1825, 1875, 1948, 2009, 2087, 2164, 2695, 2353, 2140, 1970, 1860, 1778, 1695, 1683, 1642, 1650, 1664, 1702, 1749, 1818, 1895, 1960, 2139, 2572, 2220, 2025, 1820, 1741, 1638, 1567, 1530, 1482, 1499, 1529, 1570, 1649, 1705, 1786, 1874, 2046, 2428, 2074, 1909, 1755, 1650, 1533, 1480, 1417, 1394, 1403, 1431, 1487, 1553, 1641, 1752, 1821, 1987, 2375, 2009, 1828, 1666, 1552, 1455, 1356, 1325, 1285, 1285, 1327, 1398, 1469, 1563, 1664, 1764, 1898, 2224, 1934, 1786, 1596, 1482, 1364, 1276, 1233, 1188, 1212, 1254, 1317, 1402, 1505, 1647, 1708, 1842, 2194, 1873, 1746, 1549, 1416, 1321, 1223, 1153, 1126, 1136, 1169, 1258, 1353, 1455, 1546, 1670, 1815, 2173, 1844, 1682, 1529, 1396, 1280, 1173, 1104, 1056, 1062, 1135, 1209, 1316, 1429, 1540, 1660, 1791, 2170, 1832, 1675, 1496, 1380, 1266, 1160, 1076, 1024, 1042, 1087, 1212, 1329, 1431, 1527, 1646, 1841, 2136, 1855, 1675, 1513, 1386, 1290, 1171, 1100, 1032, 1055, 1101, 1220, 1303, 1429, 1543, 1655, 1818, 2153, 1857, 1692, 1540, 1439, 1315, 1216, 1141, 1096, 1107, 1156, 1250, 1346, 1449, 1565, 1673, 1784, 2197, 1921, 1715, 1587, 1493, 1359, 1271, 1200, 1174, 1176, 1213, 1295, 1370, 1493, 1611, 1701, 1841, 2230, 1977, 1810, 1647, 1532, 1441, 1351, 1283, 1241, 1271, 1304, 1370, 1452, 1554, 1639, 1722, 1866, 2314, 2017, 1852, 1722, 1613, 1509, 1436, 1383, 1352, 1365, 1391, 1443, 1526, 1616, 1712, 1777, 1885, 2367, 2081, 1951, 1832, 1700, 1602, 1535, 1508, 1476, 1482, 1493, 1540, 1602, 1679, 1759, 1822, 1963, 2460, 2145, 2022, 1905, 1784, 1714, 1648, 1588, 1573, 1584, 1602, 1647, 1694, 1760, 1830, 1874, 1986, 2553, 2285, 2111, 2009, 1925, 1855, 1804, 1742, 1722, 1748, 1734, 1806, 1822, 1854, 1906, 1991, 2085]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2479, 2252, 2050, 1894, 1800, 1735, 1685, 1667, 1647, 1661, 1656, 1653, 1693, 1730, 1759, 1848, 1927, 2308, 2040, 1865, 1753, 1660, 1572, 1542, 1516, 1510, 1508, 1501, 1519, 1564, 1599, 1651, 1730, 1862, 2233, 1941, 1776, 1613, 1558, 1499, 1448, 1409, 1419, 1400, 1413, 1449, 1490, 1525, 1610, 1647, 1816, 2137, 1851, 1674, 1563, 1476, 1418, 1376, 1335, 1307, 1313, 1334, 1368, 1423, 1480, 1560, 1631, 1760, 2036, 1756, 1624, 1497, 1410, 1341, 1280, 1243, 1235, 1232, 1256, 1296, 1367, 1430, 1506, 1569, 1702, 2004, 1717, 1558, 1460, 1358, 1259, 1219, 1177, 1155, 1171, 1194, 1252, 1327, 1380, 1472, 1535, 1649, 1976, 1684, 1514, 1411, 1314, 1227, 1174, 1121, 1087, 1120, 1143, 1208, 1262, 1361, 1422, 1522, 1645, 1944, 1655, 1502, 1389, 1287, 1201, 1140, 1077, 1049, 1056, 1092, 1179, 1255, 1328, 1410, 1487, 1611, 1913, 1637, 1517, 1402, 1295, 1202, 1125, 1064, 1027, 1029, 1077, 1168, 1233, 1332, 1417, 1499, 1636, 1886, 1633, 1509, 1388, 1309, 1211, 1123, 1071, 1024, 1036, 1105, 1158, 1250, 1333, 1422, 1500, 1611, 1926, 1664, 1533, 1419, 1335, 1238, 1175, 1106, 1069, 1078, 1131, 1190, 1283, 1343, 1451, 1509, 1646, 1936, 1701, 1556, 1459, 1360, 1281, 1205, 1159, 1131, 1149, 1180, 1227, 1303, 1383, 1464, 1539, 1657, 1989, 1743, 1595, 1503, 1415, 1341, 1275, 1228, 1218, 1222, 1244, 1295, 1364, 1447, 1493, 1570, 1669, 2024, 1780, 1668, 1543, 1483, 1411, 1341, 1314, 1295, 1300, 1319, 1367, 1413, 1487, 1539, 1610, 1701, 2093, 1844, 1716, 1633, 1547, 1471, 1428, 1421, 1381, 1405, 1410, 1442, 1490, 1522, 1601, 1656, 1754, 2137, 1919, 1770, 1680, 1615, 1571, 1515, 1483, 1489, 1474, 1504, 1527, 1563, 1586, 1638, 1673, 1795, 2260, 2040, 1921, 1808, 1722, 1684, 1650, 1573, 1597, 1627, 1611, 1643, 1653, 1672, 1713, 1763, 1876]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2526, 2222, 2088, 1914, 1827, 1747, 1721, 1709, 1660, 1671, 1687, 1650, 1715, 1747, 1757, 1872, 1964, 2378, 2057, 1898, 1768, 1679, 1608, 1553, 1528, 1525, 1532, 1524, 1570, 1594, 1626, 1682, 1749, 1886, 2241, 1968, 1776, 1675, 1613, 1523, 1473, 1435, 1394, 1409, 1438, 1466, 1520, 1563, 1617, 1689, 1813, 2121, 1876, 1703, 1585, 1497, 1411, 1365, 1335, 1324, 1316, 1340, 1390, 1437, 1500, 1557, 1633, 1742, 2101, 1796, 1636, 1531, 1415, 1357, 1289, 1255, 1226, 1241, 1266, 1317, 1381, 1435, 1517, 1580, 1716, 1977, 1745, 1598, 1475, 1372, 1294, 1220, 1182, 1150, 1162, 1199, 1241, 1335, 1396, 1468, 1554, 1685, 1952, 1694, 1552, 1427, 1332, 1243, 1184, 1132, 1087, 1090, 1140, 1205, 1281, 1350, 1444, 1522, 1637, 1931, 1667, 1542, 1404, 1320, 1215, 1136, 1084, 1048, 1055, 1100, 1186, 1262, 1346, 1428, 1519, 1625, 1915, 1646, 1515, 1405, 1313, 1207, 1138, 1058, 1024, 1025, 1079, 1164, 1264, 1336, 1422, 1486, 1623, 1901, 1646, 1521, 1405, 1306, 1209, 1132, 1061, 1035, 1041, 1090, 1165, 1257, 1340, 1426, 1483, 1625, 1914, 1679, 1537, 1430, 1323, 1236, 1167, 1104, 1074, 1081, 1119, 1215, 1263, 1339, 1443, 1496, 1638, 1951, 1684, 1556, 1450, 1346, 1277, 1198, 1155, 1138, 1134, 1173, 1236, 1295, 1382, 1457, 1532, 1637, 1983, 1735, 1600, 1499, 1405, 1327, 1267, 1231, 1196, 1216, 1240, 1283, 1357, 1420, 1493, 1548, 1691, 2059, 1782, 1633, 1534, 1458, 1392, 1326, 1290, 1288, 1294, 1306, 1357, 1402, 1456, 1513, 1593, 1684, 2104, 1838, 1670, 1610, 1505, 1461, 1428, 1381, 1377, 1372, 1399, 1419, 1478, 1515, 1579, 1623, 1742, 2178, 1894, 1743, 1679, 1579, 1545, 1481, 1481, 1446, 1453, 1471, 1485, 1521, 1573, 1611, 1665, 1782, 2234, 2022, 1863, 1762, 1692, 1658, 1627, 1608, 1573, 1588, 1585, 1604, 1605, 1643, 1704, 1761, 1856]
| },
| "lsc_samples_blue": {
| "uCoeff": [2435, 2063, 1916, 1777, 1740, 1664, 1608, 1579, 1561, 1580, 1567, 1602, 1611, 1643, 1669, 1780, 1894, 2223, 1921, 1743, 1646, 1561, 1516, 1496, 1468, 1438, 1432, 1464, 1455, 1495, 1526, 1581, 1669, 1835, 2170, 1833, 1695, 1566, 1535, 1470, 1399, 1373, 1349, 1356, 1392, 1403, 1467, 1482, 1544, 1598, 1770, 2043, 1754, 1596, 1486, 1451, 1372, 1319, 1296, 1299, 1270, 1309, 1326, 1386, 1450, 1496, 1548, 1734, 1987, 1668, 1567, 1464, 1387, 1307, 1241, 1250, 1209, 1210, 1251, 1284, 1321, 1383, 1464, 1511, 1668, 1913, 1642, 1497, 1414, 1346, 1269, 1207, 1158, 1147, 1157, 1189, 1226, 1293, 1335, 1431, 1515, 1637, 1855, 1610, 1487, 1387, 1304, 1241, 1150, 1113, 1102, 1094, 1132, 1162, 1249, 1321, 1411, 1514, 1652, 1818, 1572, 1437, 1370, 1275, 1222, 1140, 1074, 1043, 1064, 1107, 1165, 1248, 1313, 1390, 1460, 1602, 1845, 1553, 1488, 1366, 1272, 1196, 1122, 1055, 1033, 1035, 1087, 1142, 1211, 1287, 1392, 1475, 1600, 1809, 1533, 1457, 1373, 1272, 1188, 1131, 1065, 1024, 1030, 1091, 1161, 1235, 1279, 1384, 1472, 1579, 1793, 1566, 1459, 1375, 1291, 1215, 1167, 1094, 1064, 1063, 1113, 1191, 1254, 1305, 1395, 1461, 1586, 1808, 1605, 1470, 1395, 1337, 1235, 1205, 1142, 1131, 1128, 1148, 1213, 1284, 1344, 1404, 1462, 1612, 1891, 1610, 1518, 1434, 1369, 1301, 1247, 1204, 1193, 1201, 1211, 1266, 1335, 1371, 1426, 1497, 1627, 1902, 1676, 1564, 1475, 1422, 1375, 1321, 1302, 1262, 1268, 1282, 1314, 1367, 1422, 1457, 1542, 1675, 1965, 1724, 1612, 1526, 1483, 1432, 1387, 1375, 1338, 1332, 1359, 1394, 1424, 1481, 1539, 1541, 1702, 2003, 1802, 1641, 1575, 1537, 1501, 1454, 1431, 1406, 1404, 1426, 1434, 1475, 1529, 1533, 1596, 1752, 2197, 1939, 1808, 1720, 1654, 1623, 1600, 1555, 1557, 1564, 1565, 1559, 1571, 1631, 1635, 1714, 1881]
| }
| }, {
| "name": "1600x1200_D50_100",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3732, 3040, 2701, 2482, 2244, 2118, 2017, 1939, 1950, 1930, 1936, 1973, 2067, 2130, 2286, 2490, 2708, 3371, 2804, 2425, 2191, 1982, 1887, 1804, 1750, 1729, 1708, 1728, 1801, 1870, 1980, 2076, 2265, 2613, 3085, 2572, 2230, 2032, 1853, 1727, 1655, 1594, 1545, 1545, 1572, 1647, 1737, 1840, 1974, 2137, 2372, 2907, 2377, 2073, 1887, 1719, 1600, 1510, 1445, 1393, 1406, 1462, 1533, 1609, 1740, 1882, 2013, 2284, 2739, 2235, 1956, 1780, 1603, 1484, 1354, 1316, 1289, 1311, 1339, 1437, 1518, 1642, 1796, 1955, 2199, 2553, 2121, 1865, 1676, 1539, 1396, 1307, 1234, 1194, 1217, 1243, 1323, 1416, 1543, 1711, 1850, 2119, 2482, 2066, 1804, 1616, 1465, 1323, 1236, 1153, 1118, 1126, 1174, 1268, 1364, 1484, 1623, 1818, 2053, 2456, 2014, 1756, 1566, 1410, 1284, 1186, 1109, 1059, 1055, 1120, 1219, 1337, 1456, 1609, 1787, 2012, 2468, 1989, 1786, 1584, 1412, 1273, 1175, 1075, 1024, 1027, 1090, 1190, 1335, 1451, 1583, 1757, 2009, 2419, 2008, 1802, 1576, 1415, 1276, 1168, 1089, 1040, 1032, 1105, 1200, 1326, 1445, 1598, 1759, 1914, 2426, 2072, 1811, 1606, 1460, 1330, 1227, 1140, 1084, 1094, 1145, 1256, 1361, 1499, 1647, 1783, 1997, 2550, 2084, 1856, 1662, 1515, 1381, 1272, 1193, 1164, 1157, 1209, 1310, 1420, 1526, 1681, 1832, 2047, 2599, 2143, 1920, 1745, 1573, 1462, 1369, 1286, 1244, 1266, 1302, 1369, 1509, 1587, 1747, 1878, 2106, 2649, 2276, 2004, 1838, 1690, 1544, 1452, 1368, 1338, 1356, 1396, 1461, 1572, 1678, 1801, 1951, 2160, 2885, 2385, 2137, 1924, 1793, 1673, 1567, 1540, 1499, 1494, 1514, 1584, 1663, 1776, 1889, 2046, 2249, 3021, 2525, 2255, 2039, 1936, 1759, 1693, 1626, 1573, 1599, 1671, 1690, 1789, 1862, 2015, 2137, 2392, 3254, 2702, 2476, 2267, 2101, 2009, 1903, 1839, 1765, 1803, 1848, 1858, 1969, 2106, 2151, 2294, 2545]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3268, 2717, 2365, 2175, 1963, 1865, 1818, 1788, 1784, 1752, 1753, 1774, 1825, 1898, 1999, 2147, 2453, 2944, 2407, 2127, 1897, 1779, 1683, 1639, 1585, 1579, 1570, 1579, 1614, 1669, 1774, 1861, 1970, 2214, 2706, 2251, 1941, 1773, 1639, 1561, 1503, 1464, 1444, 1459, 1453, 1510, 1569, 1645, 1756, 1885, 2101, 2554, 2096, 1832, 1660, 1560, 1460, 1384, 1353, 1335, 1344, 1363, 1416, 1470, 1556, 1659, 1773, 2010, 2429, 1944, 1741, 1576, 1474, 1368, 1296, 1265, 1247, 1249, 1274, 1315, 1395, 1513, 1605, 1711, 1922, 2351, 1895, 1672, 1522, 1394, 1298, 1224, 1176, 1170, 1172, 1215, 1265, 1348, 1438, 1554, 1665, 1854, 2238, 1866, 1627, 1473, 1364, 1258, 1187, 1123, 1107, 1117, 1150, 1223, 1305, 1385, 1507, 1637, 1849, 2165, 1798, 1612, 1442, 1321, 1229, 1140, 1093, 1062, 1059, 1091, 1175, 1280, 1379, 1493, 1613, 1812, 2178, 1790, 1596, 1444, 1327, 1206, 1126, 1061, 1027, 1041, 1086, 1168, 1259, 1375, 1480, 1585, 1810, 2135, 1781, 1602, 1450, 1332, 1212, 1128, 1069, 1024, 1041, 1094, 1166, 1261, 1383, 1493, 1601, 1771, 2200, 1810, 1624, 1470, 1354, 1245, 1168, 1115, 1079, 1078, 1133, 1188, 1306, 1376, 1495, 1609, 1799, 2215, 1875, 1661, 1509, 1398, 1297, 1206, 1157, 1136, 1145, 1174, 1246, 1334, 1427, 1560, 1665, 1829, 2336, 1913, 1726, 1579, 1453, 1373, 1284, 1239, 1222, 1208, 1253, 1296, 1406, 1472, 1588, 1718, 1892, 2378, 2001, 1776, 1634, 1524, 1442, 1373, 1319, 1308, 1315, 1343, 1392, 1462, 1554, 1644, 1760, 1951, 2491, 2070, 1850, 1698, 1615, 1520, 1466, 1441, 1426, 1423, 1451, 1494, 1553, 1635, 1736, 1825, 2026, 2663, 2168, 1974, 1818, 1715, 1646, 1567, 1551, 1537, 1534, 1561, 1559, 1668, 1714, 1805, 1911, 2130, 2820, 2376, 2177, 1965, 1898, 1771, 1718, 1686, 1687, 1662, 1675, 1733, 1804, 1831, 1909, 2055, 2287]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3209, 2758, 2434, 2212, 2025, 1929, 1850, 1826, 1776, 1763, 1789, 1822, 1874, 1949, 2061, 2189, 2438, 2979, 2467, 2201, 1954, 1811, 1720, 1677, 1611, 1594, 1600, 1638, 1664, 1745, 1814, 1896, 2022, 2260, 2742, 2303, 2024, 1802, 1698, 1616, 1533, 1482, 1474, 1465, 1486, 1527, 1603, 1685, 1779, 1895, 2116, 2567, 2123, 1880, 1703, 1579, 1481, 1415, 1366, 1350, 1358, 1376, 1423, 1513, 1592, 1686, 1821, 2047, 2469, 2003, 1791, 1624, 1503, 1394, 1323, 1284, 1249, 1259, 1291, 1337, 1421, 1513, 1625, 1757, 1962, 2352, 1940, 1712, 1544, 1420, 1323, 1241, 1202, 1183, 1187, 1211, 1276, 1367, 1443, 1598, 1709, 1887, 2276, 1875, 1684, 1504, 1372, 1255, 1192, 1137, 1105, 1122, 1150, 1226, 1322, 1403, 1529, 1648, 1823, 2183, 1841, 1617, 1476, 1339, 1229, 1152, 1090, 1061, 1066, 1123, 1183, 1290, 1379, 1517, 1629, 1826, 2173, 1809, 1612, 1455, 1340, 1224, 1152, 1079, 1031, 1037, 1084, 1172, 1282, 1380, 1487, 1595, 1805, 2193, 1791, 1601, 1471, 1333, 1232, 1153, 1086, 1024, 1038, 1101, 1175, 1265, 1375, 1506, 1604, 1780, 2182, 1838, 1628, 1477, 1348, 1265, 1183, 1121, 1081, 1085, 1134, 1202, 1294, 1411, 1524, 1628, 1795, 2210, 1880, 1654, 1513, 1387, 1304, 1220, 1172, 1146, 1150, 1198, 1243, 1323, 1432, 1534, 1666, 1833, 2299, 1886, 1714, 1560, 1448, 1362, 1281, 1248, 1221, 1239, 1241, 1304, 1395, 1480, 1613, 1697, 1873, 2410, 1978, 1783, 1660, 1505, 1418, 1376, 1323, 1307, 1309, 1334, 1390, 1445, 1535, 1635, 1761, 1911, 2473, 2081, 1849, 1728, 1612, 1517, 1467, 1439, 1417, 1418, 1439, 1491, 1537, 1613, 1712, 1807, 1977, 2639, 2176, 1945, 1811, 1701, 1620, 1549, 1538, 1510, 1525, 1528, 1578, 1611, 1686, 1811, 1906, 2063, 2820, 2364, 2143, 1972, 1863, 1745, 1719, 1682, 1647, 1675, 1678, 1733, 1776, 1823, 1899, 2031, 2254]
| },
| "lsc_samples_blue": {
| "uCoeff": [3080, 2559, 2280, 2027, 1943, 1810, 1775, 1739, 1713, 1712, 1711, 1696, 1754, 1862, 1899, 2052, 2376, 2793, 2287, 1999, 1826, 1731, 1661, 1587, 1558, 1516, 1522, 1561, 1564, 1621, 1675, 1776, 1927, 2145, 2570, 2141, 1876, 1713, 1599, 1542, 1481, 1442, 1431, 1434, 1445, 1471, 1526, 1607, 1691, 1837, 2062, 2438, 1987, 1771, 1630, 1546, 1439, 1379, 1333, 1317, 1310, 1362, 1407, 1450, 1530, 1637, 1749, 2018, 2354, 1867, 1691, 1553, 1461, 1364, 1307, 1262, 1236, 1239, 1276, 1328, 1396, 1478, 1575, 1686, 1904, 2197, 1832, 1654, 1508, 1396, 1313, 1233, 1178, 1168, 1176, 1208, 1266, 1338, 1426, 1535, 1641, 1828, 2175, 1791, 1611, 1461, 1345, 1256, 1180, 1124, 1097, 1121, 1151, 1225, 1294, 1388, 1483, 1613, 1845, 2122, 1730, 1570, 1437, 1320, 1232, 1144, 1104, 1053, 1068, 1108, 1176, 1268, 1339, 1481, 1579, 1796, 2097, 1731, 1559, 1418, 1324, 1203, 1141, 1066, 1024, 1029, 1090, 1158, 1246, 1343, 1463, 1558, 1785, 2082, 1726, 1564, 1433, 1320, 1196, 1132, 1083, 1038, 1040, 1076, 1172, 1252, 1356, 1457, 1569, 1749, 2074, 1724, 1582, 1427, 1314, 1248, 1165, 1107, 1056, 1067, 1122, 1182, 1281, 1361, 1476, 1585, 1774, 2126, 1752, 1573, 1465, 1361, 1279, 1209, 1155, 1150, 1139, 1171, 1224, 1310, 1388, 1479, 1589, 1839, 2166, 1792, 1639, 1527, 1420, 1351, 1282, 1226, 1203, 1225, 1244, 1291, 1374, 1459, 1530, 1634, 1824, 2261, 1864, 1685, 1569, 1463, 1404, 1375, 1311, 1270, 1298, 1316, 1367, 1433, 1494, 1584, 1682, 1895, 2380, 1959, 1776, 1640, 1538, 1491, 1431, 1433, 1370, 1397, 1406, 1447, 1500, 1562, 1646, 1774, 1955, 2498, 2074, 1859, 1728, 1635, 1571, 1545, 1483, 1461, 1474, 1525, 1537, 1579, 1612, 1718, 1819, 2021, 2647, 2289, 2047, 1847, 1810, 1736, 1688, 1689, 1631, 1642, 1681, 1730, 1732, 1785, 1858, 1989, 2290]
| }
| }, {
| "name": "1600x1200_D50_70",
| "resolution": "1600x1200",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2920, 2529, 2338, 2212, 2049, 1966, 1893, 1833, 1846, 1825, 1822, 1841, 1901, 1925, 2013, 2119, 2203, 2732, 2396, 2155, 2003, 1853, 1788, 1727, 1685, 1668, 1646, 1658, 1712, 1756, 1826, 1873, 1980, 2180, 2567, 2249, 2023, 1891, 1759, 1662, 1606, 1555, 1511, 1510, 1530, 1590, 1656, 1726, 1811, 1905, 2033, 2467, 2118, 1912, 1782, 1653, 1558, 1482, 1425, 1376, 1388, 1437, 1496, 1554, 1653, 1750, 1824, 1990, 2363, 2021, 1826, 1699, 1557, 1458, 1340, 1307, 1281, 1302, 1326, 1413, 1479, 1576, 1689, 1790, 1941, 2235, 1939, 1758, 1614, 1504, 1379, 1299, 1230, 1191, 1213, 1237, 1309, 1390, 1494, 1623, 1713, 1891, 2190, 1902, 1711, 1565, 1439, 1312, 1232, 1152, 1117, 1125, 1171, 1259, 1344, 1444, 1552, 1693, 1847, 2176, 1863, 1672, 1522, 1390, 1276, 1184, 1109, 1059, 1055, 1119, 1213, 1320, 1421, 1542, 1671, 1819, 2188, 1843, 1700, 1540, 1392, 1266, 1173, 1075, 1024, 1027, 1089, 1185, 1319, 1417, 1520, 1646, 1818, 2146, 1858, 1713, 1531, 1394, 1268, 1166, 1089, 1040, 1032, 1104, 1195, 1310, 1411, 1532, 1647, 1740, 2145, 1907, 1717, 1556, 1435, 1319, 1223, 1139, 1084, 1093, 1143, 1248, 1341, 1458, 1573, 1664, 1802, 2232, 1909, 1750, 1602, 1482, 1365, 1265, 1190, 1162, 1154, 1204, 1297, 1393, 1478, 1597, 1698, 1834, 2254, 1945, 1795, 1668, 1529, 1437, 1355, 1278, 1238, 1258, 1290, 1349, 1471, 1527, 1646, 1727, 1869, 2269, 2037, 1853, 1739, 1627, 1506, 1427, 1351, 1324, 1340, 1375, 1429, 1520, 1598, 1681, 1774, 1895, 2418, 2101, 1946, 1798, 1706, 1613, 1525, 1505, 1468, 1462, 1476, 1532, 1591, 1671, 1740, 1833, 1941, 2477, 2181, 2018, 1875, 1813, 1675, 1627, 1572, 1525, 1547, 1607, 1614, 1686, 1727, 1824, 1882, 2019, 2585, 2277, 2162, 2037, 1929, 1872, 1794, 1745, 1682, 1713, 1745, 1742, 1818, 1905, 1907, 1972, 2089]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2595, 2288, 2075, 1962, 1813, 1748, 1719, 1700, 1698, 1668, 1662, 1670, 1697, 1736, 1788, 1863, 2024, 2421, 2090, 1915, 1756, 1677, 1608, 1578, 1534, 1531, 1521, 1524, 1547, 1582, 1653, 1700, 1753, 1890, 2284, 1995, 1783, 1668, 1569, 1511, 1466, 1434, 1417, 1430, 1420, 1465, 1507, 1558, 1630, 1705, 1831, 2197, 1891, 1708, 1583, 1509, 1428, 1363, 1337, 1321, 1329, 1343, 1387, 1428, 1491, 1561, 1630, 1780, 2121, 1781, 1641, 1517, 1438, 1348, 1285, 1257, 1241, 1242, 1264, 1298, 1366, 1461, 1524, 1590, 1725, 2075, 1751, 1589, 1475, 1369, 1286, 1218, 1173, 1168, 1169, 1209, 1254, 1326, 1399, 1486, 1559, 1681, 1995, 1733, 1555, 1434, 1344, 1250, 1184, 1122, 1106, 1116, 1147, 1216, 1289, 1354, 1449, 1541, 1684, 1942, 1680, 1545, 1408, 1305, 1223, 1138, 1093, 1062, 1059, 1090, 1170, 1266, 1350, 1439, 1523, 1658, 1954, 1674, 1532, 1411, 1311, 1201, 1125, 1061, 1027, 1041, 1085, 1164, 1247, 1347, 1429, 1500, 1658, 1918, 1666, 1536, 1416, 1316, 1206, 1126, 1069, 1024, 1041, 1093, 1162, 1248, 1354, 1439, 1513, 1625, 1964, 1686, 1552, 1432, 1335, 1237, 1165, 1114, 1079, 1077, 1131, 1182, 1290, 1346, 1439, 1517, 1644, 1967, 1734, 1580, 1463, 1373, 1285, 1201, 1154, 1134, 1143, 1170, 1236, 1313, 1389, 1492, 1559, 1661, 2048, 1756, 1628, 1520, 1419, 1353, 1273, 1232, 1216, 1202, 1243, 1280, 1376, 1424, 1510, 1595, 1702, 2062, 1814, 1660, 1560, 1477, 1411, 1353, 1305, 1295, 1301, 1325, 1365, 1421, 1490, 1549, 1619, 1734, 2123, 1852, 1708, 1604, 1548, 1474, 1432, 1413, 1400, 1396, 1418, 1451, 1493, 1550, 1614, 1658, 1774, 2217, 1906, 1791, 1690, 1622, 1575, 1513, 1504, 1492, 1488, 1508, 1498, 1581, 1603, 1655, 1708, 1829, 2281, 2034, 1927, 1791, 1759, 1667, 1632, 1610, 1612, 1588, 1594, 1634, 1680, 1681, 1717, 1794, 1908]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2554, 2319, 2129, 1992, 1865, 1803, 1747, 1733, 1691, 1678, 1694, 1711, 1738, 1778, 1836, 1894, 2014, 2447, 2136, 1974, 1804, 1705, 1640, 1612, 1558, 1544, 1548, 1577, 1591, 1648, 1687, 1728, 1793, 1923, 2311, 2036, 1852, 1693, 1622, 1561, 1494, 1451, 1445, 1435, 1450, 1481, 1537, 1593, 1649, 1713, 1842, 2207, 1913, 1748, 1620, 1526, 1448, 1392, 1349, 1335, 1342, 1356, 1394, 1467, 1523, 1584, 1669, 1808, 2152, 1830, 1684, 1560, 1465, 1373, 1310, 1276, 1242, 1251, 1280, 1319, 1390, 1461, 1541, 1627, 1756, 2075, 1788, 1624, 1495, 1393, 1309, 1235, 1198, 1180, 1184, 1206, 1265, 1344, 1403, 1525, 1596, 1707, 2025, 1741, 1605, 1463, 1352, 1247, 1189, 1136, 1104, 1121, 1147, 1219, 1305, 1370, 1469, 1550, 1663, 1956, 1716, 1549, 1439, 1322, 1223, 1150, 1090, 1061, 1066, 1122, 1178, 1276, 1350, 1461, 1537, 1669, 1950, 1691, 1546, 1421, 1324, 1218, 1150, 1079, 1031, 1037, 1083, 1168, 1269, 1352, 1435, 1509, 1654, 1964, 1674, 1535, 1435, 1317, 1226, 1151, 1086, 1024, 1038, 1100, 1170, 1252, 1347, 1451, 1516, 1632, 1950, 1710, 1556, 1438, 1329, 1256, 1180, 1120, 1081, 1084, 1132, 1196, 1278, 1378, 1464, 1533, 1641, 1963, 1738, 1574, 1467, 1363, 1291, 1214, 1169, 1144, 1148, 1193, 1233, 1303, 1393, 1469, 1560, 1665, 2019, 1734, 1618, 1503, 1414, 1343, 1270, 1241, 1215, 1232, 1232, 1288, 1366, 1431, 1531, 1578, 1687, 2086, 1796, 1666, 1583, 1459, 1389, 1356, 1309, 1294, 1295, 1316, 1363, 1405, 1473, 1541, 1620, 1704, 2109, 1860, 1707, 1629, 1545, 1472, 1433, 1411, 1392, 1391, 1407, 1448, 1479, 1531, 1594, 1644, 1738, 2199, 1912, 1768, 1684, 1610, 1552, 1497, 1492, 1468, 1480, 1478, 1515, 1532, 1579, 1659, 1704, 1780, 2281, 2025, 1901, 1796, 1729, 1645, 1633, 1606, 1577, 1600, 1597, 1634, 1656, 1675, 1710, 1776, 1885]
| },
| "lsc_samples_blue": {
| "uCoeff": [2463, 2170, 2008, 1841, 1796, 1701, 1682, 1656, 1635, 1633, 1626, 1602, 1638, 1707, 1710, 1792, 1970, 2311, 1997, 1811, 1697, 1636, 1588, 1531, 1510, 1473, 1477, 1508, 1502, 1540, 1570, 1631, 1720, 1840, 2182, 1908, 1730, 1617, 1534, 1494, 1446, 1414, 1405, 1406, 1413, 1430, 1469, 1525, 1576, 1667, 1801, 2108, 1803, 1656, 1556, 1497, 1409, 1358, 1318, 1304, 1296, 1342, 1379, 1410, 1468, 1543, 1610, 1786, 2062, 1718, 1598, 1497, 1426, 1344, 1295, 1254, 1230, 1232, 1265, 1310, 1367, 1430, 1498, 1569, 1711, 1953, 1698, 1574, 1462, 1371, 1300, 1227, 1175, 1166, 1173, 1203, 1255, 1317, 1388, 1470, 1539, 1661, 1944, 1670, 1541, 1423, 1326, 1248, 1177, 1123, 1096, 1120, 1148, 1218, 1278, 1357, 1428, 1520, 1681, 1907, 1622, 1508, 1404, 1304, 1226, 1142, 1104, 1053, 1068, 1107, 1171, 1255, 1313, 1429, 1494, 1645, 1889, 1624, 1499, 1387, 1309, 1198, 1139, 1066, 1024, 1029, 1089, 1154, 1235, 1318, 1414, 1477, 1637, 1875, 1619, 1502, 1400, 1304, 1191, 1130, 1083, 1038, 1040, 1075, 1167, 1240, 1329, 1408, 1486, 1607, 1864, 1614, 1515, 1392, 1297, 1240, 1162, 1106, 1056, 1067, 1120, 1176, 1266, 1332, 1422, 1497, 1624, 1897, 1632, 1503, 1423, 1338, 1267, 1204, 1152, 1148, 1137, 1167, 1215, 1291, 1354, 1421, 1495, 1669, 1916, 1656, 1553, 1473, 1389, 1332, 1271, 1219, 1198, 1219, 1235, 1276, 1346, 1413, 1460, 1526, 1649, 1972, 1703, 1583, 1503, 1421, 1376, 1355, 1297, 1259, 1285, 1299, 1342, 1394, 1437, 1498, 1556, 1692, 2039, 1764, 1647, 1554, 1480, 1448, 1400, 1405, 1348, 1372, 1377, 1408, 1446, 1487, 1539, 1617, 1721, 2097, 1833, 1698, 1615, 1553, 1509, 1493, 1442, 1423, 1433, 1475, 1478, 1504, 1517, 1584, 1637, 1749, 2160, 1969, 1826, 1694, 1685, 1637, 1605, 1612, 1563, 1571, 1599, 1632, 1619, 1644, 1677, 1745, 1910]
| }
| }, {
| "name": "1600x1200_D65_100",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3922, 3291, 2906, 2583, 2420, 2254, 2141, 2073, 2069, 2045, 2078, 2145, 2217, 2297, 2460, 2629, 2966, 3628, 2881, 2578, 2325, 2124, 2006, 1889, 1854, 1792, 1787, 1820, 1886, 1988, 2130, 2235, 2366, 2681, 3313, 2733, 2420, 2140, 1988, 1822, 1732, 1668, 1621, 1616, 1665, 1736, 1824, 1978, 2065, 2293, 2590, 3071, 2490, 2256, 1990, 1802, 1683, 1577, 1529, 1476, 1476, 1520, 1609, 1699, 1824, 2040, 2164, 2439, 2949, 2398, 2125, 1898, 1713, 1547, 1448, 1395, 1330, 1327, 1418, 1476, 1591, 1737, 1891, 2077, 2304, 2796, 2276, 2018, 1789, 1620, 1474, 1335, 1274, 1232, 1242, 1295, 1377, 1501, 1668, 1832, 2046, 2309, 2732, 2195, 1951, 1729, 1521, 1394, 1293, 1190, 1137, 1152, 1200, 1312, 1428, 1590, 1737, 1925, 2202, 2653, 2159, 1937, 1695, 1495, 1325, 1227, 1138, 1067, 1085, 1154, 1250, 1392, 1542, 1734, 1897, 2171, 2661, 2172, 1902, 1685, 1485, 1311, 1192, 1103, 1024, 1045, 1111, 1255, 1382, 1509, 1694, 1883, 2148, 2607, 2177, 1914, 1683, 1500, 1327, 1204, 1118, 1044, 1055, 1137, 1250, 1379, 1536, 1705, 1899, 2155, 2659, 2192, 1936, 1716, 1528, 1373, 1263, 1169, 1104, 1106, 1178, 1289, 1436, 1580, 1730, 1940, 2156, 2740, 2267, 1984, 1781, 1587, 1461, 1316, 1230, 1197, 1198, 1264, 1364, 1475, 1599, 1787, 1956, 2195, 2838, 2334, 2067, 1868, 1678, 1544, 1434, 1348, 1299, 1316, 1345, 1448, 1572, 1700, 1870, 2064, 2288, 2965, 2452, 2190, 1965, 1778, 1615, 1529, 1450, 1412, 1434, 1471, 1538, 1670, 1818, 1948, 2097, 2336, 3059, 2535, 2275, 2064, 1900, 1793, 1668, 1615, 1567, 1554, 1640, 1696, 1797, 1897, 2022, 2168, 2486, 3314, 2699, 2423, 2227, 2028, 1898, 1832, 1754, 1714, 1717, 1752, 1812, 1925, 2005, 2165, 2281, 2553, 3570, 3020, 2630, 2482, 2283, 2135, 2063, 1977, 1950, 1947, 2022, 2034, 2102, 2188, 2313, 2464, 2757]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3156, 2638, 2370, 2115, 1977, 1860, 1817, 1780, 1743, 1745, 1758, 1786, 1832, 1907, 2009, 2159, 2395, 2873, 2379, 2122, 1921, 1771, 1678, 1629, 1607, 1574, 1580, 1568, 1609, 1686, 1746, 1827, 1997, 2219, 2705, 2207, 1946, 1754, 1630, 1543, 1486, 1453, 1418, 1416, 1466, 1516, 1590, 1646, 1739, 1872, 2116, 2506, 2069, 1830, 1674, 1555, 1470, 1396, 1350, 1331, 1352, 1369, 1427, 1481, 1563, 1667, 1785, 1986, 2393, 1944, 1766, 1582, 1466, 1381, 1297, 1270, 1250, 1247, 1275, 1315, 1408, 1504, 1616, 1712, 1944, 2304, 1890, 1674, 1510, 1399, 1290, 1228, 1180, 1171, 1171, 1202, 1266, 1348, 1428, 1546, 1671, 1852, 2194, 1838, 1642, 1467, 1352, 1257, 1186, 1126, 1103, 1110, 1145, 1211, 1291, 1400, 1521, 1651, 1841, 2165, 1795, 1594, 1451, 1318, 1232, 1138, 1091, 1056, 1065, 1097, 1179, 1279, 1382, 1495, 1611, 1801, 2190, 1796, 1605, 1456, 1321, 1212, 1117, 1073, 1024, 1028, 1089, 1164, 1268, 1368, 1469, 1614, 1767, 2149, 1764, 1624, 1447, 1323, 1215, 1140, 1080, 1029, 1033, 1091, 1178, 1287, 1389, 1498, 1626, 1782, 2149, 1802, 1634, 1471, 1350, 1245, 1171, 1112, 1074, 1095, 1136, 1201, 1310, 1401, 1512, 1622, 1796, 2241, 1859, 1657, 1521, 1398, 1301, 1231, 1168, 1141, 1146, 1198, 1238, 1351, 1427, 1538, 1686, 1865, 2348, 1908, 1711, 1585, 1478, 1380, 1290, 1242, 1229, 1229, 1264, 1322, 1417, 1503, 1605, 1714, 1888, 2364, 1998, 1801, 1640, 1546, 1455, 1392, 1331, 1307, 1326, 1353, 1408, 1471, 1577, 1675, 1759, 1908, 2521, 2079, 1862, 1733, 1623, 1549, 1478, 1447, 1434, 1425, 1453, 1498, 1571, 1653, 1751, 1825, 2021, 2649, 2246, 2004, 1823, 1739, 1667, 1583, 1551, 1520, 1534, 1547, 1589, 1644, 1699, 1809, 1918, 2127, 2813, 2398, 2155, 2006, 1913, 1786, 1750, 1698, 1680, 1696, 1706, 1749, 1785, 1857, 1935, 2052, 2235]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3242, 2660, 2413, 2157, 1987, 1858, 1822, 1786, 1768, 1794, 1792, 1800, 1850, 1954, 2059, 2181, 2413, 2926, 2430, 2153, 1953, 1810, 1698, 1656, 1594, 1592, 1590, 1596, 1643, 1698, 1785, 1881, 1988, 2240, 2754, 2289, 1992, 1797, 1675, 1597, 1508, 1493, 1448, 1464, 1497, 1529, 1605, 1684, 1771, 1905, 2132, 2588, 2104, 1871, 1694, 1568, 1469, 1411, 1350, 1352, 1357, 1380, 1432, 1517, 1580, 1670, 1795, 2010, 2436, 2004, 1782, 1619, 1484, 1382, 1323, 1273, 1235, 1256, 1287, 1356, 1420, 1507, 1623, 1724, 1944, 2298, 1920, 1696, 1566, 1405, 1322, 1237, 1195, 1165, 1172, 1217, 1271, 1348, 1467, 1569, 1685, 1882, 2244, 1872, 1637, 1493, 1375, 1276, 1190, 1130, 1102, 1104, 1149, 1210, 1311, 1413, 1524, 1637, 1847, 2181, 1859, 1625, 1467, 1338, 1240, 1150, 1088, 1043, 1050, 1110, 1195, 1274, 1366, 1495, 1621, 1830, 2209, 1779, 1619, 1455, 1328, 1219, 1146, 1076, 1025, 1044, 1080, 1171, 1268, 1371, 1501, 1605, 1792, 2163, 1799, 1606, 1464, 1339, 1226, 1137, 1083, 1024, 1040, 1107, 1176, 1271, 1386, 1497, 1610, 1796, 2167, 1813, 1649, 1489, 1356, 1260, 1167, 1118, 1081, 1090, 1133, 1215, 1306, 1398, 1508, 1636, 1803, 2241, 1861, 1668, 1535, 1399, 1295, 1225, 1174, 1148, 1143, 1181, 1239, 1330, 1438, 1543, 1662, 1804, 2254, 1879, 1696, 1575, 1458, 1376, 1290, 1242, 1220, 1234, 1241, 1317, 1401, 1487, 1594, 1699, 1878, 2387, 1975, 1779, 1655, 1513, 1433, 1369, 1324, 1304, 1310, 1334, 1400, 1467, 1550, 1618, 1758, 1926, 2500, 2084, 1873, 1727, 1607, 1520, 1469, 1424, 1418, 1439, 1447, 1484, 1561, 1614, 1733, 1803, 2015, 2600, 2200, 1970, 1820, 1700, 1607, 1580, 1537, 1512, 1509, 1526, 1559, 1652, 1713, 1793, 1904, 2102, 2808, 2361, 2121, 1956, 1824, 1766, 1733, 1673, 1672, 1684, 1715, 1728, 1763, 1807, 1901, 2064, 2199]
| },
| "lsc_samples_blue": {
| "uCoeff": [2976, 2522, 2211, 2038, 1894, 1786, 1729, 1694, 1687, 1708, 1702, 1734, 1746, 1830, 1922, 2068, 2351, 2680, 2239, 1999, 1828, 1676, 1615, 1562, 1528, 1525, 1518, 1543, 1558, 1612, 1693, 1763, 1902, 2163, 2604, 2093, 1893, 1699, 1605, 1539, 1480, 1435, 1408, 1410, 1430, 1478, 1510, 1591, 1673, 1809, 2061, 2435, 1985, 1777, 1613, 1515, 1437, 1366, 1329, 1303, 1319, 1324, 1369, 1450, 1513, 1627, 1712, 1961, 2285, 1874, 1703, 1555, 1443, 1348, 1272, 1252, 1222, 1232, 1258, 1296, 1392, 1458, 1551, 1684, 1891, 2209, 1818, 1622, 1498, 1378, 1292, 1214, 1177, 1162, 1155, 1188, 1255, 1345, 1410, 1520, 1643, 1841, 2153, 1765, 1588, 1463, 1331, 1243, 1180, 1126, 1088, 1102, 1120, 1206, 1288, 1372, 1485, 1625, 1787, 2053, 1739, 1565, 1439, 1300, 1218, 1136, 1074, 1047, 1043, 1096, 1182, 1247, 1367, 1460, 1579, 1799, 2075, 1702, 1557, 1413, 1299, 1204, 1125, 1061, 1024, 1024, 1077, 1155, 1241, 1342, 1438, 1563, 1805, 2072, 1710, 1530, 1410, 1302, 1195, 1125, 1074, 1027, 1027, 1069, 1165, 1249, 1357, 1434, 1573, 1745, 2073, 1729, 1534, 1446, 1323, 1225, 1170, 1106, 1063, 1072, 1111, 1190, 1285, 1351, 1458, 1595, 1774, 2082, 1751, 1593, 1480, 1376, 1283, 1198, 1157, 1148, 1132, 1186, 1241, 1313, 1390, 1492, 1616, 1814, 2161, 1805, 1629, 1507, 1418, 1350, 1270, 1227, 1212, 1211, 1224, 1282, 1369, 1440, 1541, 1643, 1854, 2262, 1871, 1699, 1581, 1480, 1403, 1342, 1333, 1278, 1297, 1314, 1371, 1431, 1517, 1607, 1687, 1897, 2350, 1977, 1744, 1635, 1561, 1480, 1421, 1419, 1384, 1403, 1433, 1449, 1493, 1560, 1631, 1760, 1974, 2441, 2032, 1871, 1724, 1649, 1565, 1523, 1506, 1490, 1496, 1525, 1551, 1578, 1623, 1697, 1822, 2086, 2690, 2304, 2059, 1917, 1837, 1745, 1717, 1644, 1662, 1666, 1693, 1665, 1747, 1789, 1844, 2032, 2273]
| }
| }, {
| "name": "1600x1200_D65_70",
| "resolution": "1600x1200",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3053, 2717, 2499, 2294, 2197, 2083, 2002, 1952, 1951, 1927, 1947, 1989, 2027, 2061, 2149, 2222, 2383, 2919, 2455, 2279, 2115, 1976, 1894, 1803, 1779, 1725, 1718, 1741, 1788, 1858, 1952, 2002, 2058, 2230, 2738, 2376, 2180, 1984, 1879, 1748, 1678, 1624, 1582, 1576, 1616, 1670, 1733, 1845, 1886, 2028, 2197, 2593, 2210, 2066, 1872, 1728, 1635, 1545, 1505, 1456, 1454, 1491, 1566, 1635, 1727, 1884, 1946, 2108, 2527, 2155, 1972, 1805, 1658, 1517, 1430, 1383, 1321, 1317, 1402, 1450, 1546, 1661, 1770, 1891, 2023, 2427, 2069, 1891, 1717, 1580, 1454, 1326, 1269, 1229, 1238, 1287, 1361, 1469, 1607, 1729, 1877, 2041, 2390, 2011, 1840, 1668, 1492, 1381, 1288, 1188, 1136, 1151, 1196, 1302, 1404, 1541, 1652, 1783, 1966, 2335, 1986, 1833, 1641, 1470, 1316, 1224, 1137, 1067, 1085, 1152, 1243, 1372, 1500, 1653, 1764, 1947, 2344, 1999, 1803, 1633, 1461, 1303, 1190, 1103, 1024, 1045, 1110, 1248, 1364, 1471, 1619, 1753, 1930, 2298, 2001, 1812, 1630, 1475, 1318, 1201, 1118, 1044, 1055, 1135, 1243, 1360, 1495, 1627, 1766, 1934, 2332, 2008, 1827, 1656, 1499, 1360, 1258, 1167, 1103, 1105, 1175, 1279, 1412, 1532, 1646, 1796, 1929, 2383, 2061, 1862, 1709, 1549, 1441, 1307, 1226, 1194, 1195, 1257, 1349, 1445, 1545, 1690, 1802, 1951, 2440, 2102, 1922, 1778, 1626, 1514, 1417, 1338, 1291, 1307, 1332, 1424, 1529, 1628, 1752, 1880, 2011, 2512, 2179, 2011, 1851, 1707, 1572, 1500, 1429, 1394, 1414, 1445, 1500, 1609, 1721, 1806, 1892, 2030, 2548, 2220, 2060, 1918, 1801, 1722, 1618, 1575, 1532, 1518, 1593, 1634, 1709, 1775, 1851, 1929, 2119, 2690, 2315, 2153, 2033, 1892, 1798, 1752, 1688, 1654, 1655, 1680, 1722, 1803, 1847, 1945, 1993, 2137, 2806, 2514, 2282, 2212, 2082, 1980, 1934, 1867, 1846, 1840, 1898, 1893, 1930, 1972, 2034, 2099, 2237]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2516, 2229, 2079, 1913, 1825, 1744, 1718, 1693, 1662, 1662, 1667, 1680, 1703, 1743, 1796, 1872, 1984, 2369, 2068, 1910, 1776, 1670, 1603, 1569, 1554, 1526, 1530, 1514, 1542, 1597, 1630, 1672, 1774, 1894, 2283, 1960, 1788, 1652, 1561, 1495, 1450, 1424, 1393, 1389, 1432, 1471, 1526, 1559, 1616, 1695, 1842, 2160, 1869, 1706, 1595, 1505, 1437, 1375, 1334, 1317, 1336, 1349, 1397, 1438, 1497, 1568, 1639, 1761, 2093, 1781, 1663, 1523, 1431, 1360, 1286, 1262, 1243, 1240, 1264, 1298, 1378, 1453, 1534, 1590, 1742, 2037, 1747, 1591, 1464, 1374, 1278, 1222, 1177, 1169, 1168, 1197, 1255, 1326, 1390, 1479, 1564, 1680, 1960, 1710, 1568, 1429, 1333, 1249, 1183, 1125, 1102, 1109, 1143, 1204, 1275, 1368, 1462, 1552, 1677, 1942, 1677, 1529, 1416, 1302, 1226, 1136, 1091, 1056, 1065, 1096, 1174, 1265, 1353, 1441, 1521, 1649, 1964, 1680, 1540, 1422, 1306, 1207, 1116, 1073, 1024, 1028, 1088, 1160, 1255, 1341, 1419, 1525, 1623, 1929, 1651, 1555, 1413, 1307, 1209, 1138, 1080, 1029, 1033, 1090, 1173, 1273, 1359, 1444, 1534, 1634, 1924, 1680, 1561, 1433, 1331, 1237, 1168, 1111, 1074, 1094, 1134, 1195, 1293, 1369, 1454, 1528, 1641, 1988, 1721, 1576, 1474, 1373, 1288, 1225, 1165, 1139, 1144, 1193, 1228, 1329, 1389, 1472, 1576, 1690, 2058, 1752, 1615, 1525, 1442, 1360, 1279, 1235, 1223, 1222, 1254, 1305, 1386, 1452, 1524, 1592, 1699, 2051, 1812, 1681, 1565, 1497, 1423, 1371, 1316, 1294, 1311, 1334, 1380, 1429, 1510, 1575, 1618, 1701, 2145, 1859, 1718, 1634, 1555, 1501, 1443, 1418, 1408, 1398, 1420, 1454, 1509, 1565, 1626, 1658, 1771, 2206, 1966, 1815, 1694, 1643, 1594, 1528, 1504, 1477, 1488, 1495, 1524, 1560, 1590, 1658, 1713, 1827, 2276, 2050, 1910, 1824, 1771, 1680, 1660, 1620, 1606, 1618, 1621, 1648, 1664, 1703, 1738, 1792, 1872]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2577, 2246, 2112, 1947, 1833, 1742, 1723, 1698, 1684, 1705, 1696, 1692, 1718, 1782, 1835, 1888, 1996, 2408, 2108, 1935, 1803, 1704, 1621, 1593, 1543, 1543, 1539, 1539, 1572, 1607, 1662, 1716, 1767, 1909, 2320, 2025, 1826, 1689, 1601, 1544, 1471, 1461, 1421, 1434, 1461, 1482, 1539, 1592, 1643, 1721, 1854, 2223, 1897, 1741, 1612, 1516, 1436, 1389, 1334, 1337, 1341, 1359, 1402, 1470, 1512, 1571, 1648, 1780, 2126, 1831, 1676, 1556, 1448, 1361, 1310, 1265, 1229, 1249, 1276, 1337, 1389, 1456, 1540, 1600, 1742, 2033, 1772, 1610, 1515, 1379, 1309, 1231, 1192, 1163, 1169, 1211, 1260, 1326, 1425, 1499, 1576, 1703, 2000, 1739, 1564, 1453, 1355, 1267, 1187, 1129, 1101, 1103, 1146, 1203, 1294, 1379, 1464, 1541, 1682, 1955, 1732, 1556, 1431, 1321, 1233, 1148, 1088, 1043, 1050, 1109, 1190, 1261, 1338, 1441, 1530, 1672, 1979, 1665, 1552, 1421, 1312, 1213, 1144, 1076, 1025, 1044, 1079, 1167, 1255, 1344, 1447, 1517, 1643, 1940, 1681, 1540, 1428, 1322, 1220, 1135, 1083, 1024, 1040, 1106, 1171, 1258, 1357, 1443, 1521, 1645, 1938, 1689, 1574, 1449, 1337, 1251, 1164, 1117, 1081, 1089, 1131, 1208, 1290, 1366, 1450, 1540, 1647, 1988, 1722, 1586, 1487, 1374, 1283, 1219, 1171, 1146, 1141, 1176, 1229, 1309, 1399, 1477, 1556, 1642, 1984, 1728, 1602, 1516, 1424, 1356, 1279, 1235, 1214, 1227, 1232, 1300, 1371, 1438, 1515, 1580, 1691, 2069, 1793, 1663, 1578, 1467, 1403, 1349, 1309, 1291, 1296, 1316, 1372, 1425, 1486, 1527, 1618, 1715, 2129, 1863, 1727, 1629, 1541, 1474, 1435, 1397, 1393, 1411, 1414, 1442, 1500, 1531, 1611, 1640, 1766, 2171, 1930, 1788, 1692, 1609, 1540, 1525, 1491, 1470, 1465, 1476, 1498, 1567, 1602, 1645, 1702, 1808, 2273, 2022, 1883, 1783, 1696, 1663, 1645, 1598, 1599, 1608, 1629, 1630, 1645, 1662, 1711, 1801, 1847]
| },
| "lsc_samples_blue": {
| "uCoeff": [2390, 2143, 1954, 1850, 1755, 1680, 1641, 1617, 1612, 1629, 1618, 1635, 1631, 1681, 1728, 1804, 1953, 2229, 1960, 1811, 1698, 1588, 1547, 1509, 1483, 1481, 1473, 1492, 1497, 1533, 1585, 1621, 1701, 1853, 2207, 1870, 1744, 1605, 1539, 1492, 1445, 1407, 1383, 1384, 1399, 1436, 1455, 1512, 1562, 1645, 1801, 2105, 1801, 1661, 1541, 1469, 1407, 1346, 1314, 1290, 1305, 1307, 1344, 1410, 1454, 1534, 1580, 1742, 2008, 1724, 1608, 1498, 1410, 1329, 1262, 1245, 1216, 1225, 1248, 1280, 1363, 1412, 1478, 1567, 1701, 1962, 1687, 1546, 1453, 1354, 1280, 1208, 1174, 1160, 1152, 1183, 1245, 1323, 1373, 1457, 1541, 1671, 1927, 1648, 1521, 1425, 1313, 1235, 1177, 1125, 1088, 1101, 1118, 1199, 1273, 1342, 1430, 1530, 1634, 1852, 1630, 1503, 1405, 1285, 1212, 1134, 1074, 1047, 1043, 1095, 1177, 1235, 1339, 1410, 1494, 1647, 1871, 1600, 1497, 1382, 1285, 1199, 1124, 1061, 1024, 1024, 1076, 1151, 1230, 1317, 1391, 1482, 1654, 1867, 1605, 1472, 1379, 1287, 1190, 1123, 1074, 1027, 1027, 1068, 1161, 1237, 1330, 1387, 1489, 1604, 1863, 1618, 1473, 1410, 1306, 1218, 1167, 1105, 1063, 1071, 1109, 1184, 1270, 1323, 1406, 1505, 1624, 1862, 1631, 1520, 1437, 1352, 1271, 1193, 1154, 1146, 1130, 1181, 1231, 1294, 1355, 1432, 1518, 1650, 1912, 1667, 1545, 1456, 1387, 1331, 1260, 1220, 1207, 1205, 1216, 1267, 1342, 1396, 1469, 1534, 1672, 1973, 1709, 1595, 1513, 1437, 1375, 1324, 1318, 1267, 1284, 1297, 1346, 1392, 1457, 1517, 1560, 1693, 2017, 1778, 1620, 1550, 1500, 1438, 1390, 1392, 1361, 1377, 1402, 1410, 1440, 1485, 1527, 1606, 1735, 2055, 1801, 1708, 1611, 1565, 1503, 1473, 1463, 1449, 1453, 1475, 1491, 1503, 1526, 1567, 1639, 1797, 2190, 1980, 1835, 1751, 1707, 1645, 1631, 1572, 1590, 1592, 1610, 1576, 1632, 1647, 1666, 1777, 1898]
| }
| }, {
| "name": "1600x1200_D75_100",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3896, 3152, 2721, 2527, 2287, 2162, 2067, 2019, 1976, 1980, 2016, 2051, 2118, 2229, 2318, 2558, 2831, 3435, 2853, 2485, 2231, 2066, 1935, 1830, 1761, 1760, 1729, 1760, 1830, 1922, 2015, 2072, 2303, 2625, 3163, 2606, 2272, 2070, 1920, 1796, 1676, 1614, 1572, 1600, 1635, 1681, 1796, 1882, 2019, 2183, 2506, 2950, 2445, 2114, 1944, 1786, 1635, 1548, 1484, 1428, 1462, 1462, 1557, 1685, 1762, 1939, 2114, 2337, 2748, 2306, 2062, 1823, 1672, 1508, 1419, 1349, 1324, 1336, 1379, 1451, 1559, 1673, 1862, 1998, 2203, 2559, 2211, 1945, 1724, 1556, 1418, 1326, 1253, 1228, 1213, 1258, 1359, 1461, 1617, 1755, 1935, 2143, 2592, 2133, 1885, 1662, 1523, 1357, 1250, 1166, 1125, 1143, 1198, 1282, 1399, 1541, 1699, 1847, 2110, 2497, 2097, 1838, 1645, 1453, 1311, 1192, 1121, 1061, 1063, 1153, 1234, 1369, 1507, 1691, 1839, 2102, 2506, 2064, 1836, 1652, 1454, 1304, 1190, 1075, 1024, 1041, 1097, 1236, 1352, 1484, 1634, 1808, 2161, 2501, 2069, 1857, 1640, 1473, 1307, 1185, 1098, 1031, 1057, 1117, 1217, 1356, 1495, 1665, 1811, 2079, 2539, 2091, 1868, 1653, 1505, 1365, 1233, 1149, 1089, 1110, 1162, 1281, 1388, 1542, 1673, 1854, 2097, 2552, 2160, 1893, 1734, 1578, 1420, 1295, 1242, 1187, 1192, 1256, 1312, 1437, 1612, 1714, 1890, 2126, 2705, 2238, 1970, 1793, 1627, 1478, 1408, 1316, 1279, 1280, 1333, 1417, 1538, 1664, 1800, 1957, 2147, 2784, 2378, 2096, 1890, 1741, 1598, 1491, 1439, 1399, 1409, 1438, 1538, 1611, 1780, 1870, 2026, 2265, 3002, 2454, 2216, 1975, 1866, 1738, 1623, 1566, 1533, 1524, 1597, 1678, 1749, 1834, 1973, 2115, 2377, 3136, 2606, 2332, 2154, 1994, 1857, 1781, 1756, 1671, 1682, 1686, 1766, 1851, 1948, 2045, 2174, 2429, 3507, 2920, 2531, 2353, 2184, 2064, 2013, 1933, 1873, 1867, 1938, 1979, 2033, 2123, 2290, 2412, 2630]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3122, 2649, 2366, 2099, 1969, 1866, 1795, 1753, 1771, 1709, 1746, 1764, 1862, 1918, 1983, 2143, 2381, 2851, 2374, 2135, 1913, 1770, 1693, 1626, 1580, 1577, 1565, 1563, 1624, 1679, 1746, 1837, 1987, 2182, 2680, 2214, 1961, 1770, 1637, 1570, 1503, 1476, 1447, 1439, 1466, 1503, 1567, 1636, 1764, 1867, 2108, 2506, 2083, 1832, 1646, 1540, 1453, 1382, 1352, 1347, 1347, 1376, 1416, 1491, 1547, 1660, 1773, 1994, 2408, 1979, 1754, 1579, 1473, 1367, 1298, 1272, 1245, 1258, 1287, 1324, 1419, 1503, 1582, 1723, 1926, 2286, 1873, 1673, 1517, 1398, 1300, 1234, 1181, 1176, 1187, 1209, 1270, 1340, 1449, 1561, 1684, 1855, 2190, 1821, 1619, 1467, 1357, 1263, 1174, 1135, 1100, 1123, 1159, 1230, 1311, 1405, 1521, 1645, 1813, 2178, 1792, 1603, 1444, 1315, 1225, 1164, 1090, 1055, 1058, 1113, 1187, 1274, 1392, 1487, 1631, 1810, 2127, 1796, 1595, 1447, 1321, 1227, 1135, 1073, 1024, 1041, 1091, 1178, 1278, 1367, 1483, 1623, 1821, 2185, 1787, 1587, 1462, 1339, 1221, 1145, 1078, 1038, 1045, 1102, 1197, 1268, 1384, 1495, 1614, 1826, 2204, 1787, 1629, 1477, 1362, 1255, 1178, 1128, 1081, 1088, 1129, 1211, 1300, 1405, 1503, 1629, 1823, 2234, 1853, 1649, 1513, 1413, 1314, 1232, 1168, 1158, 1157, 1204, 1256, 1362, 1463, 1543, 1686, 1838, 2330, 1930, 1710, 1586, 1490, 1363, 1305, 1252, 1233, 1237, 1271, 1314, 1418, 1508, 1596, 1734, 1903, 2388, 1985, 1792, 1649, 1524, 1442, 1387, 1333, 1315, 1320, 1352, 1400, 1481, 1582, 1672, 1777, 1949, 2488, 2120, 1866, 1737, 1636, 1543, 1481, 1460, 1439, 1426, 1447, 1511, 1558, 1659, 1743, 1861, 2024, 2643, 2188, 2009, 1833, 1751, 1661, 1575, 1563, 1535, 1539, 1589, 1607, 1668, 1712, 1816, 1928, 2154, 2797, 2377, 2184, 2004, 1879, 1795, 1741, 1735, 1694, 1700, 1728, 1731, 1807, 1854, 1925, 2082, 2306]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3198, 2757, 2415, 2142, 1972, 1892, 1828, 1827, 1783, 1798, 1786, 1812, 1904, 1959, 2032, 2193, 2417, 2943, 2411, 2156, 1894, 1792, 1716, 1645, 1584, 1592, 1591, 1593, 1646, 1721, 1789, 1881, 1981, 2272, 2673, 2239, 1992, 1783, 1678, 1592, 1527, 1480, 1467, 1464, 1498, 1518, 1621, 1687, 1784, 1888, 2101, 2521, 2106, 1872, 1692, 1579, 1463, 1405, 1370, 1348, 1352, 1379, 1429, 1507, 1575, 1681, 1794, 2021, 2395, 2019, 1776, 1607, 1482, 1381, 1310, 1276, 1263, 1250, 1287, 1345, 1432, 1493, 1622, 1752, 1929, 2295, 1896, 1703, 1531, 1395, 1334, 1238, 1196, 1171, 1196, 1224, 1272, 1361, 1457, 1574, 1695, 1883, 2233, 1849, 1652, 1495, 1367, 1276, 1195, 1137, 1108, 1114, 1139, 1220, 1309, 1419, 1524, 1631, 1858, 2179, 1813, 1597, 1444, 1345, 1239, 1157, 1101, 1054, 1057, 1125, 1199, 1298, 1379, 1505, 1620, 1803, 2157, 1779, 1601, 1449, 1332, 1225, 1141, 1072, 1024, 1037, 1098, 1186, 1277, 1389, 1518, 1612, 1795, 2131, 1784, 1596, 1461, 1333, 1227, 1154, 1087, 1029, 1045, 1093, 1180, 1279, 1379, 1490, 1612, 1778, 2162, 1802, 1633, 1475, 1368, 1256, 1176, 1119, 1081, 1081, 1131, 1217, 1300, 1400, 1508, 1628, 1820, 2243, 1846, 1641, 1523, 1391, 1295, 1222, 1167, 1151, 1150, 1181, 1252, 1330, 1415, 1539, 1658, 1834, 2272, 1886, 1721, 1566, 1445, 1350, 1293, 1230, 1229, 1233, 1259, 1312, 1398, 1491, 1576, 1707, 1874, 2328, 1963, 1782, 1637, 1522, 1427, 1366, 1337, 1304, 1325, 1343, 1408, 1470, 1550, 1635, 1751, 1918, 2518, 2041, 1855, 1721, 1627, 1523, 1489, 1444, 1431, 1403, 1464, 1479, 1549, 1621, 1721, 1817, 2020, 2636, 2211, 1948, 1796, 1720, 1617, 1573, 1544, 1515, 1514, 1560, 1584, 1627, 1712, 1765, 1890, 2083, 2771, 2380, 2148, 1959, 1858, 1761, 1717, 1698, 1695, 1698, 1695, 1734, 1771, 1811, 1899, 2005, 2227]
| },
| "lsc_samples_blue": {
| "uCoeff": [3053, 2512, 2231, 2006, 1887, 1785, 1767, 1687, 1696, 1695, 1707, 1725, 1771, 1873, 1879, 2096, 2336, 2730, 2219, 1980, 1799, 1686, 1625, 1545, 1539, 1514, 1525, 1513, 1556, 1626, 1682, 1769, 1891, 2135, 2601, 2113, 1841, 1685, 1598, 1525, 1467, 1433, 1417, 1401, 1447, 1474, 1511, 1586, 1666, 1795, 2035, 2402, 1944, 1757, 1591, 1518, 1413, 1369, 1330, 1308, 1325, 1355, 1374, 1434, 1523, 1601, 1724, 1971, 2304, 1852, 1695, 1535, 1425, 1326, 1312, 1242, 1223, 1221, 1265, 1329, 1373, 1466, 1569, 1685, 1858, 2191, 1790, 1595, 1502, 1390, 1277, 1215, 1176, 1154, 1158, 1191, 1257, 1318, 1389, 1528, 1633, 1842, 2171, 1744, 1587, 1441, 1350, 1249, 1175, 1132, 1083, 1110, 1129, 1198, 1288, 1370, 1475, 1631, 1820, 2061, 1736, 1553, 1419, 1299, 1220, 1137, 1085, 1046, 1059, 1104, 1166, 1271, 1349, 1465, 1569, 1790, 2045, 1706, 1538, 1406, 1297, 1209, 1118, 1055, 1025, 1030, 1082, 1164, 1253, 1339, 1444, 1583, 1809, 2070, 1717, 1566, 1413, 1300, 1199, 1141, 1076, 1024, 1036, 1090, 1169, 1236, 1326, 1463, 1572, 1766, 2034, 1711, 1553, 1428, 1325, 1224, 1170, 1109, 1062, 1076, 1127, 1207, 1272, 1368, 1452, 1586, 1763, 2088, 1760, 1569, 1459, 1367, 1280, 1204, 1158, 1133, 1129, 1173, 1217, 1311, 1394, 1485, 1598, 1812, 2167, 1777, 1639, 1512, 1415, 1343, 1276, 1213, 1210, 1224, 1243, 1294, 1372, 1449, 1513, 1659, 1848, 2251, 1863, 1693, 1531, 1462, 1401, 1350, 1299, 1276, 1288, 1313, 1374, 1426, 1486, 1592, 1689, 1872, 2362, 1950, 1766, 1643, 1565, 1483, 1424, 1411, 1380, 1375, 1424, 1456, 1529, 1561, 1658, 1757, 1937, 2465, 2059, 1849, 1728, 1625, 1590, 1538, 1509, 1485, 1487, 1533, 1539, 1598, 1652, 1707, 1812, 2036, 2730, 2288, 2063, 1910, 1812, 1778, 1719, 1672, 1670, 1674, 1651, 1729, 1758, 1763, 1848, 1946, 2230]
| }
| }, {
| "name": "1600x1200_D75_70",
| "resolution": "1600x1200",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3034, 2613, 2354, 2248, 2085, 2004, 1937, 1904, 1869, 1870, 1893, 1908, 1943, 2006, 2038, 2169, 2289, 2778, 2433, 2204, 2036, 1925, 1831, 1750, 1695, 1696, 1665, 1687, 1738, 1801, 1855, 1870, 2010, 2189, 2626, 2276, 2058, 1924, 1818, 1725, 1626, 1574, 1537, 1561, 1588, 1620, 1709, 1762, 1848, 1941, 2134, 2500, 2173, 1946, 1832, 1714, 1590, 1518, 1462, 1410, 1441, 1437, 1518, 1622, 1672, 1798, 1906, 2030, 2370, 2079, 1918, 1738, 1621, 1480, 1402, 1338, 1315, 1326, 1364, 1426, 1517, 1604, 1745, 1826, 1944, 2239, 2015, 1827, 1658, 1520, 1400, 1317, 1248, 1225, 1209, 1251, 1344, 1432, 1561, 1662, 1784, 1910, 2278, 1958, 1782, 1607, 1494, 1345, 1245, 1164, 1124, 1142, 1194, 1273, 1377, 1496, 1618, 1717, 1893, 2209, 1933, 1745, 1595, 1430, 1302, 1190, 1121, 1061, 1063, 1151, 1228, 1351, 1468, 1615, 1715, 1891, 2219, 1907, 1745, 1602, 1432, 1296, 1188, 1075, 1024, 1041, 1096, 1230, 1335, 1448, 1565, 1690, 1941, 2212, 1910, 1762, 1590, 1449, 1298, 1183, 1098, 1031, 1057, 1116, 1211, 1338, 1457, 1592, 1691, 1873, 2236, 1923, 1767, 1599, 1477, 1353, 1229, 1148, 1089, 1109, 1159, 1272, 1367, 1497, 1596, 1723, 1882, 2234, 1972, 1782, 1667, 1541, 1402, 1287, 1238, 1184, 1189, 1249, 1299, 1409, 1556, 1626, 1747, 1897, 2336, 2023, 1838, 1711, 1579, 1452, 1392, 1307, 1272, 1272, 1320, 1394, 1497, 1596, 1692, 1792, 1901, 2373, 2119, 1931, 1785, 1673, 1556, 1464, 1419, 1382, 1390, 1414, 1500, 1555, 1688, 1740, 1834, 1975, 2505, 2155, 2011, 1842, 1771, 1672, 1577, 1529, 1500, 1490, 1553, 1618, 1667, 1721, 1810, 1887, 2037, 2561, 2243, 2080, 1972, 1863, 1762, 1706, 1690, 1615, 1623, 1620, 1681, 1739, 1799, 1848, 1910, 2046, 2762, 2440, 2205, 2107, 1999, 1919, 1890, 1828, 1777, 1770, 1824, 1846, 1872, 1919, 2016, 2060, 2148]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2493, 2237, 2075, 1900, 1818, 1749, 1699, 1669, 1687, 1630, 1656, 1661, 1728, 1752, 1775, 1860, 1974, 2353, 2064, 1921, 1770, 1669, 1617, 1566, 1530, 1529, 1516, 1510, 1555, 1591, 1630, 1680, 1766, 1867, 2264, 1966, 1800, 1666, 1568, 1520, 1466, 1445, 1420, 1411, 1432, 1459, 1505, 1550, 1637, 1691, 1836, 2160, 1880, 1708, 1570, 1491, 1422, 1361, 1336, 1332, 1331, 1356, 1387, 1447, 1483, 1562, 1630, 1767, 2104, 1810, 1652, 1520, 1437, 1347, 1287, 1264, 1239, 1250, 1276, 1307, 1388, 1452, 1504, 1599, 1728, 2023, 1732, 1590, 1470, 1373, 1288, 1228, 1178, 1173, 1184, 1204, 1259, 1319, 1409, 1492, 1575, 1682, 1956, 1696, 1548, 1429, 1338, 1254, 1171, 1134, 1099, 1122, 1156, 1223, 1294, 1372, 1462, 1547, 1655, 1952, 1675, 1537, 1410, 1300, 1219, 1162, 1090, 1055, 1058, 1112, 1182, 1261, 1362, 1434, 1538, 1656, 1913, 1680, 1531, 1413, 1306, 1221, 1134, 1073, 1024, 1041, 1090, 1174, 1265, 1340, 1431, 1533, 1666, 1958, 1671, 1523, 1427, 1322, 1215, 1143, 1078, 1038, 1045, 1101, 1192, 1255, 1355, 1441, 1524, 1669, 1968, 1667, 1557, 1438, 1342, 1247, 1175, 1127, 1081, 1087, 1127, 1204, 1284, 1372, 1446, 1534, 1663, 1982, 1716, 1569, 1467, 1387, 1301, 1226, 1165, 1156, 1154, 1199, 1246, 1339, 1421, 1477, 1576, 1669, 2044, 1770, 1615, 1526, 1453, 1343, 1293, 1245, 1227, 1230, 1261, 1297, 1387, 1456, 1516, 1608, 1710, 2069, 1801, 1674, 1573, 1477, 1411, 1366, 1318, 1302, 1306, 1333, 1372, 1438, 1514, 1572, 1633, 1733, 2120, 1891, 1721, 1637, 1567, 1495, 1446, 1430, 1412, 1399, 1414, 1466, 1497, 1570, 1619, 1686, 1773, 2202, 1921, 1819, 1703, 1653, 1588, 1520, 1514, 1491, 1493, 1533, 1540, 1581, 1601, 1663, 1721, 1846, 2265, 2034, 1933, 1822, 1743, 1688, 1652, 1653, 1619, 1622, 1640, 1633, 1682, 1700, 1730, 1814, 1921]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2546, 2318, 2114, 1935, 1821, 1771, 1728, 1734, 1698, 1709, 1691, 1702, 1764, 1786, 1814, 1897, 1999, 2420, 2093, 1938, 1754, 1688, 1637, 1583, 1534, 1543, 1540, 1537, 1575, 1627, 1666, 1716, 1761, 1932, 2259, 1985, 1826, 1677, 1604, 1540, 1488, 1449, 1438, 1434, 1462, 1472, 1553, 1594, 1653, 1708, 1831, 2171, 1899, 1741, 1611, 1526, 1431, 1383, 1353, 1333, 1336, 1358, 1399, 1461, 1508, 1580, 1647, 1788, 2094, 1843, 1671, 1545, 1446, 1360, 1298, 1268, 1256, 1243, 1276, 1327, 1400, 1443, 1539, 1623, 1731, 2030, 1752, 1616, 1483, 1370, 1320, 1232, 1193, 1169, 1193, 1218, 1261, 1338, 1416, 1504, 1584, 1704, 1991, 1719, 1577, 1454, 1347, 1267, 1192, 1136, 1107, 1113, 1137, 1213, 1292, 1385, 1464, 1535, 1691, 1953, 1693, 1532, 1410, 1328, 1232, 1155, 1101, 1054, 1057, 1123, 1194, 1283, 1350, 1450, 1529, 1651, 1937, 1665, 1536, 1415, 1316, 1219, 1139, 1072, 1024, 1037, 1097, 1181, 1264, 1360, 1462, 1523, 1646, 1915, 1668, 1531, 1426, 1317, 1221, 1152, 1087, 1029, 1045, 1092, 1175, 1265, 1350, 1437, 1522, 1631, 1934, 1680, 1560, 1436, 1348, 1248, 1173, 1118, 1081, 1080, 1129, 1210, 1284, 1368, 1450, 1533, 1661, 1989, 1710, 1562, 1476, 1366, 1283, 1216, 1164, 1149, 1148, 1176, 1242, 1309, 1378, 1473, 1553, 1665, 1998, 1734, 1624, 1508, 1412, 1331, 1282, 1223, 1223, 1226, 1249, 1295, 1368, 1441, 1499, 1586, 1688, 2023, 1783, 1665, 1562, 1475, 1397, 1346, 1322, 1291, 1310, 1325, 1380, 1428, 1486, 1541, 1612, 1709, 2143, 1829, 1712, 1623, 1559, 1477, 1453, 1416, 1405, 1377, 1430, 1437, 1490, 1537, 1601, 1651, 1770, 2197, 1939, 1770, 1672, 1626, 1549, 1519, 1497, 1472, 1470, 1507, 1520, 1546, 1601, 1622, 1691, 1795, 2247, 2037, 1905, 1786, 1725, 1658, 1631, 1620, 1619, 1620, 1611, 1635, 1652, 1665, 1710, 1757, 1866]
| },
| "lsc_samples_blue": {
| "uCoeff": [2444, 2135, 1970, 1824, 1749, 1679, 1675, 1610, 1620, 1617, 1622, 1627, 1652, 1716, 1694, 1824, 1942, 2265, 1945, 1796, 1674, 1597, 1556, 1493, 1493, 1471, 1480, 1464, 1495, 1545, 1576, 1625, 1692, 1832, 2205, 1886, 1701, 1593, 1533, 1479, 1433, 1405, 1392, 1375, 1414, 1433, 1456, 1507, 1556, 1634, 1781, 2080, 1768, 1644, 1522, 1471, 1384, 1349, 1315, 1295, 1310, 1336, 1348, 1395, 1462, 1512, 1590, 1750, 2023, 1706, 1602, 1481, 1393, 1309, 1300, 1235, 1217, 1215, 1255, 1311, 1345, 1419, 1493, 1568, 1675, 1948, 1663, 1522, 1457, 1365, 1266, 1209, 1173, 1152, 1155, 1186, 1246, 1298, 1354, 1464, 1532, 1672, 1941, 1631, 1520, 1405, 1331, 1241, 1172, 1131, 1083, 1109, 1127, 1192, 1273, 1340, 1421, 1535, 1661, 1858, 1627, 1493, 1387, 1284, 1214, 1135, 1085, 1046, 1059, 1103, 1162, 1258, 1323, 1415, 1486, 1640, 1847, 1603, 1480, 1376, 1283, 1204, 1117, 1055, 1025, 1030, 1081, 1160, 1241, 1314, 1397, 1499, 1657, 1866, 1611, 1504, 1382, 1285, 1194, 1139, 1076, 1024, 1036, 1089, 1165, 1225, 1302, 1413, 1488, 1621, 1832, 1603, 1490, 1393, 1307, 1217, 1167, 1108, 1062, 1075, 1125, 1200, 1258, 1338, 1401, 1498, 1615, 1866, 1638, 1499, 1418, 1344, 1268, 1199, 1155, 1131, 1127, 1169, 1208, 1292, 1359, 1426, 1503, 1648, 1916, 1644, 1553, 1460, 1384, 1325, 1265, 1207, 1205, 1218, 1234, 1278, 1344, 1404, 1445, 1547, 1667, 1964, 1703, 1590, 1469, 1421, 1373, 1331, 1286, 1265, 1275, 1296, 1348, 1388, 1430, 1505, 1562, 1674, 2026, 1757, 1639, 1556, 1504, 1441, 1393, 1385, 1357, 1351, 1393, 1416, 1472, 1486, 1549, 1604, 1708, 2073, 1822, 1690, 1615, 1544, 1525, 1487, 1465, 1445, 1445, 1482, 1480, 1521, 1551, 1575, 1631, 1760, 2218, 1968, 1838, 1746, 1686, 1673, 1633, 1597, 1597, 1599, 1573, 1631, 1641, 1626, 1670, 1712, 1868]
| }
| }, {
| "name": "1600x1200_HZ_100",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4535, 3807, 3374, 3076, 2756, 2626, 2515, 2423, 2374, 2358, 2405, 2416, 2558, 2688, 2799, 3083, 3355, 4288, 3492, 3039, 2724, 2496, 2332, 2187, 2078, 2064, 2055, 2096, 2155, 2260, 2424, 2568, 2772, 3059, 3879, 3175, 2752, 2522, 2286, 2078, 1957, 1853, 1771, 1792, 1860, 1943, 2091, 2263, 2436, 2602, 2920, 3622, 2983, 2624, 2321, 2088, 1902, 1724, 1650, 1582, 1592, 1633, 1753, 1900, 2092, 2323, 2467, 2819, 3413, 2855, 2487, 2150, 1913, 1729, 1569, 1466, 1421, 1433, 1471, 1596, 1748, 1939, 2144, 2381, 2731, 3346, 2693, 2326, 2038, 1775, 1607, 1436, 1324, 1281, 1291, 1339, 1459, 1618, 1827, 2074, 2303, 2550, 3184, 2593, 2242, 1932, 1686, 1464, 1339, 1210, 1168, 1175, 1249, 1365, 1537, 1747, 1970, 2186, 2494, 3155, 2537, 2186, 1870, 1624, 1422, 1265, 1138, 1077, 1088, 1183, 1311, 1473, 1683, 1924, 2175, 2474, 3032, 2516, 2145, 1870, 1618, 1392, 1243, 1113, 1024, 1041, 1125, 1271, 1463, 1662, 1906, 2175, 2478, 3038, 2543, 2156, 1885, 1625, 1424, 1243, 1127, 1036, 1052, 1159, 1298, 1466, 1679, 1930, 2152, 2414, 3114, 2578, 2217, 1909, 1688, 1465, 1298, 1186, 1107, 1129, 1216, 1357, 1520, 1703, 1933, 2198, 2468, 3177, 2631, 2331, 2012, 1787, 1552, 1396, 1288, 1236, 1225, 1299, 1430, 1598, 1806, 2036, 2240, 2509, 3249, 2770, 2439, 2142, 1884, 1666, 1526, 1414, 1339, 1365, 1416, 1557, 1709, 1913, 2130, 2325, 2589, 3357, 2862, 2527, 2239, 2006, 1831, 1663, 1584, 1509, 1547, 1582, 1721, 1892, 2041, 2230, 2427, 2702, 3645, 3015, 2654, 2431, 2196, 2006, 1868, 1791, 1716, 1720, 1797, 1869, 2038, 2184, 2367, 2526, 2854, 3764, 3130, 2812, 2584, 2383, 2194, 2060, 1956, 1933, 1926, 1975, 2065, 2185, 2340, 2518, 2691, 2986, 3916, 3476, 3114, 2828, 2607, 2504, 2360, 2271, 2190, 2180, 2254, 2346, 2413, 2528, 2654, 2829, 3148]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3329, 2845, 2452, 2256, 2082, 2001, 1919, 1891, 1836, 1853, 1851, 1899, 1939, 2010, 2075, 2299, 2577, 3050, 2516, 2236, 2016, 1885, 1797, 1720, 1688, 1660, 1658, 1678, 1723, 1760, 1830, 1963, 2085, 2339, 2825, 2324, 2083, 1844, 1735, 1657, 1572, 1525, 1504, 1511, 1515, 1580, 1655, 1711, 1829, 1960, 2189, 2634, 2163, 1944, 1728, 1639, 1525, 1451, 1409, 1382, 1403, 1404, 1480, 1548, 1644, 1774, 1895, 2055, 2481, 2063, 1835, 1668, 1544, 1422, 1349, 1308, 1273, 1274, 1325, 1392, 1468, 1575, 1651, 1794, 2034, 2402, 1986, 1757, 1594, 1454, 1347, 1273, 1198, 1201, 1190, 1224, 1302, 1394, 1488, 1603, 1742, 1911, 2335, 1914, 1704, 1538, 1421, 1280, 1209, 1137, 1108, 1128, 1161, 1237, 1337, 1449, 1580, 1721, 1907, 2291, 1873, 1666, 1514, 1365, 1255, 1157, 1089, 1050, 1052, 1121, 1209, 1303, 1414, 1549, 1691, 1890, 2268, 1893, 1677, 1516, 1359, 1252, 1154, 1066, 1029, 1024, 1093, 1193, 1290, 1414, 1550, 1677, 1868, 2261, 1894, 1687, 1522, 1373, 1237, 1147, 1077, 1025, 1024, 1097, 1195, 1298, 1411, 1539, 1683, 1859, 2298, 1893, 1717, 1532, 1407, 1290, 1193, 1122, 1080, 1098, 1135, 1239, 1338, 1453, 1579, 1696, 1917, 2342, 1929, 1767, 1596, 1464, 1356, 1261, 1184, 1160, 1178, 1215, 1276, 1398, 1496, 1593, 1726, 1955, 2477, 2051, 1802, 1655, 1527, 1416, 1344, 1274, 1256, 1260, 1309, 1359, 1459, 1549, 1684, 1811, 1981, 2484, 2107, 1877, 1738, 1617, 1520, 1433, 1376, 1356, 1368, 1397, 1463, 1561, 1628, 1758, 1872, 2027, 2628, 2239, 2006, 1837, 1733, 1619, 1548, 1505, 1494, 1498, 1512, 1583, 1645, 1730, 1838, 1938, 2125, 2795, 2354, 2095, 1935, 1828, 1774, 1678, 1653, 1600, 1611, 1641, 1696, 1775, 1823, 1925, 2016, 2270, 3023, 2573, 2305, 2088, 1998, 1932, 1859, 1792, 1793, 1815, 1808, 1851, 1923, 1995, 2050, 2213, 2407]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3422, 2875, 2527, 2287, 2137, 2038, 1923, 1893, 1858, 1881, 1878, 1959, 1985, 2076, 2152, 2310, 2599, 3155, 2598, 2323, 2063, 1910, 1824, 1735, 1700, 1662, 1673, 1672, 1714, 1815, 1921, 2004, 2128, 2397, 2923, 2425, 2145, 1938, 1790, 1693, 1617, 1557, 1525, 1526, 1554, 1602, 1675, 1795, 1881, 1996, 2279, 2748, 2237, 1989, 1781, 1681, 1562, 1485, 1421, 1393, 1402, 1438, 1499, 1571, 1700, 1788, 1918, 2137, 2630, 2171, 1919, 1720, 1577, 1468, 1392, 1328, 1291, 1306, 1328, 1403, 1493, 1612, 1718, 1873, 2081, 2493, 2061, 1852, 1668, 1493, 1378, 1291, 1231, 1190, 1212, 1241, 1329, 1422, 1544, 1685, 1813, 2020, 2416, 2031, 1771, 1606, 1436, 1327, 1242, 1158, 1123, 1125, 1182, 1250, 1383, 1491, 1622, 1755, 2003, 2347, 1975, 1762, 1566, 1428, 1293, 1181, 1111, 1069, 1058, 1119, 1209, 1338, 1472, 1587, 1741, 1956, 2366, 1961, 1748, 1559, 1421, 1277, 1183, 1093, 1024, 1033, 1106, 1201, 1333, 1449, 1604, 1732, 1950, 2352, 1936, 1740, 1567, 1412, 1287, 1176, 1101, 1043, 1044, 1115, 1222, 1334, 1432, 1584, 1728, 1916, 2414, 1942, 1751, 1590, 1436, 1333, 1206, 1136, 1087, 1106, 1153, 1251, 1346, 1476, 1618, 1750, 1919, 2419, 2016, 1769, 1628, 1471, 1361, 1258, 1186, 1171, 1177, 1216, 1294, 1407, 1533, 1635, 1790, 1962, 2458, 2046, 1851, 1680, 1550, 1433, 1348, 1285, 1255, 1267, 1301, 1380, 1452, 1576, 1690, 1836, 1976, 2556, 2105, 1899, 1751, 1621, 1514, 1436, 1369, 1353, 1355, 1406, 1459, 1555, 1632, 1771, 1870, 2044, 2674, 2228, 2004, 1837, 1706, 1613, 1548, 1499, 1479, 1470, 1490, 1566, 1631, 1739, 1835, 1958, 2133, 2847, 2358, 2108, 1940, 1819, 1736, 1661, 1636, 1583, 1600, 1628, 1647, 1726, 1800, 1911, 2031, 2251, 2964, 2556, 2273, 2061, 1949, 1895, 1855, 1787, 1799, 1757, 1787, 1831, 1882, 1940, 2060, 2143, 2417]
| },
| "lsc_samples_blue": {
| "uCoeff": [3330, 2698, 2394, 2161, 2029, 1936, 1872, 1825, 1790, 1793, 1794, 1833, 1905, 1917, 2058, 2279, 2531, 3120, 2368, 2164, 1958, 1854, 1746, 1713, 1623, 1641, 1637, 1639, 1676, 1752, 1764, 1883, 1996, 2330, 2703, 2297, 2010, 1838, 1740, 1633, 1566, 1536, 1483, 1499, 1530, 1574, 1617, 1709, 1783, 1926, 2219, 2581, 2123, 1894, 1755, 1675, 1546, 1483, 1426, 1374, 1397, 1423, 1500, 1539, 1624, 1735, 1871, 2089, 2410, 2043, 1820, 1711, 1559, 1480, 1373, 1326, 1300, 1294, 1371, 1409, 1472, 1602, 1681, 1783, 2064, 2377, 1975, 1778, 1640, 1508, 1398, 1317, 1248, 1234, 1213, 1260, 1332, 1417, 1519, 1622, 1762, 1957, 2254, 1853, 1702, 1550, 1460, 1366, 1236, 1174, 1128, 1149, 1183, 1283, 1377, 1493, 1578, 1713, 1961, 2222, 1845, 1668, 1526, 1407, 1304, 1201, 1147, 1067, 1071, 1127, 1227, 1340, 1467, 1584, 1683, 1916, 2175, 1851, 1703, 1521, 1411, 1282, 1184, 1119, 1024, 1029, 1124, 1222, 1322, 1463, 1585, 1680, 1908, 2229, 1842, 1687, 1540, 1413, 1296, 1210, 1113, 1038, 1036, 1109, 1242, 1329, 1436, 1543, 1666, 1898, 2220, 1879, 1673, 1551, 1429, 1316, 1238, 1146, 1086, 1114, 1146, 1262, 1370, 1453, 1560, 1692, 1860, 2217, 1904, 1733, 1588, 1470, 1373, 1294, 1221, 1183, 1160, 1232, 1292, 1425, 1477, 1604, 1735, 1955, 2332, 1905, 1755, 1661, 1518, 1434, 1367, 1317, 1251, 1273, 1302, 1359, 1466, 1568, 1649, 1753, 1966, 2341, 1998, 1807, 1703, 1576, 1492, 1421, 1383, 1363, 1356, 1407, 1497, 1545, 1601, 1684, 1816, 1987, 2597, 2045, 1895, 1765, 1666, 1587, 1554, 1474, 1482, 1449, 1499, 1555, 1630, 1724, 1784, 1911, 2063, 2628, 2221, 1991, 1838, 1744, 1707, 1654, 1612, 1601, 1603, 1652, 1652, 1707, 1769, 1840, 1957, 2223, 2884, 2469, 2218, 2058, 1944, 1834, 1805, 1721, 1745, 1751, 1806, 1813, 1852, 1905, 1938, 2121, 2366]
| }
| }, {
| "name": "1600x1200_HZ_70",
| "resolution": "1600x1200",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3482, 3102, 2865, 2696, 2480, 2403, 2329, 2261, 2222, 2204, 2233, 2222, 2313, 2380, 2415, 2561, 2656, 3399, 2926, 2651, 2450, 2297, 2183, 2072, 1983, 1973, 1962, 1990, 2026, 2093, 2198, 2271, 2371, 2505, 3162, 2726, 2455, 2312, 2143, 1981, 1885, 1797, 1723, 1740, 1796, 1858, 1970, 2090, 2193, 2273, 2444, 3015, 2608, 2378, 2163, 1987, 1838, 1684, 1620, 1557, 1565, 1598, 1700, 1817, 1962, 2123, 2191, 2400, 2889, 2531, 2283, 2030, 1843, 1688, 1546, 1452, 1409, 1420, 1452, 1563, 1691, 1841, 1988, 2141, 2357, 2863, 2417, 2160, 1942, 1725, 1581, 1424, 1318, 1277, 1286, 1330, 1439, 1578, 1751, 1940, 2091, 2232, 2751, 2346, 2097, 1854, 1647, 1448, 1333, 1208, 1167, 1173, 1244, 1353, 1507, 1685, 1857, 2003, 2200, 2738, 2306, 2053, 1802, 1592, 1410, 1261, 1137, 1077, 1088, 1181, 1302, 1449, 1630, 1821, 1999, 2191, 2643, 2291, 2019, 1803, 1588, 1381, 1240, 1113, 1024, 1041, 1124, 1264, 1440, 1611, 1807, 2001, 2196, 2644, 2311, 2027, 1815, 1593, 1412, 1240, 1126, 1036, 1052, 1157, 1290, 1443, 1626, 1827, 1980, 2142, 2695, 2333, 2075, 1833, 1649, 1449, 1292, 1184, 1106, 1128, 1212, 1345, 1491, 1645, 1825, 2013, 2179, 2729, 2365, 2164, 1918, 1736, 1528, 1385, 1283, 1233, 1221, 1291, 1412, 1559, 1732, 1907, 2039, 2200, 2761, 2461, 2242, 2023, 1816, 1629, 1505, 1401, 1330, 1354, 1400, 1526, 1655, 1818, 1976, 2095, 2246, 2812, 2511, 2296, 2091, 1913, 1772, 1626, 1557, 1487, 1522, 1550, 1670, 1810, 1917, 2044, 2159, 2310, 2987, 2599, 2374, 2234, 2063, 1915, 1803, 1739, 1671, 1673, 1738, 1791, 1923, 2022, 2136, 2212, 2394, 3018, 2647, 2468, 2333, 2200, 2060, 1957, 1872, 1854, 1845, 1881, 1946, 2028, 2128, 2230, 2309, 2452, 3048, 2855, 2661, 2494, 2354, 2298, 2194, 2127, 2059, 2046, 2101, 2162, 2191, 2249, 2301, 2372, 2511]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2638, 2384, 2143, 2028, 1913, 1865, 1808, 1791, 1745, 1757, 1748, 1777, 1793, 1827, 1847, 1976, 2111, 2498, 2174, 2003, 1856, 1769, 1709, 1651, 1628, 1605, 1601, 1613, 1643, 1661, 1700, 1782, 1842, 1981, 2373, 2053, 1901, 1729, 1654, 1599, 1530, 1491, 1473, 1478, 1477, 1529, 1584, 1615, 1691, 1765, 1896, 2258, 1945, 1802, 1642, 1581, 1488, 1426, 1390, 1366, 1385, 1382, 1447, 1498, 1569, 1659, 1728, 1814, 2161, 1879, 1722, 1599, 1503, 1399, 1335, 1299, 1266, 1266, 1312, 1371, 1433, 1516, 1564, 1658, 1812, 2115, 1827, 1663, 1540, 1425, 1332, 1266, 1195, 1198, 1187, 1218, 1289, 1369, 1444, 1529, 1623, 1726, 2072, 1774, 1623, 1494, 1398, 1271, 1205, 1136, 1107, 1127, 1158, 1229, 1319, 1412, 1514, 1611, 1730, 2043, 1744, 1593, 1474, 1347, 1248, 1155, 1089, 1050, 1052, 1120, 1203, 1288, 1382, 1489, 1589, 1721, 2027, 1762, 1604, 1477, 1342, 1245, 1152, 1066, 1029, 1024, 1092, 1188, 1276, 1383, 1491, 1578, 1704, 2019, 1761, 1611, 1482, 1354, 1230, 1145, 1077, 1025, 1024, 1096, 1190, 1283, 1380, 1480, 1583, 1696, 2043, 1756, 1634, 1488, 1385, 1280, 1190, 1121, 1080, 1097, 1133, 1231, 1320, 1416, 1513, 1590, 1738, 2068, 1779, 1672, 1542, 1434, 1341, 1254, 1181, 1158, 1175, 1209, 1265, 1373, 1451, 1520, 1610, 1761, 2158, 1869, 1694, 1588, 1487, 1393, 1331, 1266, 1249, 1252, 1297, 1340, 1425, 1493, 1592, 1672, 1771, 2143, 1900, 1746, 1651, 1561, 1484, 1409, 1359, 1341, 1351, 1375, 1431, 1510, 1555, 1645, 1710, 1793, 2225, 1985, 1837, 1723, 1653, 1564, 1508, 1472, 1464, 1466, 1474, 1531, 1575, 1631, 1698, 1747, 1848, 2313, 2049, 1889, 1788, 1719, 1688, 1613, 1596, 1550, 1558, 1580, 1619, 1674, 1694, 1751, 1788, 1931, 2423, 2181, 2028, 1891, 1843, 1806, 1755, 1703, 1706, 1724, 1710, 1736, 1780, 1815, 1828, 1912, 1992]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2703, 2406, 2202, 2053, 1959, 1897, 1811, 1793, 1764, 1782, 1772, 1829, 1832, 1881, 1908, 1984, 2127, 2575, 2237, 2073, 1896, 1790, 1733, 1664, 1639, 1606, 1615, 1608, 1635, 1708, 1776, 1815, 1875, 2023, 2446, 2133, 1952, 1810, 1703, 1631, 1571, 1521, 1493, 1492, 1513, 1549, 1601, 1687, 1734, 1793, 1964, 2345, 2005, 1840, 1689, 1619, 1523, 1458, 1402, 1376, 1384, 1414, 1464, 1519, 1618, 1670, 1747, 1877, 2278, 1968, 1794, 1646, 1533, 1442, 1377, 1318, 1283, 1297, 1315, 1381, 1456, 1549, 1621, 1723, 1849, 2187, 1889, 1746, 1607, 1462, 1362, 1283, 1227, 1187, 1208, 1235, 1315, 1395, 1495, 1601, 1682, 1813, 2137, 1873, 1682, 1556, 1412, 1316, 1238, 1157, 1122, 1124, 1179, 1242, 1362, 1451, 1551, 1640, 1807, 2088, 1830, 1678, 1522, 1407, 1285, 1179, 1111, 1069, 1058, 1118, 1203, 1321, 1436, 1523, 1632, 1774, 2106, 1820, 1667, 1517, 1401, 1270, 1181, 1093, 1024, 1033, 1105, 1196, 1317, 1415, 1539, 1625, 1770, 2092, 1797, 1658, 1523, 1391, 1279, 1174, 1101, 1043, 1044, 1114, 1216, 1318, 1399, 1520, 1621, 1742, 2136, 1798, 1664, 1541, 1412, 1322, 1202, 1135, 1087, 1105, 1150, 1243, 1327, 1437, 1547, 1636, 1740, 2129, 1852, 1674, 1571, 1441, 1346, 1251, 1183, 1169, 1174, 1210, 1282, 1381, 1485, 1557, 1663, 1767, 2143, 1865, 1736, 1610, 1508, 1409, 1334, 1277, 1248, 1259, 1289, 1360, 1418, 1517, 1597, 1692, 1767, 2198, 1898, 1764, 1663, 1564, 1478, 1412, 1352, 1338, 1339, 1384, 1427, 1505, 1558, 1656, 1708, 1806, 2260, 1977, 1836, 1723, 1629, 1559, 1508, 1467, 1450, 1440, 1454, 1516, 1562, 1639, 1696, 1763, 1854, 2351, 2052, 1899, 1792, 1712, 1655, 1598, 1581, 1534, 1548, 1568, 1576, 1631, 1675, 1740, 1800, 1917, 2382, 2168, 2003, 1869, 1801, 1774, 1752, 1699, 1712, 1672, 1692, 1719, 1745, 1770, 1836, 1860, 1999]
| },
| "lsc_samples_blue": {
| "uCoeff": [2638, 2274, 2097, 1950, 1869, 1809, 1766, 1732, 1704, 1704, 1698, 1720, 1764, 1751, 1834, 1961, 2079, 2549, 2060, 1944, 1807, 1742, 1664, 1645, 1569, 1587, 1582, 1578, 1602, 1654, 1645, 1718, 1773, 1974, 2281, 2031, 1841, 1724, 1659, 1577, 1524, 1501, 1453, 1467, 1491, 1523, 1550, 1613, 1653, 1738, 1919, 2217, 1913, 1760, 1666, 1613, 1508, 1456, 1407, 1358, 1379, 1400, 1465, 1490, 1551, 1626, 1709, 1840, 2106, 1863, 1709, 1638, 1517, 1454, 1358, 1316, 1292, 1285, 1356, 1387, 1436, 1540, 1590, 1649, 1836, 2095, 1818, 1682, 1582, 1476, 1381, 1308, 1244, 1231, 1209, 1253, 1318, 1391, 1472, 1546, 1640, 1763, 2008, 1723, 1621, 1505, 1435, 1354, 1232, 1172, 1127, 1148, 1180, 1274, 1356, 1453, 1512, 1605, 1773, 1988, 1720, 1594, 1485, 1387, 1295, 1198, 1146, 1067, 1071, 1125, 1221, 1323, 1431, 1520, 1583, 1742, 1952, 1726, 1627, 1482, 1391, 1274, 1182, 1119, 1024, 1029, 1123, 1216, 1307, 1428, 1522, 1581, 1737, 1993, 1717, 1611, 1498, 1392, 1288, 1207, 1113, 1038, 1036, 1108, 1235, 1313, 1403, 1484, 1568, 1727, 1980, 1744, 1596, 1506, 1405, 1305, 1234, 1145, 1086, 1113, 1144, 1253, 1350, 1416, 1496, 1587, 1693, 1969, 1758, 1643, 1535, 1440, 1357, 1286, 1217, 1180, 1157, 1226, 1280, 1398, 1434, 1530, 1617, 1761, 2045, 1749, 1653, 1593, 1479, 1410, 1353, 1308, 1244, 1265, 1290, 1340, 1431, 1510, 1562, 1624, 1759, 2033, 1812, 1686, 1620, 1524, 1458, 1398, 1366, 1348, 1340, 1385, 1462, 1496, 1531, 1582, 1665, 1762, 2202, 1832, 1745, 1661, 1593, 1535, 1513, 1444, 1452, 1420, 1462, 1506, 1561, 1626, 1653, 1726, 1802, 2191, 1946, 1805, 1707, 1647, 1629, 1591, 1559, 1551, 1551, 1590, 1580, 1615, 1649, 1683, 1743, 1896, 2326, 2103, 1959, 1866, 1797, 1721, 1708, 1640, 1664, 1667, 1709, 1703, 1720, 1742, 1740, 1843, 1963]
| }
| }, {
| "name": "1600x1200_TL84_100",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3521, 3022, 2674, 2388, 2208, 2077, 1965, 1962, 1895, 1936, 1949, 1966, 2041, 2122, 2264, 2367, 2632, 3316, 2705, 2398, 2169, 1972, 1839, 1775, 1717, 1697, 1706, 1713, 1763, 1847, 1930, 2067, 2248, 2464, 3064, 2571, 2247, 1970, 1824, 1697, 1633, 1543, 1522, 1531, 1547, 1591, 1706, 1820, 1947, 2089, 2353, 2799, 2373, 2068, 1828, 1703, 1586, 1472, 1410, 1391, 1401, 1434, 1515, 1589, 1706, 1863, 1941, 2253, 2675, 2225, 1979, 1734, 1586, 1445, 1364, 1318, 1277, 1283, 1333, 1388, 1481, 1606, 1741, 1936, 2151, 2561, 2132, 1868, 1659, 1491, 1368, 1264, 1217, 1188, 1197, 1228, 1312, 1403, 1530, 1694, 1833, 2066, 2517, 2037, 1779, 1576, 1418, 1303, 1209, 1144, 1107, 1117, 1175, 1254, 1362, 1472, 1621, 1785, 2008, 2392, 1993, 1754, 1533, 1396, 1254, 1153, 1097, 1060, 1057, 1124, 1208, 1315, 1439, 1570, 1747, 1977, 2418, 2006, 1732, 1533, 1371, 1246, 1143, 1061, 1024, 1040, 1091, 1197, 1317, 1440, 1593, 1732, 1915, 2396, 2027, 1746, 1533, 1388, 1266, 1167, 1080, 1031, 1042, 1115, 1187, 1309, 1422, 1569, 1740, 1935, 2454, 2001, 1765, 1593, 1441, 1308, 1209, 1134, 1084, 1095, 1150, 1223, 1357, 1455, 1636, 1756, 1964, 2532, 2089, 1823, 1631, 1484, 1350, 1259, 1197, 1155, 1160, 1225, 1296, 1385, 1513, 1657, 1819, 1995, 2556, 2199, 1898, 1721, 1573, 1421, 1368, 1271, 1250, 1258, 1304, 1376, 1458, 1573, 1743, 1884, 2077, 2686, 2267, 2002, 1829, 1665, 1544, 1445, 1375, 1344, 1359, 1407, 1473, 1580, 1667, 1806, 1933, 2159, 2882, 2400, 2140, 1936, 1765, 1659, 1588, 1501, 1483, 1495, 1517, 1584, 1689, 1761, 1887, 2015, 2274, 3035, 2493, 2242, 2071, 1903, 1783, 1683, 1629, 1622, 1619, 1652, 1713, 1811, 1899, 2007, 2130, 2346, 3184, 2686, 2390, 2249, 2126, 1954, 1878, 1824, 1775, 1806, 1859, 1879, 1939, 2059, 2153, 2242, 2484]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3107, 2623, 2338, 2112, 2002, 1843, 1817, 1795, 1758, 1743, 1742, 1770, 1820, 1904, 1968, 2088, 2381, 2789, 2380, 2051, 1879, 1751, 1685, 1611, 1584, 1579, 1560, 1559, 1596, 1651, 1714, 1814, 1910, 2166, 2588, 2164, 1915, 1729, 1627, 1564, 1486, 1461, 1432, 1437, 1451, 1486, 1553, 1636, 1734, 1830, 2065, 2448, 2044, 1794, 1649, 1520, 1453, 1382, 1369, 1351, 1355, 1362, 1419, 1472, 1551, 1644, 1736, 1985, 2318, 1890, 1708, 1568, 1464, 1358, 1301, 1268, 1249, 1263, 1275, 1331, 1392, 1480, 1576, 1674, 1880, 2252, 1841, 1623, 1498, 1392, 1298, 1241, 1199, 1180, 1174, 1206, 1271, 1334, 1404, 1541, 1642, 1828, 2164, 1800, 1604, 1457, 1353, 1249, 1202, 1134, 1108, 1115, 1154, 1229, 1284, 1379, 1479, 1600, 1827, 2097, 1770, 1567, 1436, 1305, 1220, 1149, 1083, 1046, 1064, 1102, 1188, 1269, 1353, 1463, 1587, 1811, 2096, 1757, 1568, 1425, 1316, 1221, 1134, 1074, 1024, 1028, 1087, 1173, 1260, 1339, 1459, 1577, 1761, 2103, 1754, 1577, 1437, 1316, 1231, 1135, 1070, 1038, 1049, 1101, 1179, 1268, 1365, 1466, 1575, 1800, 2121, 1771, 1596, 1454, 1328, 1245, 1171, 1114, 1069, 1079, 1126, 1195, 1295, 1364, 1493, 1588, 1795, 2179, 1829, 1625, 1499, 1397, 1298, 1236, 1165, 1154, 1156, 1188, 1254, 1333, 1421, 1524, 1615, 1810, 2232, 1894, 1684, 1559, 1452, 1381, 1302, 1252, 1221, 1228, 1269, 1305, 1389, 1479, 1581, 1698, 1837, 2301, 1926, 1770, 1615, 1539, 1441, 1393, 1327, 1327, 1316, 1358, 1383, 1470, 1530, 1609, 1724, 1919, 2454, 2063, 1858, 1714, 1649, 1531, 1480, 1456, 1431, 1427, 1431, 1493, 1543, 1639, 1704, 1817, 1971, 2594, 2210, 1976, 1836, 1722, 1619, 1572, 1554, 1533, 1534, 1557, 1596, 1652, 1695, 1795, 1890, 2094, 2739, 2386, 2133, 1982, 1892, 1775, 1750, 1717, 1652, 1698, 1702, 1729, 1785, 1795, 1918, 2053, 2213]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3175, 2664, 2429, 2126, 1964, 1914, 1822, 1773, 1765, 1753, 1745, 1796, 1844, 1909, 1989, 2154, 2391, 2791, 2399, 2109, 1921, 1759, 1694, 1623, 1600, 1594, 1578, 1590, 1634, 1703, 1768, 1883, 1950, 2212, 2691, 2210, 1951, 1798, 1662, 1581, 1495, 1492, 1462, 1461, 1471, 1490, 1579, 1655, 1737, 1843, 2065, 2478, 2066, 1845, 1676, 1561, 1460, 1398, 1363, 1362, 1366, 1371, 1430, 1504, 1563, 1659, 1785, 2013, 2408, 1964, 1763, 1598, 1493, 1395, 1335, 1294, 1258, 1260, 1291, 1340, 1419, 1496, 1574, 1725, 1912, 2261, 1876, 1690, 1539, 1401, 1323, 1242, 1201, 1177, 1180, 1225, 1263, 1357, 1435, 1544, 1664, 1869, 2222, 1821, 1639, 1480, 1367, 1266, 1199, 1141, 1099, 1113, 1149, 1229, 1310, 1399, 1493, 1606, 1830, 2160, 1807, 1618, 1452, 1357, 1254, 1152, 1092, 1051, 1068, 1098, 1191, 1276, 1381, 1497, 1580, 1798, 2123, 1756, 1608, 1454, 1332, 1231, 1147, 1069, 1029, 1032, 1095, 1170, 1273, 1382, 1485, 1582, 1767, 2128, 1780, 1582, 1441, 1339, 1225, 1143, 1091, 1024, 1042, 1102, 1185, 1270, 1375, 1480, 1581, 1774, 2133, 1806, 1600, 1448, 1362, 1249, 1188, 1122, 1073, 1094, 1132, 1208, 1299, 1386, 1490, 1613, 1794, 2191, 1843, 1640, 1505, 1378, 1311, 1230, 1171, 1154, 1146, 1191, 1250, 1352, 1419, 1513, 1634, 1800, 2199, 1870, 1683, 1545, 1442, 1366, 1298, 1246, 1228, 1240, 1252, 1312, 1385, 1468, 1574, 1674, 1853, 2353, 1932, 1773, 1621, 1516, 1437, 1377, 1328, 1311, 1300, 1341, 1383, 1451, 1515, 1624, 1731, 1898, 2450, 2029, 1849, 1698, 1618, 1502, 1467, 1430, 1418, 1416, 1427, 1487, 1533, 1590, 1692, 1771, 1943, 2557, 2153, 1940, 1808, 1696, 1592, 1558, 1532, 1511, 1502, 1526, 1557, 1616, 1691, 1769, 1860, 2035, 2859, 2366, 2092, 1939, 1858, 1788, 1738, 1681, 1694, 1657, 1663, 1726, 1747, 1812, 1850, 2033, 2242]
| },
| "lsc_samples_blue": {
| "uCoeff": [3002, 2451, 2199, 2019, 1875, 1712, 1723, 1681, 1638, 1648, 1645, 1666, 1744, 1780, 1873, 2022, 2302, 2661, 2195, 1967, 1785, 1647, 1583, 1537, 1496, 1460, 1490, 1503, 1511, 1590, 1671, 1689, 1819, 2181, 2577, 2046, 1849, 1666, 1574, 1493, 1462, 1406, 1372, 1388, 1418, 1428, 1520, 1557, 1637, 1725, 2046, 2369, 1924, 1721, 1589, 1501, 1414, 1356, 1334, 1274, 1305, 1325, 1369, 1419, 1497, 1587, 1718, 1922, 2313, 1821, 1646, 1515, 1418, 1328, 1256, 1245, 1236, 1239, 1236, 1309, 1355, 1434, 1541, 1645, 1864, 2166, 1755, 1598, 1449, 1369, 1294, 1211, 1168, 1157, 1158, 1192, 1243, 1308, 1396, 1493, 1600, 1790, 2047, 1740, 1546, 1432, 1323, 1241, 1168, 1128, 1084, 1122, 1143, 1207, 1298, 1369, 1439, 1565, 1765, 2013, 1701, 1555, 1394, 1293, 1212, 1146, 1078, 1040, 1055, 1096, 1169, 1250, 1334, 1444, 1556, 1725, 2042, 1661, 1526, 1387, 1291, 1203, 1132, 1077, 1026, 1024, 1095, 1159, 1252, 1324, 1440, 1525, 1747, 2002, 1673, 1518, 1380, 1308, 1196, 1141, 1065, 1027, 1034, 1073, 1189, 1242, 1337, 1416, 1520, 1723, 1989, 1684, 1538, 1424, 1313, 1226, 1163, 1107, 1069, 1080, 1115, 1182, 1290, 1331, 1458, 1560, 1762, 2035, 1710, 1576, 1466, 1341, 1271, 1197, 1139, 1126, 1145, 1182, 1233, 1290, 1383, 1466, 1556, 1770, 2124, 1743, 1568, 1486, 1408, 1327, 1262, 1224, 1198, 1210, 1224, 1289, 1353, 1422, 1499, 1607, 1746, 2178, 1809, 1664, 1553, 1471, 1379, 1333, 1313, 1280, 1287, 1306, 1351, 1401, 1462, 1549, 1663, 1882, 2318, 1898, 1751, 1651, 1540, 1472, 1413, 1404, 1364, 1366, 1404, 1407, 1478, 1554, 1615, 1722, 1901, 2421, 2033, 1825, 1713, 1626, 1548, 1500, 1474, 1481, 1468, 1518, 1505, 1544, 1637, 1692, 1775, 2044, 2711, 2221, 2037, 1859, 1769, 1735, 1678, 1634, 1627, 1623, 1604, 1668, 1731, 1755, 1798, 1919, 2182]
| }
| }, {
| "name": "1600x1200_TL84_70",
| "resolution": "1600x1200",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2772, 2516, 2317, 2135, 2019, 1930, 1848, 1854, 1797, 1831, 1834, 1835, 1879, 1918, 1996, 2027, 2150, 2692, 2319, 2133, 1984, 1844, 1746, 1700, 1655, 1638, 1645, 1645, 1679, 1736, 1784, 1866, 1967, 2072, 2552, 2248, 2037, 1838, 1733, 1635, 1586, 1508, 1490, 1497, 1507, 1539, 1629, 1709, 1788, 1867, 2019, 2384, 2115, 1907, 1730, 1639, 1545, 1446, 1391, 1374, 1383, 1410, 1479, 1536, 1623, 1734, 1766, 1966, 2313, 2013, 1846, 1658, 1541, 1421, 1350, 1308, 1270, 1275, 1320, 1367, 1445, 1544, 1641, 1775, 1904, 2241, 1949, 1760, 1599, 1460, 1352, 1257, 1213, 1185, 1194, 1222, 1299, 1378, 1482, 1609, 1699, 1849, 2218, 1878, 1689, 1528, 1395, 1293, 1205, 1143, 1106, 1116, 1172, 1246, 1342, 1433, 1550, 1665, 1811, 2125, 1845, 1671, 1492, 1376, 1247, 1151, 1097, 1060, 1057, 1123, 1202, 1300, 1405, 1508, 1637, 1791, 2148, 1858, 1652, 1493, 1353, 1240, 1141, 1061, 1024, 1040, 1090, 1192, 1302, 1407, 1529, 1625, 1742, 2128, 1874, 1664, 1492, 1369, 1259, 1165, 1080, 1031, 1042, 1114, 1182, 1294, 1390, 1507, 1631, 1757, 2168, 1847, 1677, 1544, 1417, 1298, 1205, 1133, 1084, 1094, 1147, 1216, 1338, 1418, 1563, 1641, 1776, 2218, 1913, 1721, 1574, 1453, 1335, 1252, 1194, 1153, 1157, 1219, 1284, 1361, 1467, 1576, 1687, 1793, 2220, 1991, 1776, 1647, 1529, 1398, 1354, 1263, 1243, 1250, 1292, 1356, 1424, 1514, 1643, 1732, 1846, 2298, 2029, 1851, 1731, 1604, 1506, 1421, 1358, 1330, 1343, 1385, 1440, 1527, 1589, 1686, 1759, 1894, 2415, 2113, 1948, 1808, 1681, 1600, 1545, 1469, 1453, 1463, 1479, 1532, 1614, 1658, 1739, 1808, 1960, 2487, 2156, 2007, 1902, 1784, 1696, 1618, 1574, 1570, 1565, 1590, 1634, 1705, 1758, 1818, 1876, 1986, 2536, 2265, 2094, 2022, 1950, 1825, 1772, 1732, 1690, 1716, 1755, 1760, 1793, 1867, 1909, 1933, 2046]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2482, 2218, 2054, 1910, 1846, 1729, 1718, 1706, 1675, 1660, 1653, 1666, 1693, 1741, 1764, 1819, 1974, 2308, 2069, 1853, 1741, 1653, 1609, 1553, 1534, 1531, 1512, 1506, 1531, 1566, 1603, 1662, 1707, 1855, 2195, 1926, 1762, 1630, 1559, 1514, 1450, 1431, 1406, 1409, 1418, 1443, 1493, 1550, 1612, 1662, 1804, 2115, 1849, 1675, 1573, 1473, 1422, 1361, 1352, 1336, 1339, 1342, 1390, 1430, 1487, 1549, 1600, 1761, 2034, 1737, 1613, 1510, 1429, 1339, 1289, 1260, 1242, 1255, 1264, 1313, 1363, 1431, 1499, 1559, 1692, 1996, 1706, 1547, 1453, 1367, 1286, 1235, 1196, 1177, 1171, 1201, 1260, 1313, 1368, 1475, 1540, 1661, 1936, 1678, 1535, 1420, 1334, 1241, 1198, 1133, 1107, 1114, 1151, 1222, 1269, 1348, 1425, 1509, 1666, 1887, 1656, 1505, 1403, 1290, 1214, 1147, 1083, 1046, 1064, 1101, 1183, 1256, 1326, 1413, 1501, 1657, 1888, 1646, 1507, 1393, 1301, 1215, 1133, 1074, 1024, 1028, 1086, 1169, 1248, 1314, 1410, 1494, 1618, 1892, 1643, 1514, 1404, 1301, 1225, 1133, 1070, 1038, 1049, 1100, 1174, 1255, 1337, 1416, 1491, 1648, 1901, 1653, 1528, 1417, 1310, 1237, 1168, 1113, 1069, 1078, 1124, 1189, 1279, 1335, 1437, 1499, 1641, 1939, 1696, 1548, 1454, 1372, 1286, 1230, 1162, 1152, 1153, 1183, 1244, 1312, 1383, 1460, 1517, 1646, 1967, 1740, 1592, 1502, 1418, 1360, 1290, 1245, 1215, 1221, 1259, 1289, 1360, 1431, 1503, 1579, 1659, 2003, 1754, 1655, 1543, 1490, 1410, 1372, 1312, 1313, 1302, 1339, 1357, 1428, 1468, 1519, 1590, 1710, 2095, 1846, 1715, 1617, 1578, 1484, 1445, 1427, 1405, 1400, 1400, 1450, 1484, 1553, 1587, 1651, 1733, 2166, 1938, 1793, 1705, 1628, 1551, 1518, 1506, 1489, 1488, 1504, 1531, 1567, 1587, 1646, 1691, 1803, 2225, 2041, 1893, 1804, 1754, 1670, 1660, 1637, 1581, 1620, 1618, 1631, 1664, 1652, 1724, 1792, 1856]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2530, 2249, 2125, 1922, 1814, 1790, 1723, 1686, 1682, 1669, 1655, 1689, 1713, 1745, 1780, 1868, 1981, 2310, 2084, 1900, 1776, 1660, 1617, 1564, 1548, 1544, 1528, 1534, 1564, 1611, 1648, 1718, 1738, 1888, 2272, 1962, 1792, 1690, 1590, 1530, 1459, 1460, 1434, 1431, 1437, 1447, 1516, 1567, 1615, 1672, 1804, 2138, 1867, 1719, 1597, 1510, 1428, 1376, 1347, 1347, 1349, 1351, 1400, 1459, 1497, 1561, 1639, 1782, 2104, 1798, 1660, 1537, 1456, 1374, 1322, 1285, 1251, 1252, 1280, 1322, 1388, 1446, 1497, 1601, 1717, 2003, 1735, 1605, 1490, 1376, 1309, 1236, 1198, 1174, 1177, 1219, 1252, 1335, 1396, 1478, 1558, 1693, 1982, 1696, 1566, 1441, 1347, 1257, 1195, 1140, 1098, 1112, 1146, 1222, 1293, 1367, 1437, 1514, 1669, 1938, 1688, 1550, 1417, 1339, 1247, 1150, 1092, 1051, 1068, 1097, 1186, 1263, 1352, 1443, 1495, 1647, 1910, 1646, 1542, 1420, 1316, 1225, 1145, 1069, 1029, 1032, 1094, 1166, 1260, 1354, 1433, 1498, 1623, 1912, 1665, 1518, 1407, 1322, 1219, 1141, 1091, 1024, 1042, 1101, 1180, 1257, 1347, 1428, 1496, 1627, 1911, 1683, 1531, 1411, 1342, 1241, 1185, 1121, 1073, 1093, 1130, 1201, 1283, 1355, 1434, 1520, 1640, 1948, 1707, 1561, 1459, 1354, 1298, 1224, 1168, 1152, 1144, 1186, 1240, 1330, 1382, 1451, 1533, 1638, 1941, 1720, 1591, 1489, 1409, 1346, 1287, 1239, 1222, 1233, 1242, 1295, 1356, 1421, 1497, 1559, 1671, 2043, 1758, 1658, 1548, 1469, 1407, 1357, 1313, 1298, 1287, 1323, 1357, 1411, 1455, 1532, 1596, 1694, 2092, 1819, 1707, 1604, 1551, 1458, 1433, 1403, 1393, 1389, 1396, 1444, 1475, 1511, 1577, 1615, 1712, 2140, 1894, 1764, 1682, 1605, 1527, 1505, 1486, 1469, 1459, 1476, 1496, 1536, 1583, 1625, 1668, 1760, 2309, 2026, 1861, 1769, 1725, 1682, 1649, 1605, 1619, 1584, 1583, 1628, 1632, 1666, 1671, 1777, 1877]
| },
| "lsc_samples_blue": {
| "uCoeff": [2409, 2090, 1945, 1835, 1739, 1616, 1636, 1605, 1569, 1576, 1568, 1577, 1629, 1640, 1689, 1769, 1919, 2215, 1926, 1785, 1662, 1563, 1519, 1486, 1453, 1422, 1448, 1455, 1455, 1514, 1567, 1561, 1637, 1866, 2187, 1833, 1707, 1576, 1512, 1450, 1428, 1380, 1350, 1363, 1388, 1391, 1464, 1482, 1532, 1579, 1789, 2055, 1752, 1614, 1520, 1456, 1385, 1337, 1319, 1263, 1291, 1308, 1344, 1382, 1439, 1500, 1585, 1712, 2030, 1680, 1559, 1463, 1387, 1310, 1246, 1238, 1230, 1232, 1227, 1293, 1329, 1390, 1469, 1535, 1680, 1928, 1634, 1525, 1409, 1346, 1282, 1206, 1165, 1155, 1155, 1187, 1233, 1289, 1361, 1433, 1505, 1631, 1842, 1627, 1484, 1397, 1306, 1233, 1165, 1127, 1084, 1121, 1141, 1200, 1282, 1339, 1390, 1480, 1617, 1820, 1598, 1494, 1364, 1279, 1206, 1144, 1078, 1040, 1055, 1095, 1165, 1238, 1309, 1396, 1475, 1588, 1845, 1565, 1469, 1358, 1277, 1198, 1131, 1077, 1026, 1024, 1094, 1155, 1240, 1300, 1393, 1449, 1607, 1811, 1574, 1462, 1351, 1293, 1191, 1139, 1065, 1027, 1034, 1072, 1184, 1230, 1312, 1371, 1444, 1586, 1796, 1580, 1477, 1390, 1296, 1219, 1160, 1106, 1069, 1079, 1113, 1176, 1274, 1305, 1406, 1476, 1614, 1824, 1596, 1506, 1424, 1320, 1260, 1192, 1137, 1124, 1143, 1177, 1224, 1272, 1349, 1410, 1468, 1615, 1883, 1616, 1492, 1437, 1378, 1310, 1252, 1218, 1193, 1204, 1216, 1274, 1327, 1380, 1433, 1504, 1588, 1908, 1659, 1565, 1489, 1429, 1353, 1315, 1299, 1268, 1274, 1290, 1327, 1365, 1409, 1468, 1541, 1682, 1993, 1716, 1626, 1563, 1482, 1431, 1383, 1378, 1342, 1343, 1375, 1372, 1427, 1480, 1513, 1576, 1681, 2041, 1802, 1671, 1602, 1545, 1488, 1453, 1433, 1441, 1428, 1469, 1450, 1474, 1538, 1563, 1603, 1766, 2205, 1918, 1818, 1704, 1650, 1636, 1597, 1564, 1559, 1554, 1532, 1578, 1618, 1620, 1630, 1692, 1835]
| }
| }, {
| "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": [1.0802, 2.1327],
| "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.4365, 1.916],
| "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.7105, 1.5376],
| "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.6715, 1.3162],
| "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.797, 1.2114],
| "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.9025, 2.3295],
| "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.3255, 1.9291],
| "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.407, -0.3276, -0.0794, -0.5266, 1.9089, -0.3824, -0.1566, -1.3275, 2.4841],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.1252, -0.0546, -0.0706, -0.2683, 1.6204, -0.3521, -0.0051, -0.6084, 1.6135],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.027, -0.9301, -0.0969, -0.4539, 1.7831, -0.3292, -0.0187, -0.6605, 1.6792],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.4185, -0.3949, -0.0236, -0.2207, 1.4823, -0.2615, 0.12, -0.3992, 1.2792],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.0042, -0.8796, -0.1246, -0.396, 1.7259, -0.3299, 0.05, -0.6274, 1.5774],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.4607, -0.3908, -0.0699, -0.2015, 1.4633, -0.2617, 0.22, -0.4382, 1.2182],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.7233, -0.6323, -0.091, -0.3513, 1.7292, -0.378, 0.06, -0.509, 1.449],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.2203, -0.1621, -0.0582, -0.2078, 1.4904, -0.2826, 0.23, -0.3201, 1.1001],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.767, -0.6512, -0.1158, -0.3206, 1.6945, -0.3739, 0.032, -0.4835, 1.4515],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.2843, -0.2539, -0.1304, -0.1844, 1.4679, -0.2835, 0.19, -0.2909, 1.1009],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.2235, -0.0067, -0.2168, -0.4395, 1.5909, -0.1513, -0.5344, -1.4759, 3.0102],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.0345, 0.0653, -0.0999, -0.2803, 1.3249, -0.0446, -0.2765, -0.7162, 1.9927],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.7556, -0.6139, -0.1417, -0.425, 1.8084, -0.3834, -0.0276, -0.7132, 1.7408],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.279, -0.1048, -0.0743, -0.1997, 1.506, -0.3062, 0.1, -0.4772, 1.3772],
| "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": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1197, 1054, 922, 802, 603, 471, 415, 420, 453, 485, 501, 493, 460, 401, 322, 247]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [276, 252, 230, 210, 180, 159, 148, 145, 144, 145, 144, 140, 132, 122, 108, 96]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [546, 479, 417, 360, 264, 195, 162, 163, 180, 197, 207, 206, 193, 168, 134, 102]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [818, 710, 609, 516, 356, 239, 188, 204, 246, 283, 303, 302, 280, 236, 175, 115]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1134, 984, 843, 714, 490, 330, 264, 291, 351, 402, 430, 429, 397, 336, 249, 164]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1197, 1054, 922, 802, 603, 471, 415, 420, 453, 485, 501, 493, 460, 401, 322, 247]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.15
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.25
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.35
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.45
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.05
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.1
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.15
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.2
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.3
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.4
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.55
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.6
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "iso": 800,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 1600,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 3200,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 6400,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 12800,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 25600,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 51200,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 102400,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }, {
| "iso": 204800,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.4
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.9,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.8
| }, {
| "iso": 100,
| "filter_strength": 0.8,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.75
| }, {
| "iso": 200,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.7
| }, {
| "iso": 400,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.65
| }, {
| "iso": 800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.6
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.55
| }, {
| "iso": 3200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.5
| }, {
| "iso": 6400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 25600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 51200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 102400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 204800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v1": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Kernel_Coeff": {
| "kernel_5x5": [1, 0.8825, 0.7788, 0.6065, 0.3679]
| },
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 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": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 14,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.35,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 18,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.45,
| "hf_denoise_strength": 20,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 14,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.55,
| "hf_denoise_strength": 28,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 32,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 18,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 25,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 44,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 30,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 48,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 35,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 25,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.6,
| "hf_denoise_strength": 52,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
| "ynr_ci_l": 0.231174,
| "ynr_ci_h": 0.244561
| }, {
| "iso": 100,
| "sigma_curve": [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
| "ynr_ci_l": 0.243867,
| "ynr_ci_h": 0.248972
| }, {
| "iso": 200,
| "sigma_curve": [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
| "ynr_ci_l": 0.210067,
| "ynr_ci_h": 0.217358
| }, {
| "iso": 400,
| "sigma_curve": [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
| "ynr_ci_l": 0.209144,
| "ynr_ci_h": 0.209083
| }, {
| "iso": 800,
| "sigma_curve": [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
| "ynr_ci_l": 0.231174,
| "ynr_ci_h": 0.244561
| }, {
| "iso": 100,
| "sigma_curve": [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
| "ynr_ci_l": 0.243867,
| "ynr_ci_h": 0.248972
| }, {
| "iso": 200,
| "sigma_curve": [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
| "ynr_ci_l": 0.210067,
| "ynr_ci_h": 0.217358
| }, {
| "iso": 400,
| "sigma_curve": [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
| "ynr_ci_l": 0.209144,
| "ynr_ci_h": 0.209083
| }, {
| "iso": 800,
| "sigma_curve": [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.19692,
| "ynr_ci_h": 0.196693
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.2,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.85,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 1,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.5,
| "low_dist_adj": 7,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 90,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.35,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.05,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.45,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.35,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.5,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.45,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.25,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.15,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.1,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "sharp_v3": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.45,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.45,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.5,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.55,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.55,
| "bf_add": 9,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.6,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.65,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.4,
| "pbf_ratio": 1,
| "pbf_add": 18,
| "gaus_ratio": 0.7,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.7,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 0.75,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 0.75,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 0.8,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 0.85,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 0.85,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 0.9,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 33,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 36,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 36,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.45,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 6,
| "gaus_ratio": 0.55,
| "sharp_ratio": 9,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.9,
| "pbf_ratio": 0.55,
| "pbf_add": 8,
| "gaus_ratio": 0.6,
| "sharp_ratio": 8,
| "bf_gain": 0.9,
| "bf_ratio": 0.55,
| "bf_add": 8,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.55,
| "pbf_add": 10,
| "gaus_ratio": 0.65,
| "sharp_ratio": 7,
| "bf_gain": 1,
| "bf_ratio": 0.6,
| "bf_add": 10,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.1,
| "pbf_ratio": 0.6,
| "pbf_add": 12,
| "gaus_ratio": 0.7,
| "sharp_ratio": 6,
| "bf_gain": 1.1,
| "bf_ratio": 0.65,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.6,
| "pbf_add": 14,
| "gaus_ratio": 0.75,
| "sharp_ratio": 5,
| "bf_gain": 1.2,
| "bf_ratio": 0.7,
| "bf_add": 14,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.65,
| "pbf_add": 16,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.75,
| "bf_add": 16,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.4,
| "pbf_ratio": 0.7,
| "pbf_add": 18,
| "gaus_ratio": 0.85,
| "sharp_ratio": 3,
| "bf_gain": 1.4,
| "bf_ratio": 0.8,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.75,
| "pbf_add": 20,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.5,
| "bf_ratio": 0.85,
| "bf_add": 20,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.6,
| "pbf_ratio": 0.8,
| "pbf_add": 22,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.6,
| "bf_ratio": 0.9,
| "bf_add": 22,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.7,
| "pbf_ratio": 0.8,
| "pbf_add": 24,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.8,
| "pbf_ratio": 0.9,
| "pbf_add": 28,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 26,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| }
| }
| }],
| "sub_scene_len": 1
| }],
| "main_scene_len": 1,
| "uapi": [],
| "uapi_len": 0,
| "sys_static_cfg": {
| "algoSwitch": {
| "enable": 0,
| "enable_algos": [],
| "enable_algos_len": 0
| }
| }
| }
|
|