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": 1920,
| "height": 1080
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 128, 64, 0, 1, 64, 8192],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 128
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 0
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 2,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 0]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [2, 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": 1,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 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_MANUAL",
| "HistStatsMode": "CAM_HISTV2_MODE_Y",
| "RawStatsMode": "CAM_RAWSTATSV2_MODE_Y",
| "YRangeMode": "CAM_YRANGEV2_MODE_FULL",
| "AecGridWeight": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1
| },
| "HdrAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": [0.0005, 0.003, 0.003],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1]
| }
| },
| "AecSpeed": {
| "DampOver": 0.15,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.15,
| "DampBright2Dark": 0.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 2,
| "WhiteDelay": 2
| },
| "AecFrameRateMode": {
| "isFpsFix": 1,
| "FpsValue": 20
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.02859, 0.5972]
| },
| "AecWinScale": {
| "InRawWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| },
| "TmoRawWinScale": {
| "h_offs": 0.1,
| "v_offs": 0.1,
| "h_size": 0.9,
| "v_size": 0.9
| },
| "YuvWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| }
| }
| },
| "LinearAeCtrl": {
| "RawStatsEn": 1,
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.003,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.01, 0.02, 0.03, 0.33, 0.033],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 1, 1, 2, 16],
| "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.0264, 0.0528, 0.1584, 0.264, 0.3696],
| "ExpLevel_len": 6,
| "DySetpoint": [55, 48, 40, 38, 33, 30],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.0264, 0.0528, 0.1056, 0.1584, 0.264, 0.3696],
| "ExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
| "LowLightPdfTh_len": 6,
| "TargetLLLuma": [25, 22, 20, 18, 15, 12],
| "TargetLLLuma_len": 6
| }
| },
| "OverExpCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MaxWeight": 8,
| "HighLightTh": 150,
| "LowLightTh": 30,
| "OverExpSetPoint": {
| "OEpdf": [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
| "OEpdf_len": 6,
| "LowLightWeight": [1, 1, 1, 1, 1, 1],
| "LowLightWeight_len": 6,
| "HighLightWeight": [4, 3, 3, 3, 2, 2],
| "HighLightWeight_len": 6
| }
| }
| },
| "HdrAeCtrl": {
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "LumaDistTh": 10,
| "InitExp": {
| "InitTimeValue": [0.0005, 0.003, 0.003],
| "InitGainValue": [1, 1, 1],
| "InitIspDGainValue": [1, 1, 1],
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "Frm0TimeDot": [0, 0.004, 0.004, 0.004, 0.004, 0.004],
| "Frm0TimeDot_len": 6,
| "Frm0GainDot": [1, 1, 2, 4, 8, 16],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.04, 0.04, 0.04, 0.04, 0.04],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 2, 4, 8, 16],
| "Frm1GainDot_len": 6,
| "Frm1IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm1IspDGainDot_len": 6,
| "Frm2TimeDot": [0, 0.04, 0.04, 0.04, 0.04, 0.04],
| "Frm2TimeDot_len": 6,
| "Frm2GainDot": [1, 1, 2, 4, 8, 16],
| "Frm2GainDot_len": 6,
| "Frm2IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm2IspDGainDot_len": 6,
| "PIrisDot": [2, 2, 2, 1, 1, 1],
| "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.0064, 0.0192, 0.032, 0.064, 0.128],
| "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.032, 0.064, 0.128, 0.32, 0.448, 0.64],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0032, 0.0096, 0.016, 0.0256, 0.0384],
| "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": 1,
| "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.14801, 1, 1, 2.81786],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_8X8",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_FIXED",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [6],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [9],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [6],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [9],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.374629, 0.374777, 0.250595],
| "rotationMat": [-0.537778, 0.843087, -0.0957618, 0.843087, 0.537778, 0.53335, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0332031, 0.136719, 0.0136719, 35, -0.0878906, 0.00390625, 0.0644531, 137.438, 0.0410156, -0.0566406, 0.0546875, 110.25, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [244, 249, 228, 211]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1096, -985, 140, 65]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-40, 158, 121, 16]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-235, -40, 237, 80]
| }, {
| "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.5, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 1,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.14801, 1, 1, 2.81786],
| "uvRegion": {
| "u": [124.5, 53.5, 57.5, 125],
| "v": [128, 122, 97.5, 127]
| },
| "xyRegion": {
| "normal": [-1.34217, -0.73463, 0.0516533, -0.0456024],
| "big": [-1.34217, -0.738395, 0.0802502, -0.0941912]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.9875, 1.1875, 1.1875, 1.45, 1.7, 4],
| "lineVector": [10, 145.625, 109.375, 183.188, 93.0625, 111.188],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.81563, 1, 1, 2.56193],
| "uvRegion": {
| "u": [66.5, 73.5, 124, 123],
| "v": [80, 72, 125, 125.5]
| },
| "xyRegion": {
| "normal": [-0.733148, -0.436508, -0.0394265, -0.191421],
| "big": [-0.732405, -0.436852, -0.0200165, -0.206196]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.925, 1.1875, 1.3875, 1.45, 1.7, 4],
| "lineVector": [10, 141, 111, 189.25, 117.875, 100.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.72937, 1, 1, 1.83509],
| "uvRegion": {
| "u": [71, 98, 126, 124.5],
| "v": [75, 52, 124.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.433713, -0.139812, 0.0664284, -0.116592],
| "big": [-0.431716, -0.145802, 0.102651, -0.208579]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [1.1875, 1.4125, 1.575, 1.75, 2, 4],
| "lineVector": [10, 140.125, 110.438, 190.312, 124.562, 108.625],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.95722, 1, 1, 1.58526],
| "uvRegion": {
| "u": [87.5, 111.5, 127, 126],
| "v": [59.5, 43, 122, 124]
| },
| "xyRegion": {
| "normal": [-0.134621, 0.10018, 0.11409, -0.120405],
| "big": [-0.138215, 0.0969851, 0.199881, -0.213822]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [1.1875, 1.5, 1.5, 1.8125, 2, 4],
| "lineVector": [10, 138.5, 110.25, 191, 135.188, 109.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.12281, 1, 1, 1.45792],
| "uvRegion": {
| "u": [130, 127, 103, 126.5],
| "v": [120.5, 122.5, 48.5, 35]
| },
| "xyRegion": {
| "normal": [0.108333, 0.384496, 0.148497, -0.16616],
| "big": [0.102975, 0.387292, 0.230384, -0.219541]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [1.1875, 1.3125, 1.5, 1.75, 2, 4],
| "lineVector": [10, 137.25, 110.188, 190.938, 142.375, 111.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.941094, 1, 1, 3.40215],
| "uvRegion": {
| "u": [123.5, 50, 54, 124.5],
| "v": [130.5, 146.5, 120.5, 128]
| },
| "xyRegion": {
| "normal": [-1.72552, -1.33611, 0.0373548, -0.089716],
| "big": [-1.72944, -1.33738, 0.0773905, -0.135153]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [1.1875, 1.3125, 1.4125, 1.85, 2, 4],
| "lineVector": [10, 148.125, 108.562, 177.562, 79.9375, 115.312],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.6061, 1, 1, 2.37185],
| "uvRegion": {
| "u": [124, 57.5, 69, 124.5],
| "v": [126.5, 97, 76, 125.5]
| },
| "xyRegion": {
| "normal": [-0.732006, -0.432407, 0.0187668, -0.0623656],
| "big": [-0.736111, -0.431716, 0.0402145, -0.0861869]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [1.1875, 1.3875, 1.4125, 1.85, 2, 4],
| "lineVector": [10, 141.688, 111.25, 188.75, 114.188, 103.75],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.81563, 1, 1, 2.56193],
| "defaultDayGainHigh": [1.72937, 1, 1, 1.83509],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0, 0, 0, 0],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [0, 0, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.05,
| "dFMin": 0.7,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 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, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }],
| "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": [80],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.14801, 1, 1, 2.81786],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 4.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.031,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [80],
| "forBigType_len": 1,
| "forExtraType": [80],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 27.3769,
| "meanH": 31.8403
| }, {
| "index": 13,
| "meanC": 21.3606,
| "meanH": -77.7196
| }, {
| "index": 5,
| "meanC": 11.2284,
| "meanH": -64.1978
| }, {
| "index": 10,
| "meanC": 11.5086,
| "meanH": -32.8692
| }, {
| "index": 14,
| "meanC": 18.8272,
| "meanH": 149.723
| }, {
| "index": 16,
| "meanC": 28.3162,
| "meanH": 90.9335
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.14801,
| "BGain": 2.81786
| }, {
| "name": "TL84",
| "RGain": 1.72937,
| "BGain": 1.83509
| }, {
| "name": "D50",
| "RGain": 1.6061,
| "BGain": 2.37185
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.2099, 1, 1, 1.6302],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_segnum": "GAMMATYPE_LOG",
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1325, 1462, 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": [257, 258, 258.625, 258, 259, 260, 262, 265, 256, 256, 256, 256, 256],
| "R_Channel_len": 13,
| "Gr_Channel": [257, 258, 258.75, 258, 259, 260, 260, 263, 256, 256, 256, 256, 256],
| "Gr_Channel_len": 13,
| "Gb_Channel": [257, 258, 258.625, 258, 259, 260, 261, 266, 256, 256, 256, 256, 256],
| "Gb_Channel_len": 13,
| "B_Channel": [257, 258, 258.625, 258, 259, 259, 262, 265, 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.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_thr": [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
| "rb_line_mad_fac": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_mad_fac": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "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": [0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625],
| "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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "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": 1,
| "mode": "RK_AIQ_OP_MODE_AUTO",
| "force_gray": 1,
| "light_src": "LED",
| "auto_adjust_sens": 50,
| "auto_on2off_th": 3000,
| "auto_off2on_th": 100,
| "auto_sw_interval": 0,
| "manual_on": 0,
| "manual_strength": 100
| }
| },
| "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": "1920x1080",
| "lsc_sect_size_x": [120, 120, 120, 120, 120, 120, 120, 120],
| "lsc_sect_size_y": [67, 68, 67, 68, 67, 68, 67, 68]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.1059, 2.8635],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.702, 2.5913],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.6185, 2.0178],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.9127, 1.753],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.9914, 1.6417],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.8897, 3.3737],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.5429, 2.5517],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [90, 90, 80, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 10, 31, 64],
| "gains_len": 4,
| "vig": [90, 60, 25, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "1920x1080_A_100",
| "resolution": "1920x1080",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3022, 2790, 2450, 2175, 1886, 1740, 1584, 1510, 1453, 1468, 1530, 1637, 1772, 1989, 2242, 2557, 2872, 2960, 2687, 2360, 2052, 1804, 1623, 1483, 1401, 1362, 1378, 1432, 1546, 1684, 1874, 2143, 2450, 2763, 2858, 2603, 2234, 1949, 1694, 1526, 1384, 1307, 1272, 1281, 1337, 1439, 1592, 1804, 2052, 2351, 2712, 2887, 2491, 2143, 1844, 1623, 1428, 1307, 1229, 1206, 1209, 1256, 1362, 1498, 1694, 1956, 2277, 2662, 2831, 2409, 2060, 1788, 1542, 1362, 1235, 1158, 1129, 1138, 1209, 1295, 1439, 1637, 1874, 2208, 2580, 2687, 2341, 2010, 1709, 1475, 1307, 1189, 1112, 1081, 1093, 1143, 1248, 1391, 1597, 1810, 2135, 2524, 2662, 2295, 1943, 1675, 1442, 1264, 1149, 1081, 1052, 1067, 1108, 1214, 1355, 1542, 1799, 2082, 2450, 2638, 2251, 1911, 1614, 1408, 1232, 1123, 1052, 1026, 1046, 1093, 1182, 1327, 1518, 1772, 2052, 2450, 2615, 2217, 1892, 1614, 1394, 1235, 1112, 1044, 1024, 1033, 1075, 1180, 1315, 1510, 1772, 2074, 2439, 2638, 2217, 1874, 1614, 1384, 1229, 1118, 1046, 1024, 1028, 1079, 1172, 1309, 1518, 1772, 2074, 2450, 2603, 2242, 1892, 1632, 1401, 1240, 1127, 1059, 1035, 1052, 1091, 1199, 1337, 1526, 1782, 2089, 2439, 2662, 2277, 1917, 1660, 1432, 1272, 1152, 1087, 1061, 1071, 1125, 1217, 1358, 1550, 1810, 2135, 2481, 2700, 2332, 1963, 1709, 1472, 1315, 1201, 1131, 1099, 1114, 1165, 1261, 1404, 1610, 1880, 2200, 2535, 2712, 2380, 2031, 1772, 1534, 1362, 1242, 1172, 1145, 1163, 1211, 1315, 1461, 1651, 1924, 2242, 2591, 2803, 2439, 2112, 1839, 1606, 1428, 1309, 1240, 1206, 1219, 1275, 1384, 1526, 1745, 1969, 2304, 2675, 2872, 2546, 2200, 1899, 1689, 1522, 1391, 1321, 1289, 1301, 1355, 1461, 1614, 1821, 2067, 2399, 2737, 2887, 2638, 2277, 2003, 1799, 1614, 1487, 1418, 1381, 1394, 1453, 1546, 1709, 1911, 2167, 2502, 2790]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2704, 2484, 2188, 2010, 1772, 1624, 1499, 1439, 1414, 1439, 1465, 1550, 1679, 1817, 2017, 2274, 2465, 2595, 2348, 2096, 1859, 1662, 1510, 1404, 1337, 1313, 1329, 1371, 1455, 1557, 1711, 1926, 2145, 2437, 2504, 2274, 2010, 1758, 1569, 1429, 1332, 1259, 1237, 1251, 1294, 1371, 1475, 1633, 1838, 2069, 2331, 2456, 2211, 1903, 1671, 1496, 1346, 1256, 1200, 1165, 1184, 1218, 1302, 1417, 1561, 1753, 2004, 2250, 2494, 2102, 1843, 1620, 1423, 1291, 1191, 1138, 1115, 1132, 1182, 1249, 1354, 1506, 1702, 1967, 2242, 2366, 2055, 1782, 1561, 1380, 1249, 1155, 1101, 1070, 1092, 1130, 1209, 1326, 1472, 1658, 1909, 2203, 2340, 2029, 1748, 1524, 1348, 1220, 1120, 1066, 1047, 1058, 1103, 1182, 1289, 1439, 1624, 1892, 2181, 2314, 1979, 1715, 1496, 1326, 1189, 1103, 1049, 1032, 1044, 1081, 1153, 1269, 1423, 1620, 1870, 2159, 2290, 1949, 1693, 1485, 1318, 1189, 1094, 1046, 1024, 1027, 1070, 1144, 1261, 1423, 1616, 1854, 2181, 2250, 1961, 1693, 1479, 1313, 1176, 1097, 1044, 1024, 1034, 1075, 1153, 1266, 1414, 1608, 1854, 2145, 2331, 1986, 1697, 1496, 1323, 1198, 1116, 1059, 1034, 1047, 1086, 1165, 1276, 1436, 1633, 1875, 2203, 2298, 1998, 1725, 1524, 1340, 1223, 1124, 1081, 1056, 1070, 1107, 1189, 1294, 1458, 1654, 1909, 2203, 2374, 2036, 1772, 1550, 1374, 1254, 1165, 1113, 1092, 1097, 1146, 1211, 1337, 1506, 1706, 1955, 2250, 2437, 2096, 1817, 1604, 1423, 1299, 1216, 1153, 1130, 1144, 1189, 1269, 1371, 1542, 1739, 2010, 2282, 2456, 2159, 1886, 1671, 1496, 1354, 1261, 1216, 1193, 1195, 1244, 1313, 1449, 1608, 1797, 2055, 2306, 2484, 2226, 1961, 1739, 1561, 1423, 1326, 1289, 1254, 1264, 1318, 1392, 1506, 1679, 1892, 2166, 2392, 2513, 2323, 2036, 1828, 1628, 1510, 1429, 1357, 1332, 1346, 1380, 1479, 1596, 1748, 1961, 2257, 2465]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2816, 2529, 2195, 1992, 1736, 1594, 1455, 1398, 1357, 1377, 1413, 1516, 1626, 1808, 2030, 2312, 2559, 2721, 2444, 2151, 1871, 1660, 1509, 1395, 1316, 1289, 1305, 1343, 1442, 1552, 1717, 1962, 2233, 2472, 2632, 2363, 2049, 1778, 1571, 1426, 1316, 1245, 1228, 1228, 1282, 1366, 1485, 1639, 1871, 2151, 2472, 2611, 2280, 1992, 1708, 1505, 1354, 1252, 1196, 1166, 1179, 1221, 1305, 1432, 1598, 1824, 2102, 2416, 2549, 2225, 1904, 1656, 1448, 1300, 1201, 1129, 1112, 1133, 1175, 1254, 1380, 1560, 1778, 2055, 2372, 2559, 2165, 1871, 1610, 1423, 1252, 1160, 1097, 1077, 1088, 1139, 1217, 1337, 1519, 1736, 2004, 2329, 2510, 2130, 1813, 1571, 1377, 1228, 1133, 1077, 1047, 1057, 1104, 1190, 1313, 1488, 1708, 1968, 2312, 2444, 2095, 1793, 1552, 1363, 1212, 1110, 1051, 1034, 1046, 1086, 1170, 1294, 1468, 1686, 1968, 2272, 2444, 2089, 1778, 1530, 1343, 1205, 1110, 1046, 1024, 1039, 1079, 1170, 1284, 1461, 1690, 1956, 2288, 2472, 2089, 1774, 1530, 1343, 1208, 1104, 1047, 1032, 1037, 1080, 1170, 1287, 1468, 1690, 1980, 2272, 2416, 2075, 1803, 1534, 1363, 1219, 1128, 1066, 1040, 1046, 1097, 1183, 1294, 1485, 1717, 1980, 2321, 2491, 2095, 1808, 1567, 1383, 1238, 1133, 1077, 1056, 1071, 1116, 1199, 1335, 1505, 1736, 2004, 2338, 2481, 2151, 1855, 1606, 1413, 1274, 1170, 1112, 1093, 1104, 1150, 1238, 1363, 1545, 1774, 2049, 2363, 2559, 2195, 1910, 1647, 1435, 1310, 1214, 1158, 1133, 1152, 1196, 1274, 1407, 1587, 1808, 2095, 2416, 2570, 2240, 1938, 1708, 1516, 1368, 1267, 1210, 1188, 1190, 1249, 1326, 1464, 1643, 1855, 2144, 2425, 2580, 2312, 2036, 1764, 1560, 1426, 1321, 1267, 1245, 1257, 1300, 1389, 1527, 1708, 1944, 2225, 2539, 2654, 2407, 2109, 1839, 1656, 1512, 1407, 1332, 1308, 1321, 1374, 1455, 1614, 1778, 2011, 2296, 2500]
| },
| "lsc_samples_blue": {
| "uCoeff": [2279, 2108, 1864, 1646, 1503, 1391, 1326, 1259, 1238, 1225, 1288, 1350, 1445, 1544, 1695, 1911, 2212, 2190, 2050, 1789, 1610, 1454, 1374, 1288, 1238, 1225, 1238, 1259, 1341, 1400, 1513, 1682, 1879, 2128, 2190, 1944, 1721, 1555, 1418, 1318, 1238, 1199, 1186, 1205, 1225, 1280, 1383, 1473, 1646, 1818, 2050, 2108, 1895, 1682, 1503, 1374, 1259, 1199, 1150, 1138, 1150, 1180, 1238, 1318, 1426, 1599, 1734, 1978, 2050, 1848, 1646, 1483, 1341, 1238, 1161, 1115, 1094, 1099, 1144, 1199, 1303, 1409, 1544, 1721, 1944, 2014, 1818, 1588, 1436, 1310, 1199, 1132, 1094, 1058, 1078, 1110, 1174, 1259, 1391, 1513, 1695, 1895, 1978, 1804, 1576, 1436, 1280, 1186, 1110, 1063, 1048, 1058, 1088, 1156, 1245, 1358, 1503, 1670, 1879, 1978, 1775, 1576, 1400, 1280, 1186, 1094, 1058, 1033, 1048, 1078, 1144, 1225, 1334, 1483, 1646, 1879, 1944, 1775, 1576, 1418, 1273, 1180, 1099, 1058, 1033, 1033, 1078, 1132, 1238, 1341, 1483, 1670, 1928, 1996, 1789, 1576, 1418, 1280, 1174, 1094, 1053, 1024, 1048, 1078, 1138, 1218, 1358, 1483, 1682, 1895, 1961, 1804, 1576, 1426, 1303, 1192, 1115, 1063, 1048, 1048, 1094, 1161, 1245, 1358, 1513, 1695, 1911, 2050, 1789, 1599, 1454, 1318, 1199, 1127, 1088, 1058, 1063, 1104, 1161, 1273, 1400, 1544, 1721, 1895, 2069, 1848, 1634, 1473, 1341, 1245, 1161, 1110, 1088, 1094, 1127, 1180, 1303, 1426, 1565, 1762, 1996, 2108, 1879, 1708, 1523, 1374, 1259, 1186, 1144, 1127, 1138, 1167, 1238, 1326, 1445, 1588, 1762, 1996, 2148, 1961, 1721, 1555, 1426, 1318, 1231, 1180, 1167, 1186, 1199, 1266, 1358, 1483, 1646, 1848, 2069, 2233, 2014, 1789, 1610, 1445, 1350, 1303, 1238, 1218, 1205, 1259, 1310, 1400, 1513, 1682, 1911, 2169, 2350, 2108, 1848, 1708, 1544, 1409, 1350, 1266, 1266, 1273, 1326, 1383, 1454, 1576, 1748, 1996, 2233]
| }
| }, {
| "name": "1920x1080_A_70",
| "resolution": "1920x1080",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2423, 2357, 2162, 1986, 1771, 1662, 1533, 1471, 1420, 1433, 1484, 1570, 1672, 1830, 1996, 2181, 2318, 2416, 2306, 2112, 1900, 1713, 1568, 1449, 1377, 1342, 1356, 1402, 1498, 1607, 1748, 1935, 2123, 2275, 2370, 2263, 2026, 1825, 1626, 1487, 1363, 1294, 1261, 1269, 1319, 1407, 1534, 1700, 1875, 2065, 2263, 2413, 2192, 1964, 1744, 1569, 1402, 1294, 1222, 1200, 1203, 1245, 1340, 1456, 1612, 1807, 2021, 2245, 2389, 2140, 1905, 1703, 1501, 1344, 1228, 1155, 1127, 1135, 1203, 1281, 1406, 1569, 1746, 1978, 2199, 2292, 2095, 1870, 1638, 1443, 1294, 1185, 1111, 1080, 1092, 1140, 1238, 1365, 1538, 1698, 1927, 2168, 2282, 2064, 1817, 1611, 1415, 1255, 1146, 1080, 1052, 1067, 1106, 1207, 1333, 1491, 1693, 1890, 2119, 2269, 2032, 1792, 1558, 1384, 1225, 1121, 1052, 1026, 1046, 1092, 1176, 1308, 1471, 1672, 1869, 2124, 2253, 2006, 1777, 1559, 1372, 1228, 1111, 1044, 1024, 1033, 1074, 1175, 1297, 1465, 1673, 1888, 2117, 2269, 2004, 1760, 1558, 1362, 1222, 1116, 1046, 1024, 1028, 1078, 1167, 1291, 1471, 1672, 1887, 2124, 2237, 2021, 1773, 1572, 1376, 1232, 1125, 1059, 1035, 1052, 1090, 1192, 1317, 1477, 1678, 1896, 2111, 2273, 2043, 1790, 1594, 1403, 1261, 1149, 1086, 1061, 1070, 1122, 1208, 1334, 1495, 1698, 1927, 2135, 2290, 2078, 1822, 1633, 1436, 1299, 1195, 1129, 1098, 1112, 1160, 1248, 1374, 1545, 1752, 1971, 2165, 2283, 2103, 1870, 1681, 1488, 1340, 1232, 1167, 1141, 1158, 1203, 1296, 1422, 1575, 1780, 1994, 2193, 2329, 2134, 1925, 1730, 1547, 1397, 1292, 1230, 1198, 1210, 1260, 1356, 1475, 1648, 1807, 2028, 2235, 2353, 2197, 1982, 1769, 1611, 1476, 1364, 1302, 1273, 1284, 1331, 1421, 1545, 1703, 1873, 2084, 2256, 2328, 2242, 2024, 1842, 1696, 1550, 1445, 1387, 1354, 1364, 1414, 1489, 1618, 1765, 1936, 2139, 2260]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2200, 2126, 1953, 1848, 1672, 1559, 1456, 1406, 1384, 1406, 1425, 1493, 1592, 1687, 1817, 1967, 2033, 2154, 2044, 1897, 1735, 1588, 1465, 1376, 1317, 1296, 1310, 1345, 1415, 1495, 1609, 1758, 1888, 2040, 2110, 2004, 1841, 1660, 1513, 1398, 1314, 1248, 1228, 1240, 1278, 1344, 1429, 1551, 1698, 1844, 1983, 2092, 1969, 1762, 1592, 1454, 1325, 1245, 1194, 1161, 1179, 1209, 1284, 1382, 1496, 1636, 1804, 1938, 2134, 1892, 1720, 1553, 1391, 1277, 1185, 1135, 1113, 1129, 1177, 1237, 1328, 1452, 1600, 1784, 1944, 2048, 1862, 1674, 1505, 1355, 1239, 1152, 1100, 1069, 1091, 1127, 1201, 1305, 1426, 1568, 1744, 1923, 2035, 1847, 1649, 1475, 1327, 1212, 1118, 1066, 1047, 1058, 1101, 1176, 1272, 1398, 1542, 1734, 1913, 2019, 1809, 1623, 1451, 1307, 1183, 1102, 1049, 1032, 1044, 1080, 1148, 1254, 1385, 1540, 1719, 1899, 2002, 1785, 1604, 1442, 1300, 1183, 1093, 1046, 1024, 1027, 1069, 1140, 1247, 1386, 1538, 1707, 1918, 1970, 1794, 1604, 1436, 1295, 1171, 1096, 1044, 1024, 1034, 1074, 1148, 1251, 1377, 1530, 1706, 1889, 2028, 1811, 1605, 1450, 1303, 1191, 1114, 1059, 1034, 1047, 1085, 1159, 1260, 1396, 1550, 1721, 1930, 1996, 1816, 1625, 1472, 1318, 1214, 1121, 1080, 1056, 1069, 1105, 1182, 1275, 1413, 1564, 1744, 1923, 2044, 1839, 1660, 1491, 1346, 1242, 1160, 1111, 1091, 1095, 1142, 1201, 1312, 1452, 1604, 1774, 1950, 2078, 1877, 1690, 1533, 1387, 1281, 1207, 1149, 1127, 1140, 1182, 1253, 1340, 1479, 1625, 1809, 1962, 2075, 1914, 1738, 1584, 1448, 1329, 1247, 1207, 1186, 1187, 1231, 1291, 1406, 1530, 1664, 1833, 1965, 2074, 1950, 1787, 1633, 1498, 1386, 1304, 1272, 1240, 1249, 1296, 1358, 1450, 1582, 1731, 1904, 2008, 2066, 2004, 1832, 1696, 1547, 1457, 1392, 1330, 1309, 1320, 1348, 1430, 1520, 1629, 1772, 1955, 2033]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2278, 2160, 1959, 1833, 1641, 1532, 1416, 1368, 1332, 1349, 1378, 1463, 1546, 1679, 1827, 1996, 2099, 2245, 2118, 1942, 1746, 1586, 1465, 1368, 1298, 1273, 1287, 1320, 1404, 1490, 1614, 1788, 1956, 2065, 2204, 2074, 1873, 1677, 1515, 1395, 1299, 1235, 1219, 1218, 1267, 1340, 1438, 1557, 1725, 1908, 2087, 2207, 2024, 1837, 1625, 1462, 1333, 1242, 1190, 1162, 1174, 1212, 1287, 1395, 1528, 1696, 1882, 2062, 2176, 1992, 1772, 1585, 1414, 1285, 1195, 1127, 1110, 1130, 1170, 1242, 1352, 1500, 1665, 1855, 2042, 2195, 1952, 1750, 1549, 1395, 1242, 1156, 1096, 1076, 1087, 1136, 1208, 1315, 1468, 1635, 1821, 2019, 2165, 1929, 1705, 1517, 1354, 1220, 1131, 1077, 1047, 1057, 1102, 1183, 1294, 1443, 1614, 1797, 2013, 2119, 1904, 1690, 1502, 1342, 1205, 1109, 1051, 1034, 1046, 1085, 1165, 1277, 1426, 1598, 1800, 1987, 2121, 1900, 1678, 1483, 1324, 1199, 1109, 1046, 1024, 1039, 1078, 1165, 1268, 1420, 1602, 1791, 2000, 2141, 1899, 1674, 1482, 1323, 1201, 1103, 1047, 1032, 1037, 1079, 1165, 1271, 1426, 1601, 1810, 1987, 2093, 1884, 1696, 1484, 1341, 1211, 1126, 1066, 1040, 1046, 1096, 1177, 1276, 1440, 1622, 1806, 2020, 2143, 1895, 1696, 1511, 1357, 1228, 1130, 1076, 1056, 1070, 1114, 1191, 1313, 1455, 1635, 1821, 2026, 2125, 1932, 1730, 1541, 1382, 1261, 1165, 1110, 1092, 1102, 1146, 1227, 1336, 1487, 1661, 1850, 2035, 2169, 1956, 1768, 1571, 1398, 1292, 1205, 1153, 1130, 1148, 1188, 1258, 1373, 1518, 1683, 1877, 2062, 2158, 1978, 1781, 1616, 1466, 1342, 1253, 1201, 1181, 1182, 1236, 1303, 1419, 1560, 1712, 1903, 2052, 2143, 2017, 1848, 1654, 1497, 1389, 1299, 1252, 1232, 1242, 1280, 1356, 1468, 1607, 1773, 1950, 2114, 2165, 2068, 1890, 1705, 1572, 1459, 1372, 1307, 1286, 1297, 1342, 1408, 1535, 1654, 1812, 1984, 2057]
| },
| "lsc_samples_blue": {
| "uCoeff": [1903, 1842, 1695, 1544, 1439, 1351, 1299, 1240, 1222, 1209, 1264, 1315, 1389, 1458, 1560, 1693, 1856, 1863, 1815, 1647, 1523, 1404, 1342, 1269, 1225, 1213, 1225, 1242, 1312, 1356, 1441, 1560, 1683, 1818, 1880, 1746, 1601, 1484, 1378, 1295, 1226, 1191, 1179, 1196, 1213, 1260, 1346, 1413, 1539, 1647, 1777, 1832, 1717, 1577, 1445, 1343, 1244, 1191, 1146, 1135, 1146, 1173, 1224, 1292, 1377, 1507, 1589, 1735, 1799, 1688, 1553, 1432, 1316, 1227, 1156, 1113, 1093, 1097, 1140, 1190, 1281, 1366, 1466, 1586, 1719, 1779, 1670, 1508, 1393, 1290, 1191, 1129, 1093, 1058, 1077, 1108, 1167, 1242, 1353, 1443, 1570, 1688, 1757, 1662, 1500, 1396, 1263, 1180, 1108, 1063, 1048, 1058, 1087, 1151, 1231, 1325, 1437, 1553, 1681, 1760, 1641, 1502, 1364, 1264, 1180, 1093, 1058, 1033, 1048, 1077, 1140, 1213, 1305, 1422, 1535, 1683, 1735, 1642, 1503, 1381, 1258, 1175, 1098, 1058, 1033, 1033, 1077, 1128, 1225, 1311, 1422, 1555, 1722, 1774, 1653, 1502, 1381, 1264, 1169, 1093, 1053, 1024, 1048, 1077, 1134, 1206, 1326, 1422, 1565, 1696, 1744, 1662, 1500, 1387, 1285, 1185, 1113, 1063, 1048, 1048, 1093, 1156, 1231, 1325, 1446, 1573, 1705, 1807, 1646, 1517, 1409, 1297, 1191, 1124, 1087, 1058, 1062, 1102, 1155, 1255, 1361, 1470, 1591, 1688, 1813, 1688, 1542, 1423, 1316, 1233, 1156, 1108, 1087, 1092, 1123, 1172, 1281, 1381, 1484, 1619, 1758, 1832, 1705, 1599, 1462, 1343, 1244, 1179, 1140, 1124, 1134, 1161, 1224, 1299, 1394, 1498, 1611, 1749, 1849, 1759, 1601, 1484, 1385, 1295, 1219, 1173, 1161, 1178, 1189, 1247, 1324, 1422, 1539, 1670, 1791, 1894, 1787, 1647, 1523, 1396, 1320, 1282, 1225, 1207, 1194, 1242, 1284, 1356, 1441, 1560, 1708, 1848, 1952, 1842, 1682, 1595, 1475, 1367, 1320, 1247, 1248, 1253, 1299, 1344, 1397, 1485, 1602, 1758, 1870]
| }
| }, {
| "name": "1920x1080_CWF_100",
| "resolution": "1920x1080",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2687, 2475, 2161, 1909, 1725, 1560, 1463, 1377, 1367, 1352, 1397, 1474, 1580, 1733, 1969, 2225, 2475, 2631, 2381, 2066, 1852, 1620, 1486, 1397, 1310, 1274, 1296, 1338, 1397, 1516, 1678, 1852, 2125, 2443, 2542, 2266, 1979, 1725, 1560, 1424, 1310, 1240, 1220, 1228, 1270, 1352, 1457, 1607, 1782, 2033, 2322, 2475, 2212, 1880, 1686, 1486, 1347, 1232, 1189, 1164, 1164, 1205, 1283, 1397, 1534, 1717, 1979, 2266, 2443, 2101, 1825, 1635, 1424, 1287, 1193, 1142, 1109, 1115, 1153, 1245, 1352, 1498, 1671, 1909, 2252, 2351, 2066, 1799, 1553, 1377, 1257, 1160, 1092, 1071, 1083, 1132, 1205, 1310, 1463, 1642, 1862, 2199, 2351, 2011, 1749, 1528, 1352, 1220, 1122, 1065, 1050, 1044, 1102, 1178, 1274, 1413, 1614, 1825, 2137, 2308, 1979, 1725, 1528, 1333, 1205, 1112, 1047, 1030, 1047, 1080, 1153, 1270, 1397, 1593, 1816, 2113, 2293, 1958, 1701, 1498, 1323, 1193, 1102, 1041, 1024, 1030, 1077, 1146, 1257, 1403, 1580, 1825, 2113, 2322, 1948, 1678, 1486, 1323, 1186, 1109, 1047, 1030, 1044, 1074, 1153, 1257, 1413, 1586, 1825, 2137, 2336, 1969, 1717, 1498, 1338, 1212, 1109, 1059, 1047, 1056, 1083, 1153, 1270, 1419, 1607, 1852, 2137, 2293, 2000, 1749, 1528, 1357, 1228, 1135, 1083, 1062, 1065, 1102, 1189, 1292, 1446, 1635, 1871, 2174, 2411, 2044, 1765, 1547, 1387, 1257, 1164, 1122, 1083, 1102, 1132, 1209, 1323, 1480, 1649, 1909, 2199, 2427, 2078, 1825, 1593, 1424, 1296, 1197, 1153, 1132, 1132, 1175, 1245, 1352, 1510, 1701, 1938, 2225, 2475, 2174, 1871, 1649, 1486, 1352, 1257, 1205, 1175, 1186, 1220, 1296, 1419, 1547, 1765, 2044, 2351, 2577, 2239, 1948, 1701, 1534, 1397, 1319, 1257, 1236, 1240, 1278, 1367, 1480, 1642, 1825, 2113, 2427, 2668, 2322, 2022, 1799, 1627, 1486, 1372, 1328, 1310, 1323, 1352, 1424, 1547, 1701, 1899, 2212, 2475]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2675, 2517, 2189, 1955, 1727, 1582, 1473, 1436, 1386, 1427, 1439, 1514, 1643, 1795, 2016, 2251, 2517, 2631, 2377, 2069, 1842, 1647, 1493, 1386, 1323, 1301, 1310, 1351, 1436, 1540, 1700, 1902, 2160, 2440, 2568, 2291, 1979, 1742, 1559, 1405, 1307, 1243, 1227, 1236, 1286, 1351, 1466, 1635, 1826, 2075, 2350, 2517, 2182, 1891, 1656, 1490, 1343, 1243, 1181, 1168, 1166, 1217, 1294, 1405, 1555, 1737, 2016, 2275, 2422, 2117, 1826, 1606, 1414, 1286, 1186, 1137, 1111, 1123, 1168, 1241, 1360, 1511, 1700, 1949, 2235, 2394, 2062, 1770, 1559, 1366, 1236, 1156, 1102, 1076, 1081, 1131, 1194, 1310, 1466, 1673, 1908, 2182, 2359, 2023, 1746, 1522, 1334, 1208, 1117, 1070, 1042, 1049, 1102, 1177, 1283, 1430, 1643, 1886, 2197, 2350, 1985, 1709, 1490, 1318, 1190, 1094, 1051, 1031, 1044, 1079, 1158, 1265, 1423, 1614, 1858, 2160, 2316, 1967, 1695, 1490, 1304, 1172, 1090, 1041, 1024, 1034, 1070, 1151, 1255, 1408, 1618, 1858, 2182, 2275, 1961, 1695, 1466, 1296, 1172, 1104, 1046, 1026, 1031, 1074, 1151, 1255, 1411, 1626, 1858, 2152, 2325, 1967, 1709, 1486, 1318, 1192, 1107, 1054, 1031, 1041, 1085, 1166, 1278, 1436, 1630, 1886, 2182, 2283, 1998, 1727, 1518, 1343, 1215, 1131, 1074, 1058, 1069, 1113, 1186, 1301, 1443, 1643, 1908, 2182, 2377, 2049, 1766, 1536, 1377, 1243, 1166, 1109, 1092, 1100, 1139, 1220, 1334, 1483, 1695, 1931, 2251, 2413, 2096, 1821, 1578, 1411, 1283, 1206, 1147, 1129, 1135, 1181, 1263, 1377, 1529, 1737, 2004, 2333, 2507, 2145, 1874, 1635, 1462, 1348, 1251, 1208, 1181, 1199, 1234, 1304, 1443, 1582, 1790, 2055, 2325, 2497, 2212, 1943, 1704, 1529, 1411, 1329, 1270, 1248, 1263, 1301, 1377, 1504, 1647, 1880, 2152, 2394, 2557, 2300, 2036, 1800, 1618, 1473, 1386, 1343, 1318, 1331, 1374, 1443, 1578, 1737, 1955, 2204, 2478]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2737, 2541, 2200, 1964, 1754, 1561, 1458, 1386, 1350, 1371, 1416, 1499, 1633, 1808, 2007, 2279, 2551, 2680, 2389, 2106, 1840, 1646, 1478, 1380, 1314, 1288, 1296, 1336, 1416, 1535, 1703, 1928, 2200, 2492, 2603, 2312, 2020, 1759, 1550, 1410, 1304, 1243, 1221, 1224, 1278, 1353, 1472, 1625, 1829, 2120, 2407, 2551, 2255, 1946, 1685, 1478, 1331, 1243, 1179, 1155, 1172, 1217, 1293, 1404, 1573, 1768, 2039, 2372, 2501, 2185, 1861, 1621, 1426, 1285, 1187, 1131, 1107, 1115, 1157, 1245, 1362, 1517, 1726, 2020, 2303, 2463, 2134, 1829, 1573, 1388, 1240, 1147, 1092, 1068, 1085, 1123, 1201, 1314, 1496, 1698, 1946, 2271, 2435, 2065, 1768, 1554, 1353, 1217, 1119, 1074, 1041, 1060, 1096, 1181, 1288, 1461, 1667, 1946, 2255, 2381, 2052, 1749, 1510, 1334, 1194, 1103, 1044, 1036, 1039, 1079, 1162, 1283, 1438, 1646, 1905, 2255, 2389, 2039, 1749, 1510, 1314, 1187, 1096, 1046, 1024, 1034, 1079, 1153, 1272, 1438, 1650, 1911, 2247, 2354, 2020, 1726, 1496, 1320, 1190, 1100, 1046, 1027, 1036, 1079, 1162, 1270, 1435, 1646, 1900, 2231, 2389, 2039, 1749, 1506, 1336, 1203, 1105, 1053, 1037, 1047, 1094, 1168, 1293, 1448, 1658, 1928, 2255, 2416, 2039, 1773, 1539, 1345, 1221, 1133, 1072, 1056, 1070, 1111, 1194, 1304, 1472, 1689, 1964, 2287, 2454, 2099, 1803, 1565, 1388, 1255, 1162, 1103, 1083, 1102, 1141, 1221, 1336, 1503, 1726, 2007, 2303, 2511, 2127, 1856, 1608, 1429, 1293, 1199, 1147, 1123, 1131, 1181, 1267, 1374, 1561, 1754, 2052, 2354, 2521, 2208, 1905, 1667, 1482, 1350, 1250, 1194, 1168, 1190, 1231, 1314, 1445, 1617, 1829, 2113, 2398, 2582, 2279, 1958, 1730, 1546, 1407, 1317, 1257, 1240, 1240, 1301, 1359, 1499, 1680, 1911, 2178, 2463, 2635, 2372, 2065, 1824, 1633, 1478, 1398, 1320, 1301, 1312, 1365, 1435, 1592, 1740, 1982, 2255, 2562]
| },
| "lsc_samples_blue": {
| "uCoeff": [2331, 2076, 1843, 1635, 1487, 1395, 1292, 1234, 1234, 1216, 1272, 1313, 1403, 1487, 1680, 1900, 2148, 2206, 2025, 1790, 1593, 1461, 1356, 1259, 1216, 1192, 1210, 1240, 1292, 1387, 1461, 1625, 1830, 2112, 2167, 1945, 1727, 1534, 1403, 1313, 1240, 1181, 1164, 1159, 1198, 1253, 1320, 1444, 1573, 1764, 2025, 2059, 1885, 1657, 1478, 1356, 1259, 1181, 1132, 1112, 1127, 1164, 1216, 1292, 1395, 1543, 1727, 1960, 2025, 1843, 1614, 1461, 1327, 1240, 1148, 1107, 1087, 1087, 1117, 1187, 1272, 1379, 1505, 1680, 1915, 1976, 1777, 1563, 1427, 1292, 1181, 1122, 1073, 1059, 1073, 1102, 1170, 1240, 1342, 1470, 1657, 1885, 1960, 1777, 1553, 1419, 1272, 1181, 1097, 1059, 1033, 1041, 1087, 1148, 1234, 1313, 1461, 1646, 1857, 1945, 1727, 1534, 1379, 1259, 1164, 1087, 1055, 1037, 1037, 1068, 1127, 1222, 1313, 1461, 1625, 1871, 1915, 1727, 1534, 1371, 1259, 1159, 1073, 1033, 1033, 1037, 1059, 1132, 1198, 1320, 1470, 1657, 1843, 1930, 1727, 1543, 1356, 1247, 1159, 1087, 1041, 1037, 1024, 1064, 1132, 1222, 1320, 1461, 1625, 1857, 1945, 1739, 1534, 1403, 1253, 1170, 1102, 1046, 1041, 1050, 1078, 1132, 1222, 1320, 1478, 1657, 1857, 1976, 1751, 1563, 1403, 1292, 1181, 1107, 1068, 1055, 1068, 1092, 1153, 1234, 1356, 1496, 1680, 1930, 1992, 1816, 1593, 1411, 1292, 1216, 1137, 1097, 1078, 1087, 1117, 1164, 1266, 1379, 1515, 1703, 1930, 2093, 1843, 1614, 1461, 1342, 1240, 1170, 1132, 1122, 1117, 1137, 1216, 1279, 1403, 1563, 1739, 1976, 2130, 1915, 1680, 1515, 1364, 1279, 1204, 1153, 1153, 1153, 1175, 1240, 1313, 1435, 1583, 1803, 2025, 2206, 1976, 1739, 1543, 1411, 1327, 1253, 1198, 1192, 1192, 1234, 1292, 1364, 1487, 1635, 1857, 2112, 2376, 2059, 1830, 1593, 1470, 1342, 1306, 1253, 1234, 1253, 1272, 1320, 1427, 1524, 1727, 1930, 2130]
| }
| }, {
| "name": "1920x1080_CWF_70",
| "resolution": "1920x1080",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2188, 2119, 1932, 1763, 1631, 1502, 1423, 1349, 1341, 1326, 1363, 1425, 1506, 1616, 1778, 1930, 2040, 2180, 2070, 1872, 1729, 1550, 1444, 1370, 1292, 1259, 1279, 1315, 1363, 1459, 1581, 1698, 1872, 2045, 2138, 1998, 1815, 1631, 1505, 1393, 1293, 1230, 1211, 1218, 1256, 1327, 1413, 1529, 1652, 1815, 1976, 2106, 1970, 1743, 1605, 1445, 1326, 1223, 1183, 1160, 1159, 1197, 1266, 1364, 1472, 1606, 1784, 1950, 2096, 1892, 1705, 1567, 1392, 1273, 1187, 1139, 1107, 1113, 1149, 1233, 1326, 1445, 1574, 1737, 1952, 2036, 1871, 1689, 1498, 1352, 1246, 1156, 1091, 1070, 1082, 1129, 1197, 1290, 1417, 1554, 1705, 1920, 2043, 1832, 1650, 1479, 1331, 1212, 1120, 1065, 1050, 1044, 1100, 1172, 1258, 1375, 1533, 1680, 1879, 2014, 1809, 1631, 1480, 1314, 1199, 1111, 1047, 1030, 1047, 1079, 1148, 1255, 1362, 1517, 1675, 1864, 2004, 1792, 1611, 1454, 1305, 1187, 1101, 1041, 1024, 1030, 1076, 1142, 1243, 1368, 1506, 1683, 1865, 2025, 1783, 1591, 1442, 1305, 1180, 1108, 1047, 1030, 1044, 1073, 1148, 1243, 1376, 1511, 1682, 1882, 2032, 1797, 1622, 1452, 1317, 1205, 1107, 1059, 1047, 1056, 1082, 1148, 1254, 1380, 1527, 1702, 1879, 1992, 1818, 1646, 1476, 1333, 1219, 1132, 1082, 1062, 1064, 1100, 1182, 1273, 1402, 1548, 1713, 1901, 2072, 1846, 1654, 1489, 1358, 1245, 1159, 1120, 1082, 1100, 1128, 1199, 1299, 1429, 1555, 1737, 1912, 2070, 1863, 1697, 1524, 1388, 1279, 1189, 1149, 1129, 1128, 1168, 1231, 1323, 1451, 1593, 1752, 1920, 2089, 1926, 1725, 1565, 1439, 1327, 1243, 1196, 1168, 1178, 1209, 1275, 1379, 1477, 1638, 1824, 1998, 2141, 1960, 1776, 1601, 1474, 1363, 1297, 1242, 1224, 1226, 1259, 1336, 1427, 1550, 1676, 1863, 2033, 2175, 2004, 1821, 1672, 1547, 1436, 1340, 1304, 1288, 1299, 1322, 1381, 1477, 1590, 1722, 1921, 2040]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2180, 2151, 1954, 1802, 1633, 1521, 1432, 1403, 1358, 1395, 1401, 1461, 1560, 1668, 1816, 1950, 2069, 2180, 2067, 1875, 1721, 1574, 1450, 1359, 1304, 1285, 1292, 1327, 1398, 1480, 1600, 1739, 1899, 2042, 2157, 2018, 1815, 1646, 1504, 1376, 1290, 1233, 1218, 1226, 1271, 1326, 1421, 1553, 1688, 1848, 1997, 2137, 1946, 1752, 1579, 1448, 1323, 1233, 1176, 1164, 1161, 1208, 1277, 1371, 1490, 1623, 1814, 1957, 2080, 1905, 1706, 1541, 1383, 1272, 1180, 1134, 1109, 1121, 1163, 1229, 1333, 1457, 1599, 1769, 1939, 2069, 1868, 1664, 1504, 1342, 1226, 1153, 1101, 1075, 1080, 1128, 1186, 1290, 1420, 1581, 1743, 1907, 2049, 1842, 1647, 1473, 1314, 1201, 1115, 1070, 1042, 1049, 1100, 1171, 1266, 1390, 1558, 1730, 1925, 2047, 1814, 1617, 1446, 1300, 1184, 1093, 1051, 1031, 1044, 1078, 1153, 1250, 1385, 1535, 1709, 1900, 2022, 1800, 1606, 1446, 1287, 1167, 1089, 1041, 1024, 1034, 1069, 1147, 1241, 1372, 1539, 1710, 1918, 1989, 1794, 1605, 1424, 1279, 1167, 1103, 1046, 1026, 1031, 1073, 1146, 1241, 1374, 1546, 1709, 1894, 2023, 1796, 1615, 1441, 1299, 1185, 1105, 1054, 1031, 1041, 1084, 1160, 1261, 1396, 1547, 1730, 1913, 1984, 1816, 1627, 1467, 1320, 1206, 1128, 1073, 1058, 1068, 1111, 1179, 1281, 1400, 1555, 1743, 1907, 2046, 1850, 1655, 1479, 1349, 1231, 1161, 1107, 1091, 1098, 1135, 1210, 1309, 1432, 1594, 1755, 1951, 2060, 1877, 1694, 1511, 1376, 1266, 1198, 1143, 1126, 1131, 1174, 1248, 1345, 1468, 1623, 1804, 2000, 2112, 1903, 1728, 1553, 1417, 1323, 1238, 1199, 1174, 1191, 1222, 1282, 1400, 1507, 1658, 1833, 1979, 2083, 1940, 1772, 1603, 1470, 1376, 1307, 1255, 1235, 1248, 1281, 1345, 1448, 1555, 1721, 1893, 2009, 2097, 1987, 1832, 1672, 1539, 1424, 1353, 1318, 1296, 1306, 1342, 1397, 1504, 1620, 1767, 1915, 2042]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2223, 2169, 1963, 1809, 1657, 1503, 1419, 1357, 1325, 1343, 1380, 1447, 1552, 1679, 1809, 1971, 2093, 2215, 2076, 1905, 1719, 1573, 1436, 1354, 1296, 1272, 1279, 1313, 1380, 1475, 1602, 1760, 1930, 2080, 2183, 2034, 1849, 1661, 1496, 1380, 1288, 1233, 1212, 1215, 1263, 1328, 1426, 1545, 1691, 1884, 2039, 2163, 2004, 1799, 1605, 1437, 1311, 1233, 1174, 1151, 1167, 1208, 1276, 1370, 1506, 1649, 1832, 2029, 2140, 1959, 1735, 1554, 1394, 1271, 1181, 1129, 1105, 1113, 1152, 1233, 1335, 1462, 1621, 1826, 1990, 2122, 1927, 1714, 1516, 1362, 1230, 1144, 1091, 1068, 1084, 1120, 1193, 1293, 1447, 1602, 1774, 1975, 2108, 1876, 1666, 1502, 1332, 1209, 1117, 1074, 1041, 1060, 1095, 1175, 1271, 1418, 1579, 1779, 1970, 2071, 1869, 1652, 1464, 1315, 1188, 1102, 1044, 1036, 1039, 1078, 1157, 1267, 1399, 1563, 1748, 1973, 2078, 1859, 1653, 1465, 1296, 1181, 1095, 1046, 1024, 1034, 1078, 1149, 1257, 1399, 1567, 1754, 1969, 2050, 1842, 1632, 1451, 1302, 1184, 1099, 1046, 1027, 1036, 1078, 1157, 1255, 1396, 1563, 1744, 1955, 2072, 1855, 1650, 1459, 1316, 1196, 1103, 1053, 1037, 1047, 1093, 1162, 1275, 1406, 1571, 1764, 1970, 2086, 1849, 1666, 1486, 1322, 1212, 1130, 1071, 1056, 1069, 1109, 1186, 1284, 1426, 1594, 1788, 1987, 2104, 1890, 1686, 1505, 1359, 1243, 1157, 1101, 1082, 1100, 1137, 1210, 1311, 1450, 1621, 1816, 1990, 2133, 1902, 1723, 1537, 1393, 1276, 1191, 1143, 1120, 1127, 1174, 1251, 1343, 1496, 1637, 1842, 2016, 2122, 1953, 1754, 1581, 1435, 1325, 1237, 1186, 1162, 1182, 1219, 1292, 1402, 1538, 1691, 1878, 2032, 2145, 1991, 1785, 1625, 1485, 1372, 1295, 1242, 1227, 1226, 1281, 1328, 1444, 1583, 1746, 1913, 2059, 2152, 2041, 1855, 1692, 1552, 1429, 1364, 1296, 1280, 1289, 1334, 1390, 1516, 1622, 1789, 1953, 2101]
| },
| "lsc_samples_blue": {
| "uCoeff": [1939, 1818, 1678, 1535, 1425, 1355, 1268, 1217, 1218, 1201, 1249, 1282, 1352, 1411, 1548, 1685, 1811, 1874, 1795, 1648, 1509, 1410, 1326, 1242, 1204, 1182, 1198, 1224, 1267, 1345, 1396, 1513, 1645, 1807, 1863, 1746, 1606, 1466, 1364, 1291, 1227, 1174, 1158, 1153, 1188, 1235, 1290, 1388, 1479, 1604, 1759, 1796, 1709, 1556, 1423, 1326, 1244, 1174, 1128, 1109, 1123, 1158, 1204, 1268, 1350, 1460, 1584, 1722, 1780, 1684, 1525, 1412, 1303, 1228, 1144, 1105, 1086, 1086, 1114, 1178, 1252, 1339, 1433, 1552, 1697, 1750, 1636, 1486, 1385, 1273, 1174, 1119, 1072, 1059, 1072, 1100, 1163, 1225, 1309, 1406, 1539, 1681, 1743, 1640, 1481, 1380, 1256, 1175, 1096, 1059, 1033, 1041, 1086, 1143, 1220, 1285, 1401, 1533, 1664, 1734, 1602, 1466, 1345, 1244, 1159, 1086, 1055, 1037, 1037, 1067, 1123, 1210, 1286, 1403, 1518, 1677, 1712, 1602, 1466, 1339, 1245, 1154, 1072, 1033, 1033, 1037, 1058, 1128, 1187, 1292, 1411, 1545, 1657, 1723, 1602, 1474, 1325, 1233, 1154, 1086, 1041, 1037, 1024, 1063, 1128, 1210, 1292, 1403, 1518, 1666, 1731, 1609, 1464, 1366, 1238, 1164, 1100, 1046, 1041, 1050, 1077, 1128, 1209, 1291, 1416, 1542, 1664, 1750, 1615, 1486, 1364, 1273, 1174, 1105, 1067, 1055, 1067, 1090, 1147, 1219, 1322, 1429, 1557, 1715, 1755, 1662, 1508, 1368, 1271, 1206, 1133, 1095, 1077, 1086, 1114, 1157, 1247, 1339, 1441, 1571, 1708, 1821, 1676, 1520, 1408, 1314, 1226, 1163, 1128, 1119, 1114, 1132, 1204, 1256, 1357, 1477, 1593, 1734, 1836, 1723, 1567, 1449, 1329, 1259, 1193, 1147, 1147, 1147, 1166, 1223, 1283, 1380, 1487, 1635, 1759, 1874, 1758, 1606, 1466, 1366, 1299, 1236, 1187, 1182, 1181, 1219, 1267, 1324, 1418, 1522, 1666, 1807, 1970, 1805, 1667, 1499, 1411, 1307, 1280, 1235, 1218, 1235, 1249, 1288, 1373, 1442, 1585, 1708, 1798]
| }
| }, {
| "name": "1920x1080_D50_100",
| "resolution": "1920x1080",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2936, 2615, 2332, 2064, 1805, 1634, 1535, 1442, 1423, 1405, 1457, 1535, 1665, 1835, 2084, 2384, 2647, 2766, 2553, 2224, 1952, 1739, 1563, 1437, 1360, 1331, 1343, 1395, 1467, 1597, 1760, 1997, 2283, 2568, 2749, 2424, 2125, 1843, 1621, 1477, 1356, 1295, 1257, 1261, 1303, 1395, 1535, 1691, 1892, 2179, 2509, 2631, 2345, 2016, 1775, 1557, 1405, 1283, 1208, 1188, 1191, 1232, 1323, 1452, 1615, 1820, 2104, 2438, 2615, 2247, 1952, 1698, 1513, 1343, 1221, 1156, 1123, 1132, 1184, 1264, 1395, 1563, 1768, 2054, 2384, 2568, 2201, 1892, 1659, 1442, 1279, 1175, 1117, 1083, 1091, 1141, 1228, 1352, 1535, 1718, 1997, 2320, 2523, 2146, 1859, 1615, 1405, 1250, 1150, 1075, 1054, 1057, 1100, 1194, 1327, 1492, 1705, 1961, 2283, 2480, 2115, 1805, 1574, 1387, 1235, 1120, 1057, 1024, 1046, 1094, 1175, 1295, 1467, 1685, 1952, 2247, 2452, 2115, 1812, 1574, 1369, 1208, 1111, 1049, 1034, 1031, 1072, 1172, 1291, 1452, 1678, 1917, 2259, 2480, 2094, 1790, 1563, 1369, 1215, 1114, 1046, 1024, 1034, 1083, 1162, 1287, 1472, 1665, 1943, 2224, 2465, 2104, 1820, 1580, 1378, 1228, 1129, 1064, 1041, 1049, 1089, 1175, 1307, 1472, 1678, 1934, 2259, 2553, 2125, 1843, 1609, 1400, 1257, 1156, 1086, 1059, 1072, 1120, 1208, 1331, 1497, 1711, 1979, 2283, 2523, 2179, 1867, 1646, 1433, 1287, 1188, 1126, 1105, 1105, 1153, 1235, 1382, 1546, 1746, 2035, 2320, 2599, 2247, 1934, 1698, 1497, 1331, 1250, 1162, 1141, 1150, 1201, 1287, 1418, 1580, 1805, 2115, 2424, 2664, 2307, 1997, 1739, 1557, 1409, 1279, 1225, 1204, 1218, 1257, 1343, 1472, 1659, 1867, 2179, 2523, 2749, 2397, 2084, 1820, 1615, 1462, 1360, 1291, 1261, 1279, 1331, 1409, 1551, 1711, 1943, 2247, 2538, 2821, 2523, 2125, 1934, 1705, 1563, 1423, 1369, 1335, 1360, 1405, 1482, 1640, 1820, 2044, 2320, 2631]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2685, 2485, 2210, 1968, 1743, 1592, 1472, 1412, 1398, 1421, 1424, 1503, 1637, 1787, 2019, 2217, 2468, 2586, 2360, 2073, 1854, 1648, 1500, 1390, 1332, 1297, 1307, 1350, 1418, 1533, 1688, 1904, 2136, 2375, 2521, 2275, 1985, 1747, 1560, 1412, 1317, 1249, 1229, 1235, 1278, 1360, 1462, 1622, 1815, 2055, 2328, 2485, 2190, 1904, 1668, 1497, 1345, 1249, 1189, 1165, 1185, 1222, 1297, 1407, 1550, 1738, 2013, 2275, 2383, 2117, 1854, 1614, 1430, 1285, 1191, 1132, 1121, 1124, 1171, 1244, 1352, 1507, 1688, 1952, 2204, 2392, 2067, 1787, 1557, 1371, 1251, 1152, 1101, 1078, 1086, 1130, 1212, 1317, 1469, 1672, 1904, 2190, 2297, 2013, 1747, 1513, 1350, 1214, 1128, 1069, 1053, 1058, 1100, 1181, 1292, 1444, 1625, 1873, 2156, 2297, 1985, 1709, 1494, 1322, 1187, 1110, 1053, 1039, 1045, 1084, 1156, 1264, 1427, 1618, 1854, 2136, 2290, 1968, 1692, 1481, 1307, 1187, 1098, 1053, 1024, 1036, 1074, 1150, 1251, 1424, 1614, 1844, 2149, 2260, 1968, 1696, 1481, 1309, 1183, 1096, 1047, 1038, 1047, 1079, 1152, 1258, 1412, 1607, 1858, 2163, 2283, 1985, 1700, 1500, 1329, 1197, 1121, 1063, 1044, 1052, 1091, 1175, 1285, 1430, 1637, 1873, 2176, 2344, 1996, 1721, 1510, 1347, 1222, 1135, 1081, 1063, 1069, 1114, 1187, 1297, 1459, 1656, 1889, 2176, 2360, 2031, 1774, 1550, 1379, 1244, 1169, 1119, 1093, 1105, 1148, 1218, 1329, 1484, 1705, 1952, 2204, 2392, 2092, 1820, 1596, 1415, 1292, 1214, 1160, 1141, 1141, 1189, 1262, 1376, 1530, 1747, 2002, 2246, 2442, 2130, 1863, 1641, 1472, 1358, 1264, 1208, 1191, 1199, 1227, 1322, 1430, 1592, 1787, 2061, 2283, 2485, 2217, 1935, 1700, 1536, 1410, 1322, 1269, 1249, 1253, 1309, 1371, 1497, 1660, 1868, 2136, 2367, 2548, 2305, 2043, 1792, 1622, 1494, 1401, 1350, 1314, 1327, 1376, 1456, 1578, 1734, 1946, 2183, 2375]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2747, 2457, 2201, 1927, 1714, 1571, 1456, 1392, 1365, 1354, 1406, 1475, 1596, 1757, 1932, 2243, 2519, 2623, 2381, 2095, 1836, 1618, 1478, 1378, 1301, 1277, 1287, 1339, 1412, 1530, 1685, 1885, 2140, 2414, 2556, 2287, 2010, 1744, 1553, 1406, 1304, 1232, 1211, 1213, 1263, 1336, 1456, 1618, 1802, 2082, 2341, 2510, 2222, 1927, 1673, 1478, 1336, 1241, 1186, 1158, 1162, 1207, 1287, 1403, 1564, 1748, 2010, 2265, 2483, 2153, 1845, 1626, 1423, 1277, 1188, 1125, 1109, 1114, 1157, 1239, 1352, 1500, 1705, 1960, 2273, 2406, 2120, 1821, 1571, 1378, 1243, 1147, 1093, 1063, 1083, 1130, 1198, 1316, 1471, 1677, 1932, 2251, 2398, 2046, 1766, 1526, 1341, 1213, 1121, 1073, 1044, 1057, 1098, 1172, 1284, 1453, 1653, 1901, 2201, 2357, 2016, 1731, 1503, 1323, 1188, 1109, 1052, 1026, 1038, 1081, 1155, 1277, 1435, 1630, 1896, 2173, 2373, 2005, 1714, 1503, 1323, 1180, 1095, 1044, 1024, 1033, 1075, 1153, 1257, 1426, 1630, 1875, 2180, 2365, 2016, 1714, 1493, 1318, 1180, 1095, 1046, 1024, 1035, 1070, 1153, 1268, 1426, 1637, 1890, 2194, 2349, 2028, 1727, 1516, 1336, 1196, 1109, 1058, 1035, 1049, 1090, 1160, 1280, 1438, 1641, 1901, 2229, 2381, 2022, 1761, 1533, 1354, 1215, 1130, 1083, 1057, 1065, 1110, 1194, 1299, 1471, 1673, 1927, 2243, 2398, 2082, 1793, 1571, 1378, 1257, 1155, 1105, 1083, 1095, 1138, 1221, 1331, 1500, 1718, 1976, 2236, 2448, 2140, 1826, 1596, 1412, 1282, 1202, 1151, 1127, 1127, 1182, 1254, 1381, 1543, 1744, 2022, 2310, 2519, 2180, 1896, 1653, 1471, 1354, 1259, 1198, 1176, 1184, 1230, 1306, 1435, 1589, 1812, 2076, 2373, 2546, 2236, 1971, 1722, 1533, 1398, 1316, 1250, 1241, 1239, 1287, 1368, 1475, 1653, 1880, 2160, 2389, 2613, 2333, 2052, 1793, 1630, 1478, 1389, 1323, 1308, 1299, 1362, 1423, 1557, 1722, 1960, 2236, 2465]
| },
| "lsc_samples_blue": {
| "uCoeff": [2301, 2145, 1930, 1737, 1537, 1417, 1330, 1286, 1267, 1272, 1286, 1378, 1459, 1564, 1719, 1919, 2227, 2286, 2145, 1877, 1686, 1510, 1411, 1305, 1253, 1231, 1244, 1263, 1335, 1423, 1537, 1702, 1919, 2158, 2227, 2068, 1819, 1608, 1453, 1335, 1258, 1193, 1181, 1189, 1227, 1286, 1378, 1497, 1630, 1848, 2068, 2199, 1996, 1754, 1543, 1394, 1300, 1205, 1150, 1135, 1135, 1181, 1231, 1330, 1435, 1586, 1781, 1985, 2145, 1930, 1686, 1503, 1356, 1244, 1165, 1116, 1092, 1102, 1138, 1189, 1286, 1394, 1557, 1745, 1974, 2093, 1888, 1638, 1453, 1320, 1218, 1131, 1078, 1065, 1068, 1109, 1169, 1258, 1378, 1530, 1702, 1930, 2068, 1848, 1615, 1435, 1300, 1193, 1102, 1062, 1046, 1055, 1088, 1150, 1249, 1362, 1503, 1702, 1919, 2031, 1809, 1586, 1429, 1272, 1177, 1095, 1042, 1027, 1030, 1081, 1142, 1231, 1346, 1510, 1678, 1963, 2031, 1790, 1586, 1406, 1272, 1169, 1092, 1039, 1024, 1036, 1068, 1138, 1231, 1341, 1490, 1694, 1908, 2008, 1790, 1564, 1411, 1267, 1173, 1088, 1042, 1033, 1042, 1075, 1135, 1231, 1356, 1503, 1702, 1919, 2008, 1819, 1600, 1429, 1286, 1181, 1102, 1049, 1042, 1049, 1081, 1157, 1227, 1372, 1516, 1702, 1985, 2056, 1819, 1623, 1441, 1315, 1193, 1123, 1081, 1058, 1071, 1109, 1169, 1258, 1383, 1543, 1737, 1974, 2105, 1867, 1630, 1465, 1341, 1218, 1157, 1106, 1088, 1095, 1123, 1201, 1286, 1423, 1543, 1781, 2031, 2105, 1930, 1678, 1484, 1372, 1276, 1181, 1138, 1123, 1127, 1177, 1218, 1310, 1447, 1600, 1828, 2105, 2199, 1985, 1728, 1550, 1411, 1300, 1227, 1169, 1157, 1165, 1201, 1272, 1351, 1503, 1654, 1848, 2118, 2242, 2031, 1790, 1593, 1441, 1346, 1272, 1222, 1197, 1205, 1253, 1305, 1400, 1530, 1728, 1941, 2145, 2332, 2118, 1838, 1646, 1503, 1411, 1330, 1286, 1267, 1281, 1300, 1372, 1459, 1586, 1781, 2020, 2271]
| }
| }, {
| "name": "1920x1080_D50_70",
| "resolution": "1920x1080",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2362, 2225, 2068, 1893, 1701, 1568, 1489, 1409, 1393, 1375, 1418, 1479, 1579, 1702, 1870, 2050, 2160, 2277, 2202, 2001, 1815, 1656, 1514, 1407, 1339, 1313, 1323, 1368, 1426, 1530, 1651, 1816, 1994, 2134, 2290, 2122, 1936, 1733, 1560, 1442, 1337, 1282, 1247, 1250, 1287, 1367, 1483, 1602, 1743, 1930, 2114, 2222, 2076, 1857, 1684, 1509, 1381, 1271, 1202, 1183, 1185, 1223, 1304, 1414, 1543, 1693, 1884, 2078, 2226, 2009, 1813, 1623, 1474, 1326, 1214, 1153, 1121, 1129, 1178, 1251, 1366, 1503, 1656, 1854, 2051, 2202, 1981, 1768, 1593, 1412, 1267, 1171, 1116, 1082, 1090, 1138, 1219, 1329, 1482, 1619, 1815, 2013, 2175, 1942, 1745, 1557, 1380, 1241, 1147, 1075, 1054, 1057, 1098, 1187, 1307, 1446, 1612, 1791, 1991, 2147, 1920, 1701, 1522, 1365, 1227, 1118, 1057, 1024, 1046, 1093, 1170, 1278, 1425, 1597, 1787, 1967, 2127, 1922, 1708, 1523, 1348, 1202, 1110, 1049, 1034, 1031, 1071, 1167, 1275, 1412, 1591, 1759, 1978, 2147, 1903, 1688, 1512, 1348, 1208, 1113, 1046, 1024, 1034, 1082, 1157, 1271, 1430, 1579, 1779, 1950, 2131, 1908, 1711, 1525, 1355, 1220, 1127, 1064, 1041, 1049, 1088, 1169, 1289, 1428, 1588, 1769, 1973, 2190, 1919, 1726, 1548, 1373, 1246, 1153, 1085, 1059, 1071, 1117, 1200, 1309, 1448, 1613, 1801, 1984, 2156, 1955, 1740, 1577, 1401, 1273, 1182, 1124, 1103, 1103, 1149, 1224, 1354, 1488, 1638, 1838, 2003, 2198, 1998, 1788, 1616, 1455, 1311, 1240, 1157, 1137, 1146, 1193, 1270, 1383, 1512, 1680, 1892, 2068, 2227, 2030, 1830, 1643, 1503, 1379, 1264, 1216, 1196, 1209, 1243, 1319, 1426, 1574, 1722, 1930, 2124, 2265, 2082, 1887, 1702, 1546, 1422, 1335, 1274, 1247, 1263, 1308, 1374, 1489, 1609, 1772, 1966, 2113, 2282, 2155, 1903, 1784, 1614, 1504, 1387, 1341, 1311, 1333, 1370, 1432, 1558, 1689, 1838, 2002, 2149]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2187, 2127, 1971, 1813, 1647, 1530, 1431, 1381, 1369, 1389, 1388, 1451, 1555, 1662, 1818, 1924, 2035, 2147, 2054, 1878, 1731, 1575, 1456, 1363, 1313, 1281, 1289, 1326, 1382, 1474, 1590, 1741, 1881, 1996, 2122, 2005, 1820, 1650, 1505, 1382, 1300, 1238, 1220, 1225, 1263, 1334, 1417, 1542, 1679, 1833, 1981, 2113, 1952, 1763, 1590, 1455, 1324, 1239, 1183, 1161, 1180, 1213, 1280, 1373, 1486, 1624, 1811, 1957, 2050, 1905, 1729, 1548, 1398, 1271, 1185, 1129, 1119, 1122, 1166, 1232, 1326, 1453, 1588, 1772, 1915, 2067, 1872, 1678, 1502, 1346, 1241, 1149, 1100, 1077, 1085, 1127, 1204, 1296, 1423, 1580, 1740, 1913, 2002, 1833, 1648, 1465, 1329, 1207, 1126, 1069, 1053, 1058, 1098, 1175, 1274, 1403, 1543, 1719, 1893, 2006, 1814, 1617, 1450, 1304, 1181, 1109, 1053, 1039, 1045, 1083, 1151, 1249, 1389, 1539, 1706, 1882, 2002, 1801, 1603, 1438, 1290, 1181, 1097, 1053, 1024, 1036, 1073, 1146, 1237, 1387, 1536, 1699, 1893, 1977, 1800, 1606, 1438, 1291, 1177, 1095, 1047, 1038, 1047, 1078, 1147, 1244, 1375, 1529, 1709, 1902, 1991, 1811, 1607, 1453, 1309, 1190, 1119, 1063, 1044, 1052, 1090, 1169, 1268, 1390, 1553, 1719, 1909, 2031, 1814, 1622, 1460, 1324, 1213, 1132, 1080, 1063, 1068, 1112, 1180, 1278, 1414, 1566, 1727, 1903, 2033, 1835, 1661, 1491, 1351, 1232, 1164, 1117, 1092, 1103, 1144, 1208, 1305, 1433, 1603, 1772, 1915, 2044, 1874, 1693, 1526, 1380, 1275, 1205, 1155, 1137, 1137, 1182, 1247, 1344, 1468, 1631, 1803, 1935, 2065, 1892, 1719, 1558, 1426, 1332, 1250, 1199, 1184, 1191, 1215, 1299, 1389, 1516, 1656, 1837, 1948, 2075, 1943, 1766, 1600, 1476, 1375, 1300, 1254, 1236, 1239, 1288, 1339, 1442, 1566, 1711, 1881, 1990, 2091, 1991, 1837, 1666, 1542, 1443, 1367, 1324, 1292, 1303, 1344, 1409, 1504, 1617, 1760, 1899, 1970]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2230, 2105, 1964, 1778, 1622, 1512, 1417, 1363, 1339, 1328, 1371, 1426, 1520, 1636, 1749, 1944, 2071, 2174, 2070, 1896, 1716, 1549, 1436, 1352, 1284, 1262, 1271, 1316, 1376, 1471, 1587, 1725, 1884, 2024, 2148, 2015, 1841, 1648, 1499, 1377, 1288, 1222, 1203, 1204, 1249, 1312, 1412, 1538, 1668, 1854, 1990, 2132, 1978, 1783, 1594, 1437, 1316, 1231, 1180, 1154, 1157, 1199, 1270, 1369, 1498, 1632, 1809, 1949, 2126, 1934, 1722, 1559, 1391, 1263, 1182, 1123, 1107, 1112, 1152, 1228, 1326, 1447, 1603, 1778, 1967, 2078, 1915, 1707, 1514, 1353, 1233, 1144, 1092, 1063, 1082, 1127, 1190, 1295, 1425, 1584, 1762, 1960, 2079, 1860, 1664, 1477, 1320, 1206, 1119, 1073, 1044, 1057, 1096, 1166, 1267, 1411, 1567, 1742, 1928, 2052, 1839, 1637, 1458, 1305, 1182, 1108, 1052, 1026, 1038, 1080, 1150, 1261, 1396, 1549, 1740, 1910, 2066, 1831, 1623, 1458, 1305, 1175, 1094, 1044, 1024, 1033, 1074, 1149, 1243, 1388, 1550, 1724, 1917, 2058, 1839, 1622, 1449, 1300, 1174, 1094, 1046, 1024, 1035, 1069, 1148, 1253, 1388, 1555, 1736, 1926, 2042, 1846, 1631, 1468, 1316, 1189, 1107, 1058, 1035, 1049, 1089, 1155, 1263, 1397, 1557, 1742, 1950, 2059, 1835, 1656, 1480, 1331, 1206, 1127, 1082, 1057, 1064, 1108, 1186, 1279, 1425, 1581, 1758, 1954, 2062, 1876, 1678, 1510, 1350, 1245, 1150, 1103, 1082, 1093, 1134, 1210, 1307, 1447, 1614, 1791, 1939, 2086, 1912, 1698, 1526, 1377, 1265, 1194, 1147, 1124, 1123, 1175, 1239, 1349, 1480, 1629, 1818, 1983, 2121, 1931, 1746, 1569, 1425, 1329, 1245, 1190, 1169, 1176, 1218, 1284, 1393, 1513, 1677, 1849, 2014, 2119, 1958, 1795, 1619, 1474, 1364, 1295, 1236, 1228, 1226, 1268, 1336, 1422, 1560, 1721, 1899, 2006, 2136, 2012, 1845, 1667, 1549, 1429, 1356, 1299, 1286, 1277, 1331, 1380, 1486, 1607, 1771, 1939, 2033]
| },
| "lsc_samples_blue": {
| "uCoeff": [1918, 1870, 1747, 1620, 1469, 1374, 1302, 1265, 1248, 1252, 1262, 1340, 1401, 1475, 1579, 1699, 1866, 1932, 1888, 1719, 1588, 1453, 1376, 1284, 1239, 1219, 1230, 1245, 1306, 1376, 1461, 1576, 1714, 1840, 1907, 1843, 1682, 1530, 1409, 1311, 1244, 1185, 1174, 1181, 1215, 1266, 1342, 1434, 1526, 1670, 1790, 1900, 1798, 1637, 1480, 1361, 1282, 1197, 1146, 1132, 1131, 1174, 1218, 1303, 1385, 1496, 1627, 1741, 1871, 1754, 1587, 1450, 1330, 1232, 1160, 1114, 1091, 1100, 1134, 1180, 1265, 1353, 1477, 1605, 1742, 1839, 1727, 1551, 1409, 1299, 1209, 1128, 1077, 1065, 1067, 1107, 1162, 1241, 1341, 1458, 1575, 1715, 1826, 1698, 1534, 1395, 1282, 1186, 1100, 1062, 1046, 1055, 1087, 1145, 1234, 1329, 1437, 1579, 1711, 1801, 1669, 1511, 1391, 1257, 1172, 1094, 1042, 1027, 1030, 1080, 1138, 1218, 1316, 1445, 1561, 1748, 1802, 1654, 1512, 1370, 1257, 1164, 1091, 1039, 1024, 1036, 1067, 1134, 1218, 1311, 1428, 1575, 1707, 1783, 1653, 1492, 1374, 1252, 1168, 1087, 1042, 1033, 1042, 1074, 1131, 1218, 1325, 1439, 1581, 1714, 1780, 1675, 1521, 1389, 1269, 1175, 1100, 1049, 1042, 1049, 1080, 1152, 1214, 1338, 1449, 1579, 1762, 1811, 1670, 1538, 1398, 1294, 1185, 1120, 1080, 1058, 1070, 1107, 1162, 1241, 1346, 1469, 1604, 1749, 1841, 1703, 1539, 1416, 1316, 1208, 1152, 1104, 1087, 1093, 1120, 1192, 1265, 1378, 1465, 1634, 1785, 1830, 1745, 1573, 1428, 1341, 1260, 1174, 1134, 1120, 1123, 1170, 1206, 1284, 1396, 1508, 1664, 1830, 1886, 1778, 1607, 1480, 1371, 1279, 1215, 1162, 1151, 1158, 1191, 1253, 1318, 1439, 1546, 1670, 1827, 1900, 1800, 1648, 1509, 1392, 1316, 1254, 1210, 1187, 1194, 1236, 1279, 1356, 1455, 1597, 1731, 1830, 1940, 1850, 1674, 1544, 1439, 1369, 1302, 1265, 1248, 1260, 1275, 1334, 1401, 1494, 1628, 1776, 1897]
| }
| }, {
| "name": "1920x1080_D65_100",
| "resolution": "1920x1080",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2965, 2698, 2334, 2018, 1837, 1620, 1481, 1430, 1430, 1417, 1468, 1573, 1695, 1879, 2164, 2402, 2612, 2838, 2612, 2269, 1958, 1722, 1573, 1455, 1376, 1336, 1347, 1387, 1501, 1573, 1759, 1994, 2334, 2612, 2743, 2456, 2136, 1869, 1636, 1468, 1353, 1284, 1264, 1255, 1315, 1387, 1522, 1695, 1935, 2208, 2531, 2698, 2402, 2043, 1759, 1573, 1399, 1284, 1209, 1178, 1187, 1227, 1315, 1495, 1636, 1827, 2150, 2493, 2676, 2301, 1970, 1713, 1508, 1336, 1227, 1145, 1118, 1130, 1178, 1279, 1399, 1573, 1778, 2082, 2402, 2612, 2254, 1901, 1644, 1448, 1289, 1191, 1111, 1092, 1088, 1141, 1222, 1347, 1522, 1740, 2018, 2350, 2571, 2193, 1923, 1612, 1405, 1250, 1137, 1074, 1054, 1060, 1118, 1204, 1326, 1501, 1695, 1946, 2334, 2612, 2150, 1827, 1589, 1381, 1222, 1130, 1064, 1024, 1037, 1096, 1174, 1310, 1495, 1722, 1946, 2254, 2456, 2122, 1817, 1589, 1370, 1227, 1130, 1054, 1030, 1030, 1074, 1162, 1294, 1475, 1687, 1935, 2269, 2531, 2109, 1807, 1589, 1387, 1213, 1114, 1054, 1030, 1040, 1071, 1187, 1294, 1475, 1695, 1935, 2301, 2512, 2150, 1837, 1604, 1370, 1236, 1130, 1064, 1040, 1054, 1107, 1204, 1326, 1481, 1704, 1970, 2285, 2531, 2164, 1837, 1636, 1417, 1264, 1166, 1092, 1067, 1064, 1122, 1218, 1326, 1508, 1713, 1982, 2334, 2531, 2179, 1901, 1661, 1468, 1284, 1191, 1122, 1103, 1107, 1153, 1255, 1364, 1551, 1759, 2043, 2402, 2633, 2285, 1935, 1695, 1495, 1326, 1241, 1170, 1137, 1149, 1204, 1289, 1411, 1612, 1827, 2109, 2384, 2676, 2350, 2031, 1768, 1558, 1405, 1284, 1236, 1204, 1213, 1255, 1347, 1475, 1652, 1858, 2179, 2612, 2813, 2456, 2122, 1837, 1620, 1501, 1347, 1289, 1284, 1274, 1331, 1430, 1558, 1731, 1982, 2301, 2591, 2913, 2591, 2223, 1912, 1722, 1558, 1442, 1347, 1347, 1342, 1393, 1488, 1661, 1827, 2069, 2384, 2789]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2749, 2441, 2202, 1957, 1756, 1600, 1480, 1446, 1377, 1411, 1456, 1530, 1629, 1795, 2019, 2266, 2529, 2612, 2368, 2093, 1853, 1641, 1501, 1395, 1325, 1306, 1311, 1356, 1430, 1530, 1727, 1915, 2143, 2404, 2549, 2266, 2026, 1741, 1564, 1420, 1316, 1249, 1225, 1237, 1290, 1365, 1466, 1637, 1853, 2066, 2350, 2509, 2226, 1921, 1681, 1476, 1350, 1254, 1185, 1179, 1181, 1232, 1300, 1420, 1564, 1775, 2045, 2257, 2450, 2172, 1853, 1620, 1430, 1290, 1210, 1143, 1122, 1122, 1166, 1266, 1365, 1519, 1727, 1975, 2266, 2404, 2107, 1811, 1580, 1383, 1264, 1157, 1103, 1076, 1095, 1145, 1208, 1325, 1494, 1690, 1927, 2180, 2368, 2039, 1756, 1530, 1353, 1215, 1118, 1076, 1053, 1058, 1107, 1192, 1287, 1443, 1663, 1904, 2172, 2341, 2000, 1741, 1515, 1333, 1199, 1108, 1048, 1037, 1043, 1084, 1164, 1282, 1426, 1629, 1870, 2165, 2324, 1981, 1713, 1490, 1314, 1181, 1107, 1046, 1027, 1043, 1076, 1161, 1261, 1423, 1629, 1887, 2172, 2282, 2006, 1731, 1490, 1316, 1194, 1105, 1051, 1024, 1048, 1082, 1174, 1264, 1433, 1629, 1887, 2187, 2376, 2019, 1722, 1483, 1316, 1194, 1107, 1064, 1036, 1051, 1101, 1183, 1295, 1453, 1646, 1898, 2226, 2376, 2013, 1741, 1519, 1347, 1225, 1128, 1087, 1065, 1080, 1116, 1204, 1316, 1459, 1663, 1915, 2257, 2341, 2032, 1780, 1560, 1377, 1251, 1174, 1103, 1089, 1110, 1149, 1227, 1336, 1505, 1722, 1957, 2226, 2441, 2114, 1821, 1600, 1426, 1290, 1199, 1151, 1132, 1153, 1192, 1269, 1389, 1553, 1756, 2019, 2341, 2479, 2165, 1898, 1667, 1480, 1342, 1264, 1208, 1181, 1194, 1239, 1316, 1420, 1608, 1832, 2072, 2341, 2529, 2249, 1939, 1708, 1545, 1404, 1325, 1271, 1244, 1256, 1306, 1389, 1494, 1659, 1898, 2150, 2368, 2549, 2333, 2066, 1821, 1616, 1483, 1420, 1336, 1306, 1330, 1386, 1433, 1596, 1731, 1963, 2226, 2404]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2715, 2459, 2208, 1900, 1690, 1575, 1434, 1393, 1348, 1369, 1399, 1492, 1599, 1741, 1953, 2208, 2518, 2570, 2348, 2083, 1828, 1624, 1475, 1378, 1311, 1271, 1279, 1331, 1405, 1533, 1681, 1894, 2162, 2384, 2549, 2272, 1984, 1756, 1552, 1396, 1306, 1234, 1212, 1205, 1271, 1334, 1458, 1624, 1833, 2076, 2357, 2539, 2185, 1935, 1672, 1475, 1342, 1234, 1178, 1154, 1158, 1205, 1284, 1405, 1559, 1781, 2009, 2280, 2440, 2162, 1833, 1611, 1421, 1269, 1174, 1131, 1096, 1113, 1158, 1241, 1348, 1507, 1722, 1965, 2305, 2459, 2111, 1807, 1567, 1387, 1244, 1144, 1090, 1064, 1073, 1123, 1198, 1328, 1468, 1681, 1917, 2231, 2357, 2042, 1756, 1518, 1342, 1219, 1119, 1060, 1039, 1041, 1086, 1174, 1290, 1454, 1658, 1911, 2185, 2375, 2022, 1732, 1518, 1325, 1194, 1099, 1038, 1027, 1041, 1073, 1165, 1271, 1421, 1620, 1900, 2155, 2314, 2003, 1713, 1507, 1306, 1180, 1094, 1041, 1029, 1031, 1062, 1152, 1269, 1431, 1616, 1877, 2162, 2366, 1997, 1713, 1496, 1306, 1171, 1090, 1041, 1024, 1029, 1071, 1158, 1266, 1421, 1628, 1877, 2200, 2348, 2003, 1727, 1514, 1331, 1196, 1101, 1048, 1029, 1048, 1092, 1154, 1269, 1441, 1645, 1917, 2239, 2348, 2029, 1746, 1521, 1345, 1215, 1131, 1066, 1051, 1066, 1107, 1182, 1300, 1478, 1676, 1941, 2223, 2357, 2062, 1786, 1559, 1393, 1244, 1165, 1111, 1094, 1099, 1144, 1217, 1325, 1496, 1708, 1984, 2239, 2440, 2104, 1844, 1603, 1421, 1290, 1189, 1144, 1123, 1129, 1180, 1253, 1374, 1544, 1771, 2016, 2288, 2459, 2177, 1877, 1650, 1485, 1339, 1248, 1189, 1174, 1182, 1224, 1308, 1438, 1607, 1812, 2097, 2357, 2549, 2239, 1941, 1722, 1533, 1405, 1320, 1253, 1241, 1246, 1287, 1371, 1482, 1681, 1877, 2147, 2421, 2570, 2314, 2029, 1791, 1607, 1468, 1374, 1336, 1311, 1325, 1354, 1464, 1563, 1746, 1965, 2223, 2529]
| },
| "lsc_samples_blue": {
| "uCoeff": [2351, 2167, 1934, 1737, 1543, 1432, 1357, 1257, 1244, 1253, 1275, 1336, 1450, 1584, 1712, 1934, 2079, 2277, 2103, 1873, 1688, 1492, 1372, 1312, 1253, 1223, 1227, 1257, 1322, 1410, 1537, 1688, 1883, 2128, 2221, 2044, 1798, 1612, 1444, 1336, 1253, 1202, 1160, 1186, 1206, 1275, 1388, 1480, 1642, 1826, 2044, 2167, 2009, 1737, 1550, 1383, 1279, 1194, 1138, 1127, 1134, 1160, 1231, 1327, 1444, 1577, 1754, 2067, 2141, 1934, 1688, 1474, 1336, 1227, 1152, 1120, 1086, 1083, 1138, 1198, 1275, 1404, 1537, 1754, 1934, 2079, 1873, 1627, 1450, 1307, 1194, 1120, 1079, 1048, 1063, 1103, 1167, 1261, 1388, 1524, 1712, 1944, 2055, 1826, 1591, 1421, 1284, 1182, 1106, 1054, 1036, 1042, 1089, 1134, 1235, 1357, 1511, 1688, 1955, 1965, 1798, 1584, 1383, 1270, 1156, 1076, 1048, 1030, 1030, 1083, 1127, 1223, 1341, 1486, 1696, 1944, 1976, 1789, 1563, 1404, 1253, 1156, 1083, 1033, 1024, 1033, 1054, 1120, 1210, 1336, 1486, 1696, 1923, 1965, 1789, 1550, 1404, 1248, 1167, 1073, 1048, 1027, 1024, 1070, 1138, 1223, 1352, 1498, 1696, 1944, 2044, 1798, 1584, 1410, 1289, 1160, 1089, 1048, 1030, 1054, 1076, 1138, 1235, 1372, 1517, 1712, 1955, 2032, 1816, 1591, 1410, 1284, 1198, 1113, 1076, 1060, 1060, 1089, 1152, 1240, 1388, 1530, 1721, 2009, 2079, 1835, 1612, 1432, 1307, 1206, 1138, 1089, 1076, 1079, 1116, 1179, 1275, 1410, 1550, 1789, 2044, 2091, 1883, 1649, 1467, 1336, 1235, 1163, 1134, 1106, 1103, 1152, 1210, 1312, 1432, 1627, 1835, 2044, 2128, 1955, 1696, 1517, 1367, 1307, 1202, 1156, 1145, 1156, 1179, 1248, 1362, 1474, 1649, 1863, 2079, 2193, 1998, 1780, 1584, 1421, 1336, 1253, 1219, 1186, 1206, 1244, 1293, 1394, 1511, 1680, 1976, 2141, 2383, 2103, 1854, 1649, 1474, 1388, 1307, 1270, 1244, 1223, 1312, 1341, 1432, 1570, 1771, 2032, 2221]
| }
| }, {
| "name": "1920x1080_D65_70",
| "resolution": "1920x1080",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2383, 2287, 2070, 1855, 1729, 1555, 1440, 1398, 1399, 1386, 1428, 1513, 1605, 1738, 1934, 2064, 2136, 2329, 2248, 2038, 1820, 1641, 1523, 1423, 1354, 1318, 1327, 1360, 1457, 1509, 1650, 1814, 2034, 2166, 2285, 2147, 1945, 1756, 1574, 1434, 1334, 1272, 1254, 1244, 1298, 1359, 1471, 1605, 1779, 1953, 2130, 2272, 2121, 1880, 1670, 1524, 1375, 1272, 1203, 1173, 1181, 1218, 1296, 1453, 1562, 1699, 1920, 2119, 2272, 2053, 1828, 1636, 1470, 1319, 1220, 1142, 1116, 1128, 1173, 1265, 1369, 1512, 1665, 1876, 2065, 2235, 2024, 1776, 1580, 1418, 1277, 1187, 1110, 1091, 1087, 1138, 1213, 1324, 1470, 1638, 1832, 2035, 2212, 1981, 1800, 1554, 1380, 1241, 1135, 1074, 1054, 1060, 1116, 1197, 1306, 1454, 1603, 1779, 2030, 2249, 1949, 1720, 1536, 1359, 1215, 1128, 1064, 1024, 1037, 1095, 1169, 1292, 1450, 1629, 1782, 1973, 2130, 1927, 1712, 1536, 1349, 1220, 1128, 1054, 1030, 1030, 1073, 1157, 1278, 1433, 1599, 1774, 1986, 2186, 1916, 1702, 1536, 1365, 1206, 1113, 1054, 1030, 1040, 1070, 1181, 1277, 1432, 1605, 1773, 2009, 2167, 1946, 1726, 1547, 1347, 1228, 1128, 1064, 1040, 1054, 1105, 1197, 1306, 1436, 1611, 1798, 1993, 2174, 1951, 1721, 1573, 1389, 1253, 1162, 1091, 1067, 1063, 1119, 1209, 1305, 1458, 1615, 1803, 2023, 2162, 1955, 1769, 1590, 1433, 1270, 1185, 1120, 1101, 1105, 1149, 1243, 1337, 1492, 1649, 1845, 2065, 2224, 2028, 1789, 1613, 1453, 1307, 1231, 1165, 1134, 1145, 1196, 1272, 1376, 1540, 1699, 1888, 2038, 2236, 2064, 1858, 1668, 1503, 1376, 1269, 1226, 1196, 1204, 1242, 1322, 1429, 1568, 1715, 1930, 2189, 2311, 2128, 1918, 1717, 1550, 1457, 1323, 1272, 1269, 1258, 1308, 1393, 1496, 1626, 1804, 2008, 2151, 2346, 2207, 1981, 1766, 1629, 1500, 1404, 1321, 1322, 1317, 1359, 1438, 1576, 1695, 1858, 2050, 2260]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2232, 2093, 1964, 1804, 1658, 1537, 1439, 1412, 1350, 1380, 1417, 1475, 1548, 1668, 1818, 1961, 2078, 2166, 2060, 1894, 1730, 1569, 1457, 1368, 1306, 1289, 1293, 1332, 1393, 1471, 1623, 1750, 1886, 2017, 2143, 1998, 1854, 1645, 1509, 1390, 1299, 1238, 1216, 1227, 1274, 1339, 1421, 1555, 1711, 1841, 1997, 2131, 1981, 1778, 1601, 1436, 1329, 1244, 1180, 1174, 1176, 1223, 1282, 1385, 1498, 1655, 1837, 1943, 2101, 1949, 1729, 1553, 1398, 1276, 1204, 1140, 1120, 1120, 1161, 1253, 1338, 1464, 1621, 1790, 1962, 2077, 1905, 1699, 1522, 1357, 1253, 1153, 1102, 1075, 1094, 1142, 1200, 1304, 1445, 1595, 1758, 1906, 2056, 1855, 1656, 1480, 1332, 1207, 1116, 1076, 1053, 1058, 1105, 1185, 1270, 1402, 1576, 1744, 1906, 2040, 1826, 1645, 1469, 1314, 1193, 1107, 1048, 1037, 1043, 1083, 1159, 1266, 1388, 1548, 1719, 1904, 2028, 1811, 1622, 1446, 1296, 1176, 1106, 1046, 1027, 1043, 1075, 1156, 1247, 1386, 1549, 1734, 1911, 1994, 1831, 1637, 1446, 1298, 1188, 1104, 1051, 1024, 1048, 1081, 1169, 1249, 1394, 1548, 1733, 1921, 2062, 1838, 1626, 1438, 1297, 1187, 1105, 1064, 1036, 1051, 1099, 1177, 1277, 1411, 1561, 1739, 1947, 2055, 1828, 1639, 1468, 1324, 1216, 1125, 1086, 1065, 1079, 1114, 1196, 1295, 1414, 1572, 1748, 1965, 2019, 1836, 1667, 1500, 1349, 1239, 1169, 1101, 1088, 1108, 1145, 1216, 1311, 1451, 1617, 1776, 1932, 2081, 1892, 1694, 1530, 1390, 1273, 1191, 1147, 1129, 1149, 1184, 1253, 1356, 1489, 1639, 1816, 2006, 2092, 1919, 1748, 1581, 1433, 1318, 1250, 1199, 1174, 1186, 1226, 1294, 1380, 1530, 1693, 1846, 1990, 2106, 1968, 1769, 1607, 1484, 1369, 1303, 1256, 1231, 1241, 1285, 1356, 1439, 1565, 1736, 1892, 1991, 2092, 2012, 1856, 1690, 1537, 1433, 1384, 1311, 1284, 1306, 1353, 1389, 1520, 1615, 1774, 1931, 1990]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2208, 2107, 1969, 1756, 1601, 1515, 1397, 1364, 1323, 1341, 1365, 1441, 1522, 1623, 1766, 1918, 2070, 2136, 2044, 1886, 1709, 1554, 1434, 1352, 1293, 1256, 1263, 1308, 1370, 1474, 1584, 1732, 1901, 2002, 2143, 2003, 1819, 1658, 1498, 1367, 1290, 1224, 1204, 1196, 1257, 1310, 1414, 1544, 1694, 1849, 2002, 2154, 1948, 1789, 1593, 1435, 1322, 1224, 1173, 1150, 1153, 1197, 1267, 1371, 1494, 1660, 1808, 1961, 2094, 1941, 1712, 1545, 1390, 1256, 1169, 1129, 1095, 1111, 1153, 1229, 1322, 1453, 1617, 1782, 1992, 2119, 1908, 1695, 1511, 1361, 1234, 1141, 1089, 1064, 1072, 1120, 1190, 1306, 1422, 1587, 1750, 1945, 2048, 1857, 1656, 1470, 1321, 1211, 1117, 1060, 1039, 1041, 1085, 1168, 1273, 1412, 1571, 1750, 1916, 2066, 1844, 1637, 1471, 1306, 1188, 1098, 1038, 1027, 1041, 1072, 1160, 1256, 1383, 1540, 1744, 1896, 2020, 1829, 1622, 1462, 1289, 1175, 1093, 1041, 1029, 1031, 1061, 1148, 1254, 1393, 1538, 1726, 1903, 2059, 1823, 1621, 1451, 1289, 1166, 1089, 1041, 1024, 1029, 1070, 1153, 1251, 1383, 1547, 1725, 1931, 2041, 1825, 1631, 1466, 1311, 1189, 1099, 1048, 1029, 1048, 1091, 1149, 1253, 1400, 1560, 1755, 1957, 2034, 1841, 1643, 1469, 1322, 1206, 1128, 1065, 1051, 1065, 1105, 1175, 1280, 1431, 1583, 1770, 1939, 2031, 1860, 1672, 1499, 1364, 1232, 1160, 1109, 1093, 1097, 1140, 1207, 1301, 1443, 1605, 1797, 1942, 2080, 1884, 1713, 1533, 1385, 1273, 1182, 1140, 1120, 1125, 1173, 1238, 1343, 1481, 1652, 1814, 1967, 2077, 1928, 1730, 1566, 1438, 1315, 1235, 1181, 1167, 1175, 1212, 1286, 1396, 1529, 1677, 1866, 2002, 2121, 1960, 1771, 1619, 1474, 1370, 1298, 1239, 1228, 1232, 1268, 1339, 1429, 1584, 1719, 1889, 2029, 2106, 1998, 1826, 1665, 1529, 1420, 1342, 1311, 1289, 1301, 1324, 1416, 1491, 1627, 1775, 1929, 2078]
| },
| "lsc_samples_blue": {
| "uCoeff": [1953, 1887, 1750, 1620, 1474, 1388, 1327, 1238, 1227, 1235, 1252, 1302, 1393, 1492, 1573, 1711, 1763, 1925, 1856, 1715, 1590, 1437, 1340, 1291, 1239, 1211, 1214, 1240, 1295, 1365, 1461, 1565, 1686, 1818, 1902, 1824, 1665, 1533, 1401, 1312, 1240, 1194, 1154, 1178, 1195, 1256, 1351, 1419, 1536, 1653, 1772, 1876, 1808, 1623, 1486, 1351, 1263, 1186, 1134, 1124, 1130, 1154, 1218, 1300, 1393, 1489, 1605, 1802, 1868, 1757, 1588, 1424, 1311, 1216, 1148, 1118, 1085, 1082, 1134, 1189, 1255, 1362, 1460, 1612, 1711, 1829, 1714, 1541, 1406, 1287, 1186, 1117, 1078, 1048, 1062, 1101, 1161, 1244, 1350, 1453, 1583, 1726, 1816, 1680, 1513, 1382, 1267, 1176, 1104, 1054, 1036, 1042, 1088, 1130, 1221, 1324, 1444, 1567, 1739, 1750, 1660, 1509, 1349, 1255, 1151, 1075, 1048, 1030, 1030, 1082, 1123, 1211, 1311, 1424, 1576, 1734, 1759, 1653, 1492, 1368, 1239, 1151, 1082, 1033, 1024, 1033, 1054, 1117, 1199, 1307, 1425, 1577, 1718, 1750, 1653, 1480, 1368, 1234, 1162, 1072, 1048, 1027, 1024, 1069, 1134, 1211, 1321, 1435, 1576, 1734, 1807, 1657, 1507, 1372, 1272, 1155, 1088, 1048, 1030, 1054, 1075, 1134, 1221, 1338, 1449, 1587, 1739, 1793, 1668, 1510, 1370, 1266, 1190, 1111, 1075, 1060, 1059, 1087, 1146, 1225, 1350, 1458, 1591, 1775, 1821, 1677, 1524, 1386, 1285, 1196, 1134, 1087, 1075, 1078, 1113, 1171, 1255, 1367, 1471, 1640, 1794, 1820, 1708, 1549, 1413, 1308, 1221, 1157, 1130, 1104, 1100, 1146, 1198, 1286, 1382, 1531, 1670, 1785, 1834, 1754, 1581, 1451, 1332, 1285, 1192, 1150, 1140, 1150, 1170, 1231, 1327, 1414, 1542, 1682, 1798, 1865, 1775, 1640, 1501, 1375, 1307, 1236, 1207, 1176, 1195, 1228, 1268, 1351, 1439, 1558, 1758, 1827, 1975, 1838, 1687, 1546, 1414, 1348, 1281, 1250, 1227, 1207, 1286, 1307, 1378, 1480, 1620, 1785, 1862]
| }
| }, {
| "name": "1920x1080_D75_100",
| "resolution": "1920x1080",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2811, 2555, 2248, 1995, 1756, 1597, 1472, 1375, 1410, 1364, 1398, 1485, 1628, 1774, 2031, 2278, 2575, 2656, 2409, 2148, 1905, 1702, 1525, 1416, 1348, 1306, 1332, 1364, 1453, 1546, 1702, 1905, 2190, 2462, 2555, 2342, 2043, 1784, 1620, 1465, 1332, 1272, 1239, 1253, 1296, 1375, 1505, 1628, 1842, 2094, 2358, 2575, 2248, 1972, 1729, 1532, 1370, 1257, 1191, 1162, 1182, 1230, 1311, 1434, 1582, 1765, 2043, 2310, 2498, 2190, 1863, 1685, 1459, 1327, 1212, 1154, 1123, 1123, 1174, 1257, 1381, 1525, 1711, 1960, 2294, 2555, 2148, 1832, 1613, 1428, 1272, 1178, 1119, 1083, 1097, 1127, 1212, 1348, 1491, 1652, 1926, 2263, 2426, 2069, 1812, 1568, 1375, 1239, 1134, 1080, 1056, 1070, 1108, 1182, 1296, 1465, 1652, 1883, 2190, 2409, 2031, 1793, 1546, 1359, 1216, 1131, 1059, 1030, 1046, 1090, 1158, 1291, 1453, 1628, 1812, 2148, 2392, 2019, 1747, 1546, 1348, 1208, 1101, 1056, 1024, 1024, 1073, 1158, 1272, 1428, 1613, 1852, 2148, 2358, 2019, 1738, 1532, 1364, 1208, 1123, 1053, 1037, 1037, 1070, 1174, 1291, 1428, 1613, 1852, 2175, 2342, 2081, 1774, 1568, 1375, 1234, 1127, 1076, 1037, 1053, 1097, 1162, 1301, 1440, 1613, 1852, 2190, 2392, 2069, 1803, 1546, 1393, 1239, 1146, 1097, 1076, 1073, 1127, 1199, 1311, 1465, 1652, 1894, 2190, 2444, 2094, 1852, 1613, 1422, 1272, 1166, 1131, 1097, 1087, 1138, 1221, 1348, 1498, 1720, 1960, 2218, 2498, 2148, 1905, 1652, 1453, 1322, 1225, 1166, 1150, 1154, 1178, 1267, 1393, 1539, 1756, 2007, 2326, 2615, 2248, 1938, 1711, 1525, 1381, 1281, 1212, 1191, 1203, 1248, 1327, 1428, 1605, 1812, 2069, 2375, 2677, 2294, 1960, 1765, 1590, 1453, 1343, 1276, 1257, 1262, 1311, 1387, 1505, 1711, 1883, 2148, 2426, 2743, 2358, 2081, 1852, 1644, 1518, 1381, 1348, 1316, 1332, 1375, 1485, 1560, 1720, 1949, 2218, 2498]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2764, 2466, 2162, 1964, 1738, 1574, 1454, 1396, 1373, 1387, 1396, 1530, 1608, 1743, 1953, 2227, 2387, 2552, 2337, 2061, 1824, 1628, 1486, 1367, 1318, 1298, 1290, 1337, 1419, 1537, 1673, 1876, 2134, 2361, 2494, 2242, 1982, 1729, 1548, 1401, 1303, 1249, 1228, 1215, 1273, 1334, 1454, 1600, 1785, 2036, 2288, 2439, 2162, 1908, 1660, 1473, 1323, 1235, 1176, 1156, 1158, 1212, 1285, 1390, 1548, 1734, 1964, 2242, 2387, 2134, 1824, 1604, 1407, 1278, 1182, 1128, 1108, 1121, 1162, 1240, 1350, 1499, 1690, 1947, 2212, 2378, 2074, 1766, 1548, 1367, 1249, 1146, 1100, 1075, 1074, 1124, 1199, 1300, 1454, 1660, 1913, 2141, 2328, 1994, 1738, 1523, 1331, 1215, 1109, 1062, 1047, 1050, 1089, 1170, 1275, 1422, 1628, 1839, 2121, 2273, 1976, 1707, 1476, 1303, 1187, 1098, 1043, 1027, 1043, 1075, 1150, 1251, 1425, 1616, 1839, 2127, 2288, 1953, 1694, 1463, 1300, 1172, 1084, 1038, 1026, 1027, 1068, 1148, 1254, 1407, 1620, 1839, 2148, 2281, 1964, 1698, 1466, 1303, 1184, 1097, 1040, 1024, 1040, 1072, 1148, 1254, 1407, 1604, 1860, 2162, 2288, 1947, 1703, 1486, 1305, 1193, 1106, 1057, 1035, 1045, 1081, 1156, 1263, 1413, 1616, 1855, 2134, 2257, 2000, 1729, 1516, 1345, 1215, 1121, 1070, 1052, 1063, 1108, 1176, 1300, 1450, 1632, 1913, 2141, 2378, 2036, 1771, 1530, 1364, 1235, 1158, 1108, 1089, 1097, 1134, 1212, 1310, 1479, 1660, 1924, 2169, 2387, 2061, 1795, 1596, 1410, 1290, 1199, 1142, 1121, 1128, 1176, 1256, 1367, 1520, 1743, 1994, 2235, 2404, 2127, 1844, 1640, 1454, 1342, 1237, 1199, 1170, 1187, 1230, 1288, 1432, 1574, 1790, 2018, 2250, 2457, 2205, 1924, 1720, 1523, 1384, 1313, 1249, 1233, 1240, 1288, 1373, 1473, 1632, 1860, 2114, 2404, 2476, 2265, 2000, 1780, 1589, 1466, 1384, 1337, 1290, 1321, 1367, 1407, 1548, 1757, 1924, 2169, 2387]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2556, 2426, 2168, 1909, 1727, 1604, 1461, 1414, 1377, 1377, 1420, 1500, 1588, 1787, 1953, 2189, 2409, 2595, 2342, 2107, 1841, 1639, 1473, 1397, 1310, 1299, 1294, 1341, 1433, 1524, 1688, 1893, 2133, 2375, 2565, 2278, 1994, 1741, 1552, 1403, 1312, 1237, 1217, 1235, 1280, 1349, 1454, 1615, 1811, 2081, 2350, 2453, 2189, 1920, 1676, 1493, 1341, 1239, 1185, 1158, 1158, 1226, 1277, 1411, 1563, 1754, 1994, 2286, 2435, 2120, 1867, 1604, 1420, 1289, 1193, 1123, 1118, 1123, 1166, 1249, 1357, 1496, 1710, 1971, 2203, 2375, 2081, 1806, 1574, 1385, 1251, 1154, 1103, 1078, 1085, 1131, 1210, 1323, 1461, 1680, 1942, 2203, 2400, 2043, 1782, 1527, 1363, 1217, 1135, 1073, 1055, 1058, 1096, 1177, 1285, 1454, 1647, 1893, 2147, 2358, 2018, 1736, 1517, 1338, 1204, 1099, 1055, 1032, 1048, 1089, 1164, 1282, 1433, 1635, 1882, 2175, 2318, 1988, 1732, 1490, 1325, 1195, 1105, 1050, 1035, 1037, 1075, 1158, 1260, 1423, 1627, 1872, 2161, 2270, 1994, 1718, 1496, 1312, 1189, 1107, 1050, 1024, 1048, 1080, 1160, 1275, 1423, 1631, 1877, 2182, 2375, 2024, 1750, 1500, 1325, 1204, 1118, 1066, 1045, 1050, 1094, 1181, 1285, 1442, 1639, 1893, 2182, 2366, 2036, 1741, 1527, 1349, 1226, 1123, 1085, 1066, 1071, 1116, 1197, 1315, 1470, 1688, 1931, 2196, 2375, 2068, 1797, 1563, 1397, 1256, 1162, 1110, 1087, 1103, 1139, 1224, 1346, 1493, 1705, 1953, 2233, 2400, 2107, 1846, 1600, 1423, 1299, 1202, 1152, 1135, 1144, 1187, 1265, 1377, 1552, 1750, 2030, 2294, 2471, 2175, 1898, 1688, 1483, 1357, 1256, 1204, 1174, 1195, 1226, 1305, 1426, 1604, 1801, 2100, 2334, 2471, 2233, 1959, 1714, 1555, 1411, 1323, 1256, 1244, 1260, 1294, 1380, 1503, 1667, 1888, 2127, 2409, 2546, 2334, 2018, 1801, 1615, 1467, 1400, 1328, 1297, 1341, 1368, 1454, 1574, 1718, 1931, 2196, 2375]
| },
| "lsc_samples_blue": {
| "uCoeff": [2337, 2163, 1947, 1762, 1554, 1424, 1335, 1310, 1277, 1257, 1281, 1362, 1475, 1542, 1710, 1893, 2175, 2297, 2152, 1901, 1710, 1531, 1404, 1327, 1269, 1250, 1246, 1273, 1340, 1409, 1525, 1703, 1910, 2186, 2234, 2075, 1817, 1615, 1465, 1327, 1261, 1213, 1178, 1178, 1216, 1289, 1390, 1492, 1635, 1858, 2065, 2152, 1994, 1732, 1560, 1400, 1297, 1205, 1171, 1141, 1145, 1181, 1242, 1314, 1434, 1590, 1769, 1994, 2186, 1919, 1703, 1508, 1349, 1250, 1171, 1123, 1110, 1119, 1145, 1205, 1297, 1395, 1560, 1762, 1937, 2075, 1867, 1655, 1465, 1322, 1220, 1145, 1095, 1070, 1090, 1119, 1174, 1257, 1395, 1525, 1732, 1910, 2044, 1850, 1597, 1449, 1297, 1202, 1116, 1070, 1053, 1053, 1075, 1154, 1250, 1376, 1497, 1703, 1901, 2004, 1793, 1603, 1429, 1277, 1174, 1098, 1064, 1024, 1048, 1087, 1141, 1238, 1327, 1503, 1703, 1937, 2004, 1785, 1590, 1419, 1269, 1167, 1095, 1050, 1040, 1034, 1070, 1145, 1227, 1344, 1503, 1710, 1947, 1994, 1817, 1578, 1409, 1257, 1178, 1092, 1061, 1032, 1042, 1084, 1148, 1235, 1353, 1519, 1725, 1937, 2044, 1785, 1590, 1409, 1277, 1178, 1104, 1067, 1040, 1050, 1090, 1161, 1250, 1371, 1519, 1703, 1947, 2075, 1833, 1597, 1449, 1310, 1195, 1119, 1078, 1061, 1067, 1101, 1171, 1257, 1376, 1536, 1717, 1975, 2044, 1893, 1622, 1470, 1327, 1227, 1145, 1104, 1090, 1098, 1132, 1191, 1285, 1395, 1578, 1769, 1994, 2097, 1901, 1661, 1481, 1340, 1257, 1181, 1135, 1119, 1132, 1154, 1216, 1322, 1460, 1609, 1817, 2044, 2175, 1947, 1717, 1525, 1400, 1297, 1223, 1184, 1158, 1167, 1202, 1261, 1367, 1481, 1641, 1867, 2075, 2198, 2004, 1769, 1590, 1439, 1344, 1269, 1231, 1205, 1209, 1242, 1314, 1409, 1525, 1710, 1937, 2141, 2377, 2152, 1867, 1615, 1525, 1371, 1310, 1269, 1261, 1265, 1289, 1385, 1465, 1554, 1785, 2004, 2186]
| }
| }, {
| "name": "1920x1080_D75_70",
| "resolution": "1920x1080",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2275, 2179, 2001, 1835, 1658, 1535, 1431, 1347, 1381, 1337, 1364, 1435, 1547, 1651, 1828, 1970, 2110, 2198, 2091, 1939, 1774, 1623, 1479, 1387, 1328, 1289, 1313, 1339, 1414, 1485, 1602, 1741, 1923, 2058, 2147, 2058, 1868, 1682, 1559, 1431, 1314, 1260, 1230, 1242, 1280, 1348, 1456, 1547, 1701, 1863, 2003, 2181, 1998, 1820, 1643, 1486, 1348, 1246, 1185, 1158, 1177, 1221, 1293, 1397, 1514, 1647, 1835, 1983, 2137, 1963, 1737, 1611, 1425, 1311, 1205, 1151, 1121, 1121, 1169, 1245, 1353, 1469, 1608, 1778, 1983, 2192, 1938, 1717, 1552, 1399, 1261, 1174, 1118, 1082, 1096, 1124, 1204, 1325, 1443, 1563, 1757, 1969, 2101, 1879, 1704, 1515, 1352, 1231, 1132, 1080, 1056, 1070, 1106, 1176, 1278, 1422, 1566, 1727, 1920, 2092, 1851, 1690, 1497, 1338, 1209, 1129, 1059, 1030, 1046, 1089, 1153, 1274, 1412, 1547, 1671, 1891, 2081, 1843, 1651, 1497, 1328, 1202, 1100, 1056, 1024, 1024, 1072, 1153, 1257, 1390, 1535, 1705, 1892, 2053, 1842, 1643, 1484, 1343, 1201, 1121, 1053, 1037, 1037, 1069, 1169, 1274, 1390, 1534, 1704, 1912, 2036, 1889, 1671, 1515, 1352, 1226, 1125, 1076, 1037, 1053, 1096, 1157, 1283, 1399, 1532, 1702, 1920, 2067, 1874, 1692, 1492, 1367, 1229, 1143, 1096, 1075, 1072, 1124, 1191, 1291, 1419, 1563, 1731, 1913, 2097, 1886, 1728, 1547, 1390, 1259, 1161, 1129, 1096, 1086, 1134, 1210, 1322, 1445, 1616, 1778, 1926, 2123, 1919, 1764, 1576, 1415, 1303, 1216, 1161, 1146, 1150, 1171, 1251, 1360, 1476, 1639, 1807, 1995, 2191, 1984, 1781, 1619, 1474, 1354, 1266, 1203, 1184, 1195, 1235, 1304, 1387, 1527, 1677, 1844, 2015, 2213, 2003, 1786, 1655, 1524, 1414, 1320, 1260, 1243, 1247, 1290, 1354, 1449, 1609, 1723, 1890, 2032, 2227, 2031, 1868, 1716, 1561, 1464, 1349, 1322, 1294, 1307, 1343, 1435, 1489, 1606, 1762, 1925, 2056]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2242, 2112, 1932, 1809, 1643, 1514, 1415, 1366, 1346, 1358, 1362, 1475, 1530, 1625, 1766, 1932, 1978, 2123, 2036, 1868, 1705, 1558, 1444, 1342, 1300, 1282, 1273, 1314, 1383, 1477, 1577, 1718, 1879, 1986, 2103, 1979, 1817, 1635, 1495, 1372, 1287, 1238, 1219, 1206, 1258, 1310, 1410, 1523, 1654, 1818, 1951, 2079, 1930, 1767, 1583, 1433, 1304, 1225, 1171, 1152, 1153, 1203, 1268, 1357, 1484, 1620, 1772, 1932, 2054, 1918, 1704, 1539, 1377, 1264, 1177, 1126, 1106, 1119, 1157, 1228, 1324, 1446, 1590, 1768, 1921, 2057, 1878, 1660, 1494, 1343, 1239, 1143, 1099, 1074, 1073, 1121, 1191, 1280, 1409, 1569, 1747, 1876, 2026, 1818, 1640, 1474, 1311, 1207, 1107, 1062, 1047, 1050, 1088, 1164, 1259, 1383, 1545, 1691, 1867, 1987, 1806, 1616, 1433, 1286, 1181, 1097, 1043, 1027, 1043, 1074, 1146, 1237, 1387, 1537, 1694, 1875, 2000, 1788, 1605, 1422, 1283, 1167, 1083, 1038, 1026, 1027, 1067, 1144, 1240, 1371, 1541, 1695, 1892, 1993, 1796, 1608, 1424, 1286, 1178, 1096, 1040, 1024, 1040, 1071, 1144, 1240, 1371, 1527, 1711, 1902, 1995, 1779, 1610, 1441, 1287, 1186, 1104, 1057, 1035, 1045, 1080, 1151, 1247, 1375, 1535, 1704, 1877, 1965, 1818, 1629, 1465, 1322, 1206, 1118, 1069, 1052, 1062, 1106, 1169, 1280, 1406, 1545, 1747, 1876, 2047, 1839, 1659, 1474, 1337, 1224, 1153, 1106, 1088, 1095, 1130, 1202, 1287, 1428, 1565, 1749, 1889, 2040, 1850, 1672, 1526, 1375, 1273, 1191, 1138, 1118, 1124, 1169, 1241, 1336, 1460, 1628, 1796, 1927, 2037, 1889, 1703, 1558, 1410, 1318, 1225, 1191, 1164, 1179, 1218, 1268, 1390, 1500, 1658, 1804, 1924, 2055, 1934, 1757, 1617, 1465, 1351, 1292, 1235, 1221, 1226, 1269, 1341, 1421, 1542, 1705, 1864, 2017, 2040, 1961, 1803, 1656, 1514, 1418, 1351, 1312, 1270, 1297, 1336, 1365, 1478, 1636, 1742, 1888, 1978]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2096, 2082, 1937, 1763, 1633, 1541, 1421, 1383, 1350, 1349, 1384, 1448, 1513, 1662, 1766, 1903, 1994, 2154, 2040, 1906, 1720, 1567, 1432, 1370, 1292, 1283, 1277, 1318, 1395, 1466, 1590, 1732, 1879, 1996, 2155, 2008, 1827, 1645, 1498, 1374, 1295, 1227, 1209, 1225, 1265, 1324, 1410, 1536, 1676, 1853, 1997, 2090, 1951, 1777, 1597, 1451, 1321, 1229, 1180, 1154, 1153, 1217, 1261, 1376, 1497, 1637, 1796, 1965, 2090, 1907, 1740, 1539, 1389, 1275, 1187, 1121, 1116, 1121, 1161, 1237, 1331, 1443, 1607, 1787, 1915, 2055, 1883, 1695, 1517, 1359, 1241, 1151, 1102, 1077, 1084, 1128, 1202, 1302, 1416, 1587, 1770, 1923, 2081, 1858, 1678, 1478, 1341, 1209, 1133, 1073, 1055, 1058, 1095, 1171, 1268, 1412, 1562, 1735, 1887, 2053, 1841, 1641, 1470, 1319, 1198, 1098, 1055, 1032, 1048, 1088, 1159, 1266, 1394, 1553, 1729, 1912, 2023, 1817, 1638, 1446, 1307, 1189, 1104, 1050, 1035, 1037, 1074, 1153, 1246, 1386, 1547, 1722, 1902, 1985, 1821, 1625, 1451, 1294, 1183, 1106, 1050, 1024, 1048, 1079, 1155, 1259, 1385, 1550, 1725, 1917, 2062, 1842, 1651, 1453, 1305, 1197, 1116, 1066, 1045, 1050, 1093, 1175, 1268, 1401, 1555, 1735, 1913, 2048, 1847, 1639, 1475, 1326, 1217, 1120, 1084, 1066, 1070, 1114, 1189, 1294, 1424, 1593, 1761, 1918, 2044, 1865, 1681, 1503, 1367, 1244, 1157, 1108, 1086, 1101, 1135, 1213, 1320, 1441, 1603, 1772, 1937, 2050, 1886, 1715, 1530, 1387, 1281, 1194, 1148, 1132, 1140, 1180, 1250, 1345, 1488, 1634, 1825, 1971, 2086, 1927, 1748, 1599, 1436, 1331, 1242, 1195, 1167, 1187, 1214, 1283, 1385, 1526, 1668, 1868, 1985, 2065, 1956, 1785, 1612, 1493, 1376, 1301, 1241, 1231, 1245, 1274, 1347, 1447, 1572, 1728, 1874, 2020, 2089, 2013, 1817, 1673, 1536, 1419, 1366, 1304, 1276, 1316, 1337, 1407, 1501, 1604, 1748, 1909, 1970]
| },
| "lsc_samples_blue": {
| "uCoeff": [1943, 1884, 1761, 1641, 1483, 1381, 1307, 1287, 1258, 1238, 1258, 1325, 1415, 1457, 1572, 1680, 1830, 1940, 1893, 1738, 1608, 1472, 1369, 1305, 1254, 1237, 1232, 1255, 1311, 1364, 1451, 1577, 1707, 1860, 1912, 1848, 1681, 1536, 1420, 1304, 1247, 1204, 1171, 1171, 1205, 1269, 1353, 1429, 1530, 1678, 1788, 1865, 1796, 1619, 1495, 1366, 1280, 1197, 1166, 1137, 1141, 1174, 1228, 1288, 1384, 1500, 1617, 1747, 1902, 1745, 1601, 1454, 1323, 1238, 1166, 1121, 1108, 1117, 1141, 1195, 1275, 1354, 1480, 1619, 1714, 1826, 1709, 1565, 1419, 1301, 1211, 1142, 1094, 1069, 1089, 1116, 1167, 1240, 1357, 1454, 1600, 1700, 1807, 1700, 1519, 1407, 1279, 1195, 1114, 1070, 1053, 1053, 1074, 1149, 1235, 1341, 1432, 1580, 1698, 1780, 1656, 1526, 1391, 1261, 1169, 1097, 1064, 1024, 1048, 1086, 1137, 1225, 1298, 1439, 1582, 1728, 1781, 1650, 1515, 1382, 1254, 1162, 1094, 1050, 1040, 1034, 1069, 1141, 1215, 1314, 1440, 1588, 1737, 1772, 1676, 1504, 1373, 1243, 1173, 1091, 1061, 1032, 1042, 1083, 1144, 1222, 1322, 1453, 1600, 1728, 1807, 1647, 1512, 1371, 1260, 1172, 1102, 1067, 1040, 1050, 1089, 1156, 1235, 1337, 1451, 1580, 1733, 1826, 1682, 1515, 1405, 1290, 1187, 1116, 1077, 1061, 1066, 1099, 1164, 1240, 1339, 1463, 1587, 1749, 1794, 1724, 1532, 1420, 1303, 1216, 1141, 1102, 1089, 1096, 1128, 1182, 1264, 1354, 1495, 1624, 1757, 1824, 1722, 1559, 1425, 1312, 1242, 1174, 1131, 1116, 1128, 1148, 1204, 1295, 1407, 1515, 1655, 1785, 1869, 1748, 1598, 1458, 1362, 1276, 1211, 1176, 1152, 1160, 1192, 1243, 1332, 1420, 1535, 1685, 1795, 1868, 1779, 1631, 1506, 1391, 1315, 1251, 1218, 1194, 1197, 1226, 1287, 1364, 1451, 1583, 1728, 1827, 1971, 1875, 1697, 1518, 1458, 1333, 1284, 1249, 1243, 1246, 1265, 1346, 1406, 1467, 1631, 1764, 1837]
| }
| }, {
| "name": "1920x1080_HZ_100",
| "resolution": "1920x1080",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2989, 2749, 2453, 2172, 1901, 1715, 1587, 1504, 1471, 1468, 1527, 1629, 1773, 2001, 2259, 2563, 2852, 2963, 2684, 2376, 2061, 1810, 1614, 1490, 1396, 1357, 1371, 1428, 1520, 1677, 1875, 2145, 2436, 2794, 2925, 2593, 2222, 1949, 1698, 1510, 1379, 1308, 1269, 1286, 1334, 1437, 1573, 1773, 2049, 2360, 2705, 2828, 2480, 2132, 1854, 1617, 1434, 1301, 1224, 1209, 1200, 1262, 1366, 1507, 1706, 1949, 2266, 2622, 2749, 2401, 2049, 1782, 1541, 1366, 1237, 1165, 1140, 1138, 1194, 1288, 1443, 1641, 1895, 2193, 2535, 2749, 2336, 1989, 1710, 1465, 1301, 1188, 1112, 1089, 1096, 1154, 1246, 1388, 1584, 1815, 2145, 2489, 2663, 2281, 1944, 1661, 1422, 1260, 1148, 1077, 1046, 1064, 1120, 1209, 1344, 1548, 1782, 2112, 2480, 2653, 2259, 1890, 1617, 1408, 1237, 1131, 1061, 1032, 1043, 1089, 1186, 1326, 1520, 1782, 2086, 2410, 2612, 2215, 1901, 1610, 1390, 1222, 1110, 1046, 1026, 1029, 1081, 1173, 1308, 1497, 1754, 2061, 2453, 2583, 2208, 1885, 1606, 1385, 1226, 1118, 1044, 1024, 1036, 1081, 1177, 1321, 1510, 1745, 2080, 2418, 2602, 2251, 1890, 1606, 1408, 1246, 1133, 1064, 1040, 1046, 1096, 1181, 1323, 1531, 1782, 2093, 2480, 2663, 2266, 1933, 1645, 1431, 1272, 1154, 1091, 1062, 1076, 1127, 1224, 1352, 1551, 1801, 2125, 2498, 2716, 2312, 1961, 1685, 1471, 1308, 1194, 1125, 1096, 1112, 1163, 1260, 1399, 1595, 1854, 2172, 2535, 2749, 2376, 2019, 1745, 1514, 1366, 1251, 1173, 1146, 1163, 1213, 1311, 1453, 1657, 1911, 2251, 2593, 2805, 2436, 2086, 1815, 1580, 1434, 1311, 1242, 1200, 1222, 1274, 1382, 1520, 1728, 1989, 2328, 2643, 2817, 2535, 2193, 1901, 1673, 1510, 1379, 1318, 1286, 1298, 1347, 1443, 1599, 1815, 2093, 2418, 2716, 2900, 2602, 2320, 2001, 1763, 1591, 1490, 1402, 1374, 1402, 1446, 1541, 1702, 1906, 2166, 2535, 2888]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2672, 2456, 2198, 1969, 1768, 1613, 1505, 1437, 1403, 1450, 1468, 1535, 1652, 1789, 2022, 2263, 2517, 2559, 2333, 2099, 1849, 1661, 1520, 1410, 1335, 1327, 1344, 1378, 1437, 1563, 1703, 1919, 2151, 2397, 2615, 2255, 1963, 1753, 1583, 1417, 1318, 1268, 1245, 1253, 1293, 1366, 1475, 1626, 1832, 2070, 2333, 2456, 2182, 1901, 1661, 1486, 1353, 1247, 1189, 1173, 1182, 1222, 1298, 1400, 1563, 1753, 1982, 2238, 2426, 2099, 1816, 1600, 1417, 1282, 1196, 1140, 1119, 1121, 1166, 1242, 1353, 1512, 1694, 1919, 2213, 2342, 2035, 1773, 1547, 1372, 1245, 1153, 1094, 1067, 1083, 1127, 1205, 1309, 1457, 1661, 1883, 2166, 2306, 1975, 1723, 1508, 1335, 1208, 1121, 1069, 1042, 1051, 1096, 1173, 1284, 1427, 1621, 1866, 2174, 2263, 1963, 1694, 1482, 1318, 1182, 1088, 1045, 1029, 1034, 1073, 1153, 1258, 1423, 1600, 1832, 2099, 2272, 1931, 1684, 1482, 1298, 1179, 1090, 1038, 1024, 1029, 1064, 1142, 1253, 1400, 1591, 1832, 2113, 2280, 1925, 1694, 1472, 1301, 1184, 1096, 1047, 1024, 1026, 1067, 1146, 1250, 1397, 1591, 1832, 2121, 2272, 1950, 1694, 1482, 1318, 1186, 1106, 1052, 1034, 1038, 1088, 1161, 1268, 1420, 1608, 1860, 2158, 2263, 1975, 1713, 1516, 1338, 1215, 1127, 1084, 1056, 1067, 1112, 1186, 1295, 1447, 1634, 1883, 2166, 2315, 2035, 1753, 1551, 1378, 1237, 1168, 1110, 1088, 1100, 1142, 1230, 1324, 1479, 1680, 1919, 2213, 2397, 2056, 1789, 1575, 1420, 1298, 1198, 1155, 1135, 1133, 1186, 1255, 1372, 1531, 1723, 1963, 2238, 2456, 2113, 1877, 1657, 1486, 1359, 1276, 1215, 1186, 1203, 1240, 1315, 1450, 1600, 1799, 2042, 2342, 2476, 2189, 1950, 1732, 1551, 1423, 1338, 1282, 1250, 1268, 1309, 1391, 1516, 1661, 1895, 2128, 2342, 2570, 2289, 2070, 1821, 1634, 1493, 1410, 1362, 1332, 1350, 1387, 1465, 1587, 1742, 1956, 2205, 2466]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2790, 2515, 2281, 1979, 1753, 1606, 1468, 1397, 1369, 1351, 1427, 1522, 1627, 1805, 2039, 2325, 2657, 2740, 2435, 2146, 1876, 1663, 1493, 1382, 1311, 1291, 1291, 1351, 1443, 1569, 1743, 1967, 2240, 2536, 2657, 2388, 2059, 1805, 1585, 1427, 1316, 1239, 1224, 1227, 1278, 1369, 1511, 1658, 1906, 2192, 2505, 2612, 2325, 1986, 1714, 1522, 1351, 1252, 1184, 1164, 1166, 1220, 1308, 1437, 1606, 1843, 2131, 2435, 2612, 2232, 1923, 1676, 1464, 1308, 1200, 1134, 1105, 1121, 1180, 1252, 1394, 1565, 1789, 2059, 2379, 2568, 2207, 1876, 1610, 1414, 1267, 1153, 1097, 1070, 1084, 1140, 1217, 1345, 1522, 1753, 2052, 2369, 2536, 2146, 1843, 1594, 1388, 1232, 1128, 1072, 1050, 1067, 1107, 1200, 1325, 1482, 1728, 1999, 2325, 2485, 2109, 1805, 1565, 1369, 1212, 1119, 1054, 1036, 1045, 1091, 1177, 1300, 1478, 1723, 1999, 2316, 2465, 2109, 1810, 1557, 1354, 1215, 1105, 1052, 1024, 1034, 1080, 1166, 1294, 1482, 1700, 1960, 2307, 2465, 2080, 1799, 1545, 1354, 1208, 1119, 1050, 1031, 1033, 1086, 1166, 1302, 1478, 1709, 1986, 2369, 2485, 2123, 1805, 1557, 1366, 1222, 1128, 1063, 1045, 1052, 1095, 1186, 1311, 1489, 1728, 2005, 2369, 2526, 2138, 1832, 1581, 1388, 1239, 1144, 1090, 1063, 1074, 1109, 1208, 1316, 1522, 1758, 2025, 2369, 2536, 2192, 1859, 1619, 1417, 1275, 1180, 1121, 1088, 1107, 1160, 1239, 1369, 1545, 1773, 2066, 2379, 2579, 2240, 1917, 1658, 1457, 1316, 1224, 1157, 1125, 1151, 1191, 1286, 1414, 1585, 1821, 2123, 2379, 2634, 2265, 1979, 1743, 1530, 1369, 1257, 1210, 1184, 1198, 1244, 1319, 1461, 1654, 1876, 2192, 2475, 2740, 2360, 2032, 1773, 1581, 1433, 1325, 1267, 1242, 1257, 1297, 1397, 1534, 1723, 1954, 2256, 2547, 2669, 2426, 2123, 1865, 1645, 1519, 1397, 1334, 1322, 1328, 1388, 1457, 1606, 1773, 2039, 2351, 2579]
| },
| "lsc_samples_blue": {
| "uCoeff": [2298, 1951, 1728, 1591, 1439, 1343, 1286, 1217, 1209, 1225, 1233, 1286, 1374, 1499, 1711, 1815, 2161, 2136, 1951, 1728, 1537, 1417, 1333, 1259, 1225, 1193, 1209, 1259, 1304, 1374, 1486, 1649, 1833, 2063, 2111, 1910, 1680, 1499, 1395, 1286, 1209, 1170, 1162, 1155, 1209, 1259, 1353, 1439, 1577, 1779, 2016, 2063, 1833, 1605, 1463, 1333, 1259, 1170, 1133, 1126, 1119, 1170, 1225, 1304, 1428, 1524, 1728, 1930, 1951, 1779, 1577, 1417, 1314, 1217, 1140, 1105, 1073, 1099, 1133, 1185, 1277, 1374, 1511, 1696, 1910, 1973, 1744, 1550, 1406, 1304, 1170, 1133, 1060, 1060, 1073, 1105, 1162, 1242, 1363, 1474, 1680, 1930, 1910, 1728, 1524, 1384, 1268, 1185, 1099, 1060, 1054, 1048, 1085, 1147, 1217, 1353, 1486, 1634, 1833, 1951, 1711, 1511, 1374, 1250, 1162, 1092, 1042, 1030, 1024, 1060, 1126, 1217, 1323, 1451, 1620, 1871, 1930, 1744, 1537, 1384, 1242, 1162, 1099, 1048, 1024, 1024, 1066, 1140, 1217, 1314, 1439, 1634, 1833, 1973, 1728, 1550, 1384, 1277, 1170, 1079, 1048, 1024, 1030, 1073, 1133, 1209, 1343, 1451, 1649, 1871, 1973, 1779, 1564, 1417, 1286, 1185, 1119, 1060, 1048, 1042, 1079, 1133, 1233, 1343, 1474, 1680, 1851, 1994, 1779, 1591, 1439, 1295, 1193, 1119, 1073, 1054, 1054, 1099, 1185, 1242, 1343, 1499, 1696, 1890, 2016, 1833, 1605, 1451, 1323, 1225, 1162, 1099, 1085, 1092, 1126, 1185, 1277, 1406, 1524, 1728, 1890, 2111, 1890, 1664, 1486, 1363, 1259, 1170, 1147, 1112, 1119, 1140, 1217, 1295, 1406, 1564, 1744, 1930, 2214, 1930, 1711, 1537, 1406, 1314, 1225, 1185, 1162, 1147, 1209, 1242, 1353, 1463, 1605, 1796, 2086, 2241, 1973, 1728, 1564, 1439, 1323, 1268, 1217, 1209, 1209, 1225, 1295, 1384, 1474, 1634, 1871, 2086, 2328, 2136, 1871, 1634, 1511, 1384, 1323, 1277, 1250, 1259, 1304, 1343, 1451, 1499, 1711, 1994, 2241]
| }
| }, {
| "name": "1920x1080_HZ_70",
| "resolution": "1920x1080",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2400, 2326, 2165, 1983, 1784, 1640, 1536, 1466, 1437, 1433, 1481, 1563, 1673, 1840, 2010, 2185, 2304, 2419, 2303, 2125, 1907, 1718, 1560, 1456, 1373, 1337, 1349, 1398, 1475, 1601, 1749, 1937, 2112, 2297, 2419, 2255, 2016, 1825, 1629, 1473, 1358, 1295, 1258, 1274, 1316, 1405, 1517, 1673, 1873, 2072, 2257, 2369, 2183, 1955, 1753, 1564, 1408, 1288, 1217, 1203, 1194, 1251, 1344, 1464, 1623, 1801, 2013, 2216, 2327, 2133, 1895, 1697, 1500, 1348, 1230, 1162, 1138, 1135, 1188, 1274, 1410, 1572, 1764, 1966, 2165, 2340, 2091, 1852, 1639, 1434, 1288, 1184, 1111, 1088, 1095, 1151, 1236, 1362, 1526, 1702, 1935, 2141, 2283, 2053, 1818, 1599, 1396, 1251, 1145, 1077, 1046, 1064, 1118, 1202, 1323, 1497, 1678, 1914, 2142, 2280, 2039, 1774, 1561, 1384, 1229, 1129, 1061, 1032, 1043, 1088, 1180, 1307, 1473, 1681, 1897, 2093, 2250, 2004, 1785, 1555, 1368, 1215, 1109, 1046, 1026, 1029, 1080, 1168, 1291, 1453, 1657, 1877, 2128, 2226, 1997, 1770, 1551, 1363, 1219, 1116, 1044, 1024, 1036, 1080, 1172, 1303, 1464, 1649, 1892, 2099, 2236, 2028, 1771, 1549, 1383, 1237, 1131, 1064, 1040, 1046, 1095, 1175, 1303, 1481, 1678, 1899, 2142, 2274, 2034, 1804, 1581, 1402, 1261, 1151, 1090, 1062, 1075, 1124, 1215, 1329, 1496, 1690, 1919, 2148, 2302, 2062, 1820, 1611, 1436, 1293, 1188, 1123, 1095, 1110, 1158, 1247, 1369, 1531, 1729, 1949, 2165, 2310, 2100, 1860, 1657, 1470, 1344, 1241, 1168, 1142, 1158, 1204, 1293, 1415, 1580, 1769, 2001, 2194, 2331, 2132, 1904, 1709, 1523, 1403, 1294, 1232, 1192, 1213, 1259, 1355, 1469, 1634, 1823, 2047, 2212, 2314, 2188, 1976, 1771, 1597, 1465, 1353, 1300, 1271, 1281, 1323, 1405, 1532, 1698, 1894, 2098, 2241, 2337, 2215, 2059, 1840, 1664, 1529, 1448, 1372, 1347, 1372, 1408, 1485, 1612, 1761, 1936, 2164, 2329]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2178, 2105, 1961, 1814, 1669, 1549, 1461, 1404, 1374, 1416, 1428, 1479, 1568, 1663, 1821, 1959, 2069, 2128, 2033, 1899, 1727, 1587, 1475, 1382, 1316, 1309, 1324, 1352, 1399, 1500, 1602, 1753, 1892, 2012, 2191, 1990, 1802, 1655, 1526, 1387, 1301, 1256, 1235, 1242, 1277, 1340, 1429, 1545, 1693, 1844, 1985, 2092, 1946, 1761, 1583, 1445, 1332, 1237, 1183, 1168, 1177, 1213, 1280, 1366, 1497, 1636, 1787, 1929, 2083, 1890, 1697, 1536, 1386, 1268, 1190, 1137, 1117, 1119, 1161, 1230, 1327, 1458, 1593, 1745, 1922, 2029, 1846, 1666, 1493, 1347, 1235, 1150, 1093, 1067, 1082, 1124, 1197, 1289, 1412, 1570, 1722, 1895, 2009, 1802, 1627, 1461, 1315, 1201, 1119, 1069, 1042, 1051, 1095, 1167, 1267, 1387, 1539, 1713, 1907, 1980, 1796, 1604, 1439, 1300, 1176, 1087, 1045, 1029, 1034, 1072, 1148, 1244, 1385, 1523, 1688, 1853, 1988, 1770, 1597, 1439, 1281, 1174, 1089, 1038, 1024, 1029, 1063, 1138, 1239, 1365, 1516, 1689, 1865, 1993, 1764, 1604, 1430, 1284, 1178, 1095, 1047, 1024, 1026, 1066, 1142, 1236, 1362, 1515, 1688, 1870, 1983, 1782, 1602, 1437, 1299, 1180, 1104, 1052, 1034, 1038, 1087, 1156, 1252, 1381, 1528, 1708, 1895, 1969, 1797, 1615, 1465, 1316, 1206, 1124, 1083, 1056, 1066, 1110, 1179, 1276, 1403, 1547, 1722, 1895, 1999, 1838, 1644, 1492, 1350, 1226, 1163, 1108, 1087, 1098, 1138, 1219, 1300, 1428, 1582, 1745, 1922, 2048, 1846, 1667, 1508, 1385, 1280, 1190, 1151, 1132, 1129, 1179, 1240, 1341, 1469, 1611, 1771, 1929, 2075, 1878, 1730, 1572, 1439, 1333, 1261, 1206, 1179, 1195, 1227, 1293, 1407, 1523, 1666, 1823, 1991, 2068, 1922, 1778, 1627, 1489, 1386, 1315, 1266, 1237, 1253, 1288, 1357, 1459, 1567, 1733, 1875, 1972, 2106, 1979, 1859, 1690, 1553, 1442, 1375, 1335, 1309, 1324, 1354, 1417, 1512, 1624, 1768, 1915, 2033]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2260, 2149, 2027, 1822, 1656, 1543, 1428, 1367, 1343, 1325, 1390, 1468, 1547, 1677, 1834, 2006, 2167, 2258, 2111, 1938, 1750, 1588, 1450, 1356, 1293, 1275, 1274, 1327, 1405, 1505, 1636, 1792, 1961, 2111, 2222, 2094, 1881, 1700, 1528, 1396, 1299, 1229, 1215, 1217, 1263, 1343, 1461, 1573, 1754, 1940, 2111, 2208, 2060, 1832, 1630, 1477, 1330, 1242, 1179, 1160, 1161, 1211, 1290, 1400, 1535, 1712, 1905, 2076, 2223, 1997, 1788, 1603, 1429, 1293, 1194, 1131, 1103, 1119, 1175, 1240, 1365, 1505, 1674, 1858, 2047, 2202, 1986, 1755, 1549, 1386, 1256, 1150, 1096, 1069, 1083, 1137, 1208, 1322, 1470, 1649, 1860, 2050, 2185, 1942, 1731, 1538, 1364, 1224, 1126, 1072, 1050, 1067, 1105, 1193, 1305, 1437, 1632, 1822, 2023, 2151, 1916, 1701, 1514, 1348, 1205, 1117, 1054, 1036, 1045, 1090, 1172, 1283, 1435, 1630, 1825, 2020, 2137, 1917, 1706, 1507, 1334, 1208, 1104, 1052, 1024, 1034, 1079, 1161, 1278, 1439, 1610, 1794, 2015, 2135, 1892, 1695, 1496, 1334, 1201, 1117, 1050, 1031, 1033, 1085, 1161, 1285, 1435, 1617, 1814, 2061, 2146, 1923, 1698, 1505, 1344, 1214, 1126, 1063, 1045, 1052, 1094, 1180, 1292, 1443, 1632, 1827, 2057, 2170, 1930, 1717, 1523, 1362, 1229, 1141, 1089, 1063, 1073, 1107, 1200, 1295, 1470, 1653, 1838, 2050, 2166, 1965, 1734, 1553, 1386, 1262, 1175, 1119, 1087, 1105, 1155, 1228, 1342, 1487, 1661, 1863, 2047, 2184, 1992, 1774, 1581, 1418, 1297, 1215, 1152, 1122, 1147, 1183, 1269, 1379, 1517, 1694, 1899, 2034, 2205, 1997, 1815, 1647, 1478, 1343, 1243, 1201, 1177, 1190, 1231, 1296, 1416, 1570, 1730, 1940, 2089, 2258, 2054, 1845, 1662, 1516, 1395, 1303, 1252, 1229, 1242, 1277, 1363, 1474, 1619, 1781, 1973, 2119, 2176, 2082, 1901, 1727, 1562, 1465, 1363, 1309, 1299, 1304, 1355, 1410, 1528, 1650, 1834, 2025, 2113]
| },
| "lsc_samples_blue": {
| "uCoeff": [1916, 1724, 1586, 1498, 1384, 1308, 1262, 1202, 1195, 1209, 1214, 1258, 1327, 1421, 1572, 1621, 1820, 1824, 1738, 1597, 1461, 1371, 1305, 1242, 1212, 1183, 1197, 1242, 1278, 1333, 1418, 1533, 1647, 1771, 1822, 1719, 1567, 1435, 1357, 1266, 1198, 1163, 1156, 1149, 1198, 1241, 1319, 1383, 1482, 1616, 1752, 1799, 1668, 1512, 1410, 1305, 1244, 1163, 1129, 1123, 1116, 1163, 1212, 1279, 1379, 1444, 1584, 1700, 1724, 1632, 1494, 1373, 1291, 1207, 1136, 1103, 1072, 1097, 1129, 1176, 1257, 1335, 1438, 1565, 1693, 1748, 1609, 1475, 1366, 1284, 1163, 1130, 1059, 1060, 1072, 1103, 1156, 1226, 1328, 1410, 1557, 1715, 1705, 1600, 1456, 1349, 1252, 1179, 1097, 1060, 1054, 1048, 1084, 1142, 1204, 1321, 1423, 1523, 1645, 1739, 1588, 1446, 1341, 1236, 1157, 1091, 1042, 1030, 1024, 1059, 1122, 1205, 1295, 1394, 1514, 1677, 1724, 1616, 1469, 1350, 1229, 1157, 1098, 1048, 1024, 1024, 1065, 1136, 1205, 1287, 1384, 1526, 1649, 1756, 1602, 1480, 1350, 1261, 1165, 1078, 1048, 1024, 1030, 1072, 1129, 1198, 1313, 1394, 1538, 1677, 1753, 1642, 1490, 1378, 1269, 1179, 1117, 1060, 1048, 1042, 1078, 1129, 1219, 1312, 1412, 1561, 1659, 1764, 1638, 1510, 1396, 1276, 1185, 1116, 1072, 1054, 1054, 1097, 1178, 1226, 1310, 1431, 1570, 1685, 1773, 1676, 1518, 1403, 1299, 1214, 1157, 1097, 1084, 1090, 1122, 1176, 1257, 1363, 1449, 1591, 1678, 1835, 1713, 1562, 1430, 1333, 1244, 1163, 1143, 1109, 1116, 1135, 1205, 1271, 1360, 1478, 1597, 1700, 1897, 1735, 1593, 1468, 1367, 1292, 1213, 1177, 1156, 1141, 1198, 1225, 1319, 1404, 1505, 1630, 1803, 1899, 1755, 1597, 1484, 1391, 1296, 1250, 1205, 1198, 1197, 1210, 1270, 1342, 1407, 1521, 1677, 1788, 1937, 1863, 1700, 1534, 1446, 1345, 1296, 1257, 1233, 1240, 1279, 1308, 1394, 1421, 1572, 1756, 1876]
| }
| }, {
| "name": "1920x1080_TL84_100",
| "resolution": "1920x1080",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2676, 2448, 2212, 1917, 1716, 1586, 1433, 1394, 1353, 1369, 1394, 1484, 1580, 1762, 2000, 2212, 2448, 2645, 2372, 2082, 1847, 1654, 1493, 1394, 1321, 1292, 1292, 1337, 1424, 1533, 1673, 1862, 2140, 2409, 2556, 2300, 1991, 1756, 1564, 1424, 1310, 1260, 1220, 1230, 1263, 1361, 1465, 1602, 1804, 2072, 2396, 2501, 2191, 1925, 1673, 1484, 1361, 1250, 1182, 1164, 1155, 1210, 1292, 1411, 1549, 1729, 2000, 2278, 2409, 2140, 1840, 1619, 1424, 1306, 1201, 1138, 1116, 1124, 1155, 1243, 1349, 1493, 1679, 1949, 2233, 2384, 2054, 1783, 1570, 1389, 1256, 1164, 1100, 1082, 1077, 1119, 1210, 1325, 1469, 1643, 1855, 2180, 2347, 2027, 1742, 1538, 1349, 1230, 1130, 1067, 1045, 1064, 1097, 1164, 1295, 1455, 1619, 1840, 2201, 2336, 1983, 1723, 1513, 1329, 1201, 1113, 1059, 1031, 1036, 1077, 1155, 1267, 1402, 1597, 1825, 2101, 2336, 1974, 1716, 1488, 1325, 1188, 1097, 1045, 1024, 1036, 1079, 1147, 1256, 1398, 1602, 1833, 2110, 2336, 1974, 1710, 1493, 1325, 1201, 1105, 1045, 1033, 1031, 1082, 1158, 1260, 1411, 1608, 1811, 2160, 2324, 1974, 1716, 1518, 1341, 1217, 1121, 1057, 1038, 1043, 1095, 1167, 1274, 1424, 1619, 1877, 2150, 2336, 2009, 1736, 1538, 1357, 1226, 1138, 1087, 1059, 1067, 1108, 1185, 1292, 1437, 1619, 1877, 2170, 2409, 2027, 1769, 1549, 1385, 1260, 1164, 1113, 1087, 1100, 1138, 1220, 1325, 1484, 1673, 1925, 2201, 2435, 2082, 1811, 1608, 1437, 1306, 1210, 1155, 1130, 1133, 1179, 1250, 1385, 1523, 1723, 1974, 2266, 2501, 2150, 1862, 1654, 1479, 1353, 1260, 1204, 1182, 1188, 1223, 1303, 1406, 1575, 1769, 2027, 2300, 2571, 2233, 1949, 1723, 1538, 1406, 1318, 1260, 1239, 1250, 1299, 1357, 1479, 1637, 1847, 2110, 2409, 2514, 2347, 2027, 1790, 1608, 1493, 1381, 1325, 1314, 1321, 1361, 1428, 1538, 1723, 1925, 2212, 2487]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2642, 2450, 2212, 1950, 1752, 1587, 1512, 1441, 1396, 1413, 1465, 1525, 1646, 1796, 2005, 2219, 2519, 2622, 2360, 2094, 1838, 1654, 1506, 1399, 1330, 1306, 1328, 1356, 1433, 1552, 1697, 1908, 2178, 2400, 2528, 2276, 1972, 1756, 1576, 1415, 1318, 1252, 1235, 1248, 1282, 1358, 1468, 1631, 1815, 2088, 2336, 2493, 2192, 1893, 1665, 1468, 1343, 1246, 1193, 1172, 1175, 1222, 1294, 1407, 1559, 1739, 1988, 2298, 2416, 2113, 1838, 1601, 1424, 1287, 1187, 1138, 1114, 1120, 1158, 1239, 1351, 1506, 1697, 1955, 2233, 2376, 2058, 1787, 1559, 1377, 1244, 1147, 1102, 1079, 1087, 1132, 1206, 1315, 1468, 1665, 1913, 2219, 2368, 1994, 1731, 1525, 1335, 1212, 1129, 1074, 1050, 1059, 1109, 1172, 1277, 1433, 1631, 1877, 2178, 2306, 1977, 1710, 1487, 1318, 1187, 1107, 1051, 1031, 1045, 1077, 1158, 1273, 1418, 1612, 1858, 2158, 2313, 1966, 1681, 1468, 1298, 1179, 1100, 1045, 1027, 1031, 1072, 1149, 1261, 1415, 1608, 1848, 2171, 2329, 1955, 1689, 1471, 1306, 1181, 1097, 1045, 1024, 1038, 1069, 1152, 1259, 1413, 1616, 1858, 2158, 2298, 1972, 1701, 1484, 1315, 1193, 1107, 1058, 1042, 1047, 1095, 1158, 1270, 1427, 1627, 1877, 2171, 2321, 1994, 1726, 1519, 1338, 1210, 1121, 1074, 1058, 1069, 1107, 1185, 1298, 1453, 1642, 1903, 2185, 2352, 2034, 1765, 1539, 1374, 1241, 1160, 1106, 1092, 1095, 1139, 1212, 1330, 1481, 1685, 1939, 2247, 2416, 2094, 1810, 1587, 1415, 1289, 1212, 1156, 1134, 1149, 1181, 1261, 1374, 1535, 1739, 1994, 2298, 2502, 2145, 1873, 1631, 1459, 1343, 1252, 1206, 1187, 1191, 1237, 1315, 1430, 1598, 1796, 2076, 2329, 2538, 2212, 1955, 1714, 1545, 1415, 1328, 1264, 1250, 1259, 1306, 1390, 1506, 1665, 1873, 2152, 2392, 2574, 2321, 2022, 1806, 1623, 1490, 1418, 1356, 1330, 1328, 1393, 1459, 1590, 1731, 1955, 2247, 2519]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2796, 2491, 2205, 1961, 1723, 1584, 1466, 1394, 1370, 1373, 1414, 1510, 1620, 1792, 2000, 2283, 2554, 2669, 2415, 2138, 1858, 1647, 1494, 1383, 1319, 1288, 1305, 1344, 1419, 1540, 1702, 1945, 2191, 2491, 2582, 2343, 2017, 1775, 1560, 1419, 1314, 1252, 1217, 1228, 1272, 1354, 1482, 1635, 1853, 2125, 2423, 2563, 2261, 1956, 1690, 1491, 1360, 1254, 1185, 1161, 1173, 1203, 1297, 1411, 1581, 1797, 2058, 2374, 2491, 2191, 1878, 1639, 1440, 1283, 1197, 1134, 1109, 1118, 1165, 1243, 1362, 1533, 1744, 2017, 2328, 2527, 2138, 1829, 1577, 1394, 1245, 1152, 1097, 1078, 1087, 1132, 1209, 1334, 1485, 1698, 1961, 2275, 2474, 2088, 1797, 1543, 1349, 1217, 1121, 1064, 1051, 1062, 1099, 1179, 1302, 1469, 1670, 1945, 2268, 2399, 2046, 1753, 1517, 1324, 1197, 1112, 1053, 1037, 1044, 1087, 1167, 1270, 1448, 1647, 1919, 2268, 2374, 2058, 1744, 1510, 1332, 1183, 1099, 1053, 1024, 1034, 1072, 1158, 1265, 1434, 1655, 1913, 2240, 2382, 2034, 1744, 1504, 1329, 1183, 1102, 1045, 1027, 1037, 1078, 1160, 1267, 1457, 1655, 1913, 2240, 2423, 2058, 1744, 1517, 1342, 1199, 1118, 1059, 1042, 1044, 1090, 1167, 1281, 1448, 1682, 1940, 2261, 2474, 2070, 1783, 1540, 1352, 1219, 1125, 1077, 1053, 1062, 1112, 1191, 1312, 1469, 1694, 1961, 2283, 2474, 2100, 1811, 1567, 1383, 1263, 1169, 1104, 1092, 1102, 1141, 1224, 1342, 1513, 1735, 2017, 2359, 2500, 2151, 1853, 1606, 1440, 1302, 1205, 1145, 1128, 1139, 1185, 1267, 1386, 1567, 1770, 2064, 2374, 2582, 2225, 1898, 1670, 1491, 1354, 1263, 1205, 1179, 1191, 1234, 1327, 1443, 1620, 1825, 2138, 2399, 2620, 2275, 2000, 1735, 1556, 1419, 1319, 1258, 1241, 1254, 1295, 1389, 1526, 1686, 1913, 2205, 2457, 2659, 2399, 2046, 1825, 1617, 1494, 1397, 1332, 1309, 1314, 1383, 1472, 1591, 1779, 2022, 2268, 2582]
| },
| "lsc_samples_blue": {
| "uCoeff": [2285, 2128, 1846, 1679, 1531, 1386, 1320, 1278, 1244, 1255, 1272, 1352, 1422, 1531, 1699, 1922, 2178, 2285, 2081, 1834, 1639, 1482, 1386, 1284, 1249, 1227, 1227, 1261, 1314, 1400, 1506, 1669, 1871, 2178, 2213, 1991, 1764, 1583, 1436, 1327, 1238, 1196, 1175, 1185, 1216, 1278, 1372, 1459, 1602, 1810, 2035, 2178, 1922, 1679, 1514, 1372, 1278, 1196, 1151, 1142, 1137, 1170, 1227, 1320, 1422, 1557, 1753, 1977, 2128, 1871, 1639, 1482, 1333, 1238, 1151, 1114, 1088, 1097, 1146, 1196, 1296, 1386, 1531, 1720, 1949, 2035, 1834, 1611, 1451, 1302, 1222, 1132, 1084, 1067, 1071, 1105, 1166, 1266, 1372, 1506, 1689, 1883, 2020, 1798, 1583, 1436, 1290, 1185, 1123, 1055, 1047, 1047, 1097, 1156, 1233, 1352, 1482, 1669, 1896, 1963, 1764, 1583, 1414, 1272, 1180, 1097, 1055, 1043, 1039, 1084, 1142, 1233, 1359, 1482, 1669, 1909, 2006, 1775, 1540, 1400, 1266, 1166, 1097, 1047, 1024, 1035, 1071, 1137, 1238, 1333, 1474, 1659, 1883, 1949, 1742, 1565, 1407, 1278, 1156, 1097, 1047, 1024, 1047, 1067, 1132, 1222, 1333, 1482, 1679, 1883, 1963, 1764, 1565, 1414, 1278, 1180, 1105, 1059, 1051, 1047, 1080, 1142, 1233, 1352, 1498, 1679, 1922, 2020, 1798, 1592, 1422, 1296, 1201, 1123, 1084, 1047, 1063, 1105, 1170, 1261, 1393, 1523, 1699, 1922, 2081, 1834, 1639, 1459, 1327, 1222, 1151, 1097, 1080, 1097, 1132, 1196, 1284, 1400, 1540, 1753, 1949, 2145, 1871, 1659, 1474, 1352, 1261, 1185, 1142, 1119, 1114, 1151, 1211, 1314, 1429, 1583, 1798, 2035, 2213, 1963, 1699, 1523, 1400, 1302, 1222, 1175, 1156, 1170, 1196, 1255, 1346, 1474, 1630, 1810, 2096, 2231, 2020, 1775, 1583, 1436, 1333, 1278, 1227, 1201, 1206, 1249, 1308, 1393, 1506, 1659, 1909, 2161, 2404, 2112, 1896, 1669, 1490, 1393, 1346, 1278, 1261, 1272, 1302, 1372, 1466, 1592, 1731, 2006, 2231]
| }
| }, {
| "name": "1920x1080_TL84_70",
| "resolution": "1920x1080",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2180, 2099, 1972, 1770, 1624, 1525, 1396, 1364, 1328, 1341, 1360, 1434, 1506, 1641, 1803, 1921, 2021, 2190, 2063, 1885, 1725, 1580, 1450, 1367, 1302, 1276, 1275, 1314, 1387, 1474, 1577, 1706, 1884, 2020, 2148, 2025, 1825, 1658, 1509, 1393, 1293, 1249, 1211, 1220, 1249, 1335, 1420, 1525, 1670, 1846, 2031, 2125, 1953, 1781, 1594, 1443, 1339, 1240, 1177, 1160, 1151, 1202, 1275, 1376, 1485, 1616, 1801, 1959, 2070, 1923, 1718, 1553, 1392, 1291, 1195, 1135, 1114, 1122, 1150, 1231, 1323, 1441, 1581, 1769, 1937, 2061, 1861, 1675, 1513, 1363, 1246, 1160, 1099, 1081, 1076, 1116, 1202, 1304, 1423, 1555, 1700, 1906, 2040, 1845, 1644, 1488, 1328, 1222, 1128, 1067, 1045, 1064, 1096, 1159, 1277, 1413, 1538, 1692, 1928, 2036, 1812, 1630, 1467, 1310, 1195, 1112, 1059, 1031, 1036, 1076, 1150, 1252, 1366, 1520, 1682, 1855, 2037, 1806, 1624, 1445, 1307, 1182, 1096, 1045, 1024, 1036, 1078, 1143, 1242, 1363, 1525, 1690, 1863, 2036, 1805, 1618, 1449, 1306, 1195, 1104, 1045, 1033, 1031, 1081, 1153, 1245, 1374, 1530, 1671, 1900, 2023, 1802, 1621, 1470, 1320, 1209, 1119, 1057, 1038, 1043, 1094, 1161, 1258, 1385, 1538, 1722, 1889, 2025, 1825, 1635, 1485, 1333, 1217, 1135, 1086, 1059, 1066, 1106, 1178, 1273, 1394, 1534, 1718, 1898, 2070, 1832, 1657, 1490, 1356, 1247, 1159, 1111, 1086, 1098, 1134, 1210, 1301, 1433, 1576, 1750, 1913, 2076, 1866, 1685, 1537, 1400, 1288, 1202, 1151, 1127, 1129, 1172, 1236, 1353, 1462, 1611, 1780, 1950, 2108, 1907, 1718, 1570, 1433, 1328, 1246, 1195, 1175, 1180, 1211, 1282, 1367, 1501, 1641, 1811, 1960, 2137, 1956, 1777, 1619, 1478, 1371, 1296, 1245, 1226, 1236, 1279, 1326, 1426, 1546, 1694, 1861, 2020, 2067, 2022, 1825, 1664, 1530, 1442, 1349, 1301, 1292, 1297, 1330, 1384, 1469, 1608, 1743, 1921, 2048]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2157, 2100, 1972, 1798, 1655, 1526, 1468, 1408, 1368, 1382, 1425, 1471, 1563, 1669, 1807, 1926, 2071, 2173, 2054, 1895, 1717, 1580, 1462, 1371, 1311, 1289, 1309, 1332, 1395, 1490, 1597, 1744, 1913, 2014, 2128, 2006, 1809, 1658, 1520, 1385, 1301, 1241, 1226, 1237, 1267, 1332, 1423, 1550, 1679, 1859, 1987, 2119, 1954, 1754, 1587, 1428, 1323, 1236, 1187, 1168, 1170, 1213, 1277, 1373, 1494, 1625, 1791, 1974, 2075, 1901, 1716, 1537, 1392, 1273, 1181, 1135, 1112, 1118, 1153, 1228, 1325, 1452, 1596, 1774, 1937, 2055, 1865, 1678, 1504, 1352, 1234, 1144, 1101, 1078, 1086, 1129, 1198, 1294, 1422, 1574, 1747, 1936, 2056, 1818, 1634, 1476, 1315, 1205, 1127, 1074, 1050, 1059, 1107, 1166, 1260, 1393, 1548, 1722, 1910, 2013, 1807, 1618, 1443, 1300, 1181, 1106, 1051, 1031, 1045, 1076, 1153, 1258, 1381, 1533, 1709, 1899, 2020, 1799, 1594, 1426, 1281, 1174, 1099, 1045, 1027, 1031, 1071, 1145, 1247, 1378, 1531, 1702, 1910, 2030, 1789, 1600, 1429, 1289, 1175, 1096, 1045, 1024, 1038, 1068, 1147, 1244, 1376, 1537, 1709, 1899, 2003, 1800, 1608, 1439, 1296, 1186, 1105, 1058, 1042, 1047, 1094, 1153, 1254, 1387, 1544, 1722, 1905, 2013, 1813, 1626, 1468, 1316, 1202, 1118, 1073, 1058, 1068, 1105, 1178, 1279, 1409, 1554, 1739, 1910, 2027, 1838, 1654, 1482, 1346, 1229, 1155, 1104, 1091, 1093, 1135, 1202, 1306, 1430, 1586, 1761, 1948, 2062, 1876, 1684, 1518, 1380, 1272, 1203, 1151, 1131, 1145, 1174, 1246, 1343, 1473, 1625, 1796, 1974, 2109, 1903, 1727, 1550, 1415, 1319, 1239, 1197, 1180, 1183, 1225, 1293, 1389, 1521, 1663, 1849, 1982, 2113, 1940, 1782, 1612, 1484, 1379, 1306, 1249, 1237, 1244, 1285, 1356, 1450, 1570, 1715, 1893, 2008, 2109, 2003, 1821, 1677, 1543, 1439, 1382, 1329, 1307, 1304, 1359, 1412, 1515, 1615, 1767, 1947, 2071]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2264, 2131, 1967, 1807, 1630, 1523, 1426, 1364, 1344, 1345, 1379, 1457, 1541, 1666, 1803, 1974, 2095, 2207, 2096, 1931, 1734, 1574, 1451, 1357, 1301, 1272, 1287, 1320, 1383, 1480, 1602, 1774, 1923, 2079, 2167, 2059, 1846, 1674, 1505, 1389, 1297, 1241, 1209, 1218, 1258, 1329, 1435, 1553, 1711, 1888, 2051, 2172, 2009, 1807, 1609, 1449, 1338, 1244, 1180, 1157, 1168, 1195, 1280, 1376, 1513, 1673, 1847, 2031, 2132, 1964, 1750, 1570, 1407, 1269, 1191, 1131, 1107, 1116, 1160, 1231, 1335, 1476, 1636, 1824, 2009, 2170, 1930, 1714, 1520, 1368, 1235, 1149, 1096, 1077, 1086, 1129, 1201, 1312, 1437, 1602, 1786, 1978, 2138, 1895, 1691, 1492, 1328, 1209, 1119, 1064, 1051, 1062, 1097, 1173, 1284, 1425, 1582, 1778, 1979, 2084, 1864, 1656, 1470, 1305, 1191, 1111, 1053, 1037, 1044, 1086, 1162, 1255, 1408, 1564, 1759, 1983, 2067, 1875, 1649, 1465, 1313, 1178, 1098, 1053, 1024, 1034, 1071, 1153, 1250, 1396, 1571, 1755, 1963, 2071, 1854, 1648, 1459, 1310, 1177, 1101, 1045, 1027, 1037, 1077, 1155, 1252, 1416, 1571, 1754, 1962, 2099, 1870, 1645, 1469, 1321, 1192, 1116, 1059, 1042, 1044, 1089, 1161, 1264, 1406, 1592, 1774, 1974, 2130, 1875, 1675, 1486, 1329, 1210, 1122, 1076, 1053, 1061, 1110, 1183, 1292, 1423, 1599, 1786, 1984, 2119, 1891, 1693, 1506, 1355, 1250, 1164, 1102, 1091, 1100, 1137, 1213, 1317, 1458, 1628, 1824, 2032, 2125, 1921, 1720, 1535, 1403, 1284, 1197, 1141, 1125, 1135, 1178, 1251, 1354, 1501, 1651, 1852, 2031, 2167, 1966, 1748, 1584, 1443, 1329, 1249, 1196, 1172, 1183, 1222, 1304, 1400, 1540, 1687, 1898, 2033, 2172, 1988, 1819, 1630, 1494, 1383, 1297, 1243, 1228, 1240, 1275, 1356, 1467, 1588, 1748, 1934, 2055, 2169, 2062, 1840, 1693, 1538, 1443, 1363, 1307, 1287, 1291, 1350, 1423, 1515, 1655, 1821, 1963, 2115]
| },
| "lsc_samples_blue": {
| "uCoeff": [1907, 1857, 1680, 1571, 1463, 1347, 1293, 1258, 1227, 1237, 1249, 1316, 1369, 1448, 1563, 1702, 1832, 1931, 1839, 1684, 1548, 1429, 1353, 1265, 1235, 1215, 1214, 1244, 1287, 1356, 1435, 1549, 1677, 1854, 1896, 1783, 1637, 1508, 1394, 1304, 1226, 1188, 1168, 1177, 1205, 1258, 1336, 1401, 1503, 1641, 1766, 1885, 1739, 1574, 1454, 1341, 1262, 1188, 1147, 1138, 1133, 1163, 1214, 1293, 1374, 1472, 1604, 1735, 1858, 1706, 1547, 1431, 1309, 1227, 1147, 1112, 1087, 1095, 1142, 1187, 1274, 1346, 1455, 1585, 1723, 1795, 1683, 1527, 1407, 1282, 1213, 1129, 1083, 1067, 1070, 1103, 1160, 1249, 1336, 1437, 1565, 1679, 1789, 1657, 1506, 1396, 1273, 1179, 1121, 1055, 1047, 1047, 1096, 1151, 1219, 1320, 1419, 1552, 1694, 1748, 1632, 1508, 1377, 1257, 1174, 1096, 1055, 1043, 1039, 1083, 1138, 1220, 1327, 1421, 1554, 1707, 1782, 1642, 1472, 1365, 1251, 1161, 1096, 1047, 1024, 1035, 1070, 1133, 1225, 1304, 1414, 1546, 1687, 1737, 1614, 1493, 1371, 1262, 1151, 1096, 1047, 1024, 1047, 1066, 1128, 1210, 1304, 1421, 1562, 1687, 1745, 1630, 1491, 1376, 1261, 1174, 1103, 1059, 1051, 1047, 1079, 1137, 1219, 1320, 1433, 1560, 1714, 1784, 1653, 1511, 1381, 1277, 1193, 1120, 1083, 1047, 1062, 1103, 1163, 1244, 1355, 1452, 1573, 1709, 1822, 1677, 1547, 1410, 1303, 1211, 1147, 1095, 1079, 1095, 1128, 1187, 1263, 1358, 1463, 1611, 1723, 1860, 1698, 1557, 1419, 1323, 1246, 1178, 1138, 1116, 1111, 1145, 1199, 1288, 1380, 1494, 1640, 1778, 1896, 1761, 1583, 1456, 1362, 1281, 1210, 1168, 1150, 1163, 1186, 1237, 1313, 1414, 1526, 1641, 1811, 1892, 1792, 1636, 1500, 1388, 1305, 1259, 1214, 1191, 1195, 1232, 1282, 1350, 1435, 1541, 1706, 1842, 1990, 1845, 1720, 1563, 1428, 1353, 1317, 1258, 1243, 1252, 1277, 1334, 1407, 1499, 1588, 1765, 1869]
| }
| }, {
| "name": "1920x1080_GRAY_0",
| "resolution": "1920x1080",
| "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, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [1.148, 2.8298],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.8207, 2.5729],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "D50",
| "awbGain": [1.7297, 1.8365],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "D65",
| "awbGain": [1.9624, 1.5873],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "D75",
| "awbGain": [2.1312, 1.4589],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.9419, 3.4155],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.6076, 2.3733],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [90, 90, 80, 50]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.4904, -0.2251, -0.2653, -0.4329, 1.5976, -0.1648, -0.2186, -1.1843, 2.4029],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.1463, 0.0237, -0.17, -0.2768, 1.3736, -0.0968, -0.1191, -0.6845, 1.8036],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [1.8275, -0.8324, 0.0049, -0.3825, 1.4298, -0.0473, -0.0477, -0.7327, 1.7804],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.4348, -0.4849, 0.0501, -0.2006, 1.1899, 0.0107, 0.0462, -0.4096, 1.3634],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [1.6521, -0.5497, -0.1023, -0.2682, 1.4667, -0.1984, -0.0495, -0.6429, 1.6924],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.3086, -0.2454, -0.0632, -0.1123, 1.2474, -0.1351, 0.0487, -0.313, 1.2643],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.7194, -0.6149, -0.1045, -0.2265, 1.4648, -0.2383, -0.0468, -0.5275, 1.5743],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.3702, -0.2956, -0.0746, -0.0697, 1.2441, -0.1744, 0.0624, -0.2295, 1.1671],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.7165, -0.6401, -0.0764, -0.2231, 1.4498, -0.2268, -0.0304, -0.4884, 1.5188],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.3688, -0.3172, -0.0515, -0.0664, 1.23, -0.1635, 0.0753, -0.2037, 1.1283],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.4481, 0.0138, -0.4619, -0.536, 1.6381, -0.1021, -0.503, -1.6687, 3.1717],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.0874, 0.2108, -0.2982, -0.3806, 1.4141, -0.0335, -0.3571, -1.0326, 2.3897],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.8073, -0.677, -0.1303, -0.3667, 1.4955, -0.1288, -0.1024, -0.7394, 1.8418],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.419, -0.348, -0.0709, -0.1897, 1.2604, -0.0707, 0.005, -0.3927, 1.3878],
| "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": 30,
| "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": [381, 354, 329, 306, 266, 233, 207, 188, 173, 162, 153, 144, 133, 120, 105, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [271, 261, 253, 247, 238, 233, 230, 227, 224, 219, 212, 202, 189, 174, 157, 139]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [382, 391, 398, 402, 405, 402, 394, 381, 364, 344, 322, 298, 274, 250, 227, 208]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [501, 506, 511, 516, 523, 527, 527, 522, 513, 499, 479, 454, 425, 391, 353, 312]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [940, 910, 884, 861, 822, 790, 762, 738, 713, 687, 658, 626, 591, 554, 517, 484]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1404, 1331, 1267, 1213, 1131, 1078, 1045, 1024, 1007, 987, 960, 922, 872, 810, 739, 667]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2051, 1915, 1798, 1699, 1553, 1467, 1428, 1415, 1411, 1404, 1382, 1341, 1277, 1190, 1087, 977]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2713, 2482, 2282, 2113, 1874, 1755, 1729, 1756, 1800, 1835, 1845, 1820, 1759, 1665, 1554, 1450]
| }, {
| "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": [381, 354, 329, 306, 266, 233, 207, 188, 173, 162, 153, 144, 133, 120, 105, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [271, 261, 253, 247, 238, 233, 230, 227, 224, 219, 212, 202, 189, 174, 157, 139]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [382, 391, 398, 402, 405, 402, 394, 381, 364, 344, 322, 298, 274, 250, 227, 208]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [501, 506, 511, 516, 523, 527, 527, 522, 513, 499, 479, 454, 425, 391, 353, 312]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [940, 910, 884, 861, 822, 790, 762, 738, 713, 687, 658, 626, 591, 554, 517, 484]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1404, 1331, 1267, 1213, 1131, 1078, 1045, 1024, 1007, 987, 960, 922, 872, 810, 739, 667]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2051, 1915, 1798, 1699, 1553, 1467, 1428, 1415, 1411, 1404, 1382, 1341, 1277, 1190, 1087, 977]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2713, 2482, 2282, 2113, 1874, 1755, 1729, 1756, 1800, 1835, 1845, 1820, 1759, 1665, 1554, 1450]
| }, {
| "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": 0,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 0,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 100,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 200,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 400,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 800,
| "filter_strength": 0.15,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 1600,
| "filter_strength": 0.1,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 3200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 6400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 12800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 25600,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 51200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 102400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 204800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 100,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 200,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 400,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 800,
| "filter_strength": 0.15,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 1600,
| "filter_strength": 0.1,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 3200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 6400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 12800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 25600,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 51200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 102400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }, {
| "iso": 204800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.03215,
| "hi_clipwgt": 0.03215,
| "softwgt": 0
| }],
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "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": 200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 1600,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 3200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 6400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 12800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 25600,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 51200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 102400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 204800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "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": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "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": 200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 1600,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 3200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 6400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 12800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 25600,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 51200,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 102400,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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": 204800,
| "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.5,
| "hf_denoise_strength": 10.2,
| "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
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-3.57423e-12, 3.34004e-08, -0.000107319, 0.125323, -0.527429],
| "ynr_ci_l": 0.274172,
| "ynr_ci_h": 0.167767
| }, {
| "iso": 100,
| "sigma_curve": [-5.8196e-13, 5.53725e-09, -1.98383e-05, 0.026469, 19.1473],
| "ynr_ci_l": 0.177875,
| "ynr_ci_h": 0.298563
| }, {
| "iso": 200,
| "sigma_curve": [-4.30521e-13, 5.55172e-09, -3.05666e-05, 0.0572361, 36.4178],
| "ynr_ci_l": 0.3045,
| "ynr_ci_h": 0.181554
| }, {
| "iso": 400,
| "sigma_curve": [-1.96571e-12, 1.77147e-08, -5.99585e-05, 0.0744534, 63.2478],
| "ynr_ci_l": 0.190723,
| "ynr_ci_h": 1
| }, {
| "iso": 800,
| "sigma_curve": [-6.04255e-12, 5.25745e-08, -0.00016427, 0.196731, 62.0865],
| "ynr_ci_l": 0.309025,
| "ynr_ci_h": 1
| }, {
| "iso": 1600,
| "sigma_curve": [-8.4528e-12, 7.82914e-08, -0.000263052, 0.337134, 57.2247],
| "ynr_ci_l": 0.191835,
| "ynr_ci_h": 1
| }, {
| "iso": 3200,
| "sigma_curve": [-8.06153e-12, 8.68989e-08, -0.000340979, 0.502651, 8.02216],
| "ynr_ci_l": 0.267005,
| "ynr_ci_h": 1
| }, {
| "iso": 6400,
| "sigma_curve": [-3.0531e-12, 5.5096e-08, -0.000324133, 0.645097, -70.3715],
| "ynr_ci_l": 0.170946,
| "ynr_ci_h": 1
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.281032,
| "ynr_ci_h": 1
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.179576,
| "ynr_ci_h": 1
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.252327,
| "ynr_ci_h": 1
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.167061,
| "ynr_ci_h": 1
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.273633,
| "ynr_ci_h": 1
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-3.57423e-12, 3.34004e-08, -0.000107319, 0.125323, -0.527429],
| "ynr_ci_l": 0.274172,
| "ynr_ci_h": 0.167767
| }, {
| "iso": 100,
| "sigma_curve": [-5.8196e-13, 5.53725e-09, -1.98383e-05, 0.026469, 19.1473],
| "ynr_ci_l": 0.177875,
| "ynr_ci_h": 0.298563
| }, {
| "iso": 200,
| "sigma_curve": [-4.30521e-13, 5.55172e-09, -3.05666e-05, 0.0572361, 36.4178],
| "ynr_ci_l": 0.3045,
| "ynr_ci_h": 0.181554
| }, {
| "iso": 400,
| "sigma_curve": [-1.96571e-12, 1.77147e-08, -5.99585e-05, 0.0744534, 63.2478],
| "ynr_ci_l": 0.190723,
| "ynr_ci_h": 1
| }, {
| "iso": 800,
| "sigma_curve": [-6.04255e-12, 5.25745e-08, -0.00016427, 0.196731, 62.0865],
| "ynr_ci_l": 0.309025,
| "ynr_ci_h": 1
| }, {
| "iso": 1600,
| "sigma_curve": [-8.4528e-12, 7.82914e-08, -0.000263052, 0.337134, 57.2247],
| "ynr_ci_l": 0.191835,
| "ynr_ci_h": 1
| }, {
| "iso": 3200,
| "sigma_curve": [-8.06153e-12, 8.68989e-08, -0.000340979, 0.502651, 8.02216],
| "ynr_ci_l": 0.267005,
| "ynr_ci_h": 1
| }, {
| "iso": 6400,
| "sigma_curve": [-3.0531e-12, 5.5096e-08, -0.000324133, 0.645097, -70.3715],
| "ynr_ci_l": 0.170946,
| "ynr_ci_h": 1
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.281032,
| "ynr_ci_h": 1
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.179576,
| "ynr_ci_h": 1
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.252327,
| "ynr_ci_h": 1
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.167061,
| "ynr_ci_h": 1
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.273633,
| "ynr_ci_h": 1
| }],
| "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": 0.6,
| "low_bf_1": 0.5,
| "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.5,
| "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": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.65,
| "low_bf_1": 0.5,
| "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.5,
| "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": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.7,
| "low_bf_1": 0.5,
| "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.5,
| "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": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.75,
| "low_bf_1": 0.5,
| "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.5,
| "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": 0.8,
| "low_bf_1": 0.5,
| "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.5,
| "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": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.9,
| "low_bf_1": 0.5,
| "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.5,
| "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": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.95,
| "low_bf_1": 0.5,
| "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.5,
| "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": 6400,
| "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": 0.5,
| "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.5,
| "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": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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.5,
| "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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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.5,
| "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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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.5,
| "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": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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.5,
| "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": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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.5,
| "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]
| }],
| "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": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 0.5,
| "low_bf_1": 0.6,
| "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.5,
| "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]
| }],
| "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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 1023, 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": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 7,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 7,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [64, 96, 12, 16, 19, 16, 12, 0],
| "local_sharp_strength": [1023, 1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [64, 96, 12, 16, 19, 16, 12, 0],
| "local_sharp_strength": [1023, 1023, 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": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 6,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [64, 96, 12, 16, 19, 16, 12, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 7,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [64, 96, 12, 16, 19, 16, 12, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 7,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [64, 96, 12, 16, 19, 16, 12, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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, 12, 16, 19, 16, 12, 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
| }
| }
| }
|
|