1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
| {
| "sensor_calib": {
| "resolution": {
| "width": 2112,
| "height": 1568
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 15.5, 16, 0, 1, 16, 248],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 15.5
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 0,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 3.5,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 2
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 1.6,
| "EFL": 5.2,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp30": {
| "ae_calib": {
| "CommCtrl": {
| "Enable": 1,
| "AecRunInterval": 0,
| "AecOpType": "RK_AIQ_OP_MODE_AUTO",
| "HistStatsMode": "CAM_HISTV2_MODE_Y",
| "RawStatsMode": "CAM_RAWSTATSV2_MODE_Y",
| "YRangeMode": "CAM_YRANGEV2_MODE_FULL",
| "AecGridWeight": [1, 1, 1, 1, 1, 1, 11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 8, 6, 6, 6, 6, 6, 2, 1, 1, 1, 1, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 2, 5, 5, 8, 8, 8, 8, 5, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 20, 20, 20, 20, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 20, 20, 20, 20, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 10, 10, 10, 10, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 10, 10, 10, 10, 10, 2, 1, 1, 1, 1, 1, 1, 1, 1, 10, 10, 10, 10, 10, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.01,
| "GainValue": 1,
| "IspDGainValue": 1
| },
| "HdrAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1]
| }
| },
| "AecSpeed": {
| "SmoothEn": 1,
| "DyDampEn": 1,
| "DampOver": 0.15,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.15,
| "DampBright2Dark": 0.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 4,
| "WhiteDelay": 4
| },
| "AecFrameRateMode": {
| "isFpsFix": 0,
| "FpsValue": 15
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.02859, 0.5972]
| },
| "AecWinScale": {
| "InRawWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| },
| "TmoRawWinScale": {
| "h_offs": 0.1,
| "v_offs": 0.1,
| "h_size": 0.9,
| "v_size": 0.9
| },
| "YuvWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| }
| }
| },
| "LinearAeCtrl": {
| "RawStatsEn": 1,
| "ToleranceIn": 10,
| "ToleranceOut": 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.03, 0.03, 0.03, 0.03, 0.03],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 3, 6, 9, 15.5],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 1],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.096, 0.192, 0.576, 0.73, 1.023],
| "ExpLevel_len": 6,
| "DySetpoint": [45, 43, 40, 38, 30, 25],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.096, 0.192, 0.384, 0.576, 0.96, 1.344],
| "ExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
| "LowLightPdfTh_len": 6,
| "TargetLLLuma": [25, 22, 20, 18, 15, 12],
| "TargetLLLuma_len": 6
| }
| },
| "OverExpCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MaxWeight": 8,
| "HighLightTh": 150,
| "LowLightTh": 30,
| "OverExpSetPoint": {
| "OEpdf": [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
| "OEpdf_len": 6,
| "LowLightWeight": [1, 1, 1, 1, 1, 1],
| "LowLightWeight_len": 6,
| "HighLightWeight": [4, 3, 3, 3, 2, 2],
| "HighLightWeight_len": 6
| }
| }
| },
| "HdrAeCtrl": {
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "LumaDistTh": 10,
| "InitExp": {
| "InitTimeValue": [0.0005, 0.003, 0.003],
| "InitGainValue": [1, 1, 1],
| "InitIspDGainValue": [1, 1, 1],
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "Frm0TimeDot": [0, 0.003, 0.003, 0.003, 0.003, 0.003],
| "Frm0TimeDot_len": 6,
| "Frm0GainDot": [1, 1, 4, 8, 15.5, 32],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 4, 8, 15.5, 64],
| "Frm1GainDot_len": 6,
| "Frm1IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm1IspDGainDot_len": 6,
| "Frm2TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm2TimeDot_len": 6,
| "Frm2GainDot": [1, 1, 4, 8, 15.5, 64],
| "Frm2GainDot_len": 6,
| "Frm2IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm2IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "ExpRatioCtrl": {
| "ExpRatioType": "AECV2_HDR_RATIOTYPE_MODE_AUTO",
| "ExpRatio": {
| "RatioExpDot": [0, 0.1, 0.3, 0.5, 0.7, 1],
| "RatioExpDot_len": 6,
| "M2SRatioFix": [4, 4, 4, 4, 4, 4],
| "M2SRatioFix_len": 6,
| "L2MRatioFix": [4, 4, 4, 4, 4, 4],
| "L2MRatioFix_len": 6,
| "M2SRatioMax": [64, 64, 64, 64, 64, 64],
| "M2SRatioMax_len": 6,
| "L2MRatioMax": [32, 32, 30, 28, 26, 24],
| "L2MRatioMax_len": 6
| }
| },
| "LongFrmMode": {
| "mode": "AECV2_HDR_LONGFRMMODE_NORMAL",
| "SfrmMinLine": 2,
| "LfrmModeExpTh": 0.62
| },
| "LframeCtrl": {
| "OEROILowTh": 150,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "LfrmSetPoint": {
| "LExpLevel": [0, 0.0192, 0.0576, 0.096, 0.192, 0.384],
| "LExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
| "LowLightPdfTh_len": 6,
| "LSetPoint": [75, 70, 65, 60, 45, 40],
| "LSetPoint_len": 6,
| "TargetLLLuma": [35, 32, 30, 28, 25, 20],
| "TargetLLLuma_len": 6
| }
| },
| "MframeCtrl": {
| "MExpLevel": [0.096, 0.192, 0.384, 0.96, 1.344, 1.92],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [1.32703, 1, 1, 3.31432],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_AUTO",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D50", "D65", "D75", "HZ", "TL84"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_8X8",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [3],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [3],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [3],
| "minB_len": 1,
| "maxY": [230],
| "maxY_len": 1,
| "minY": [3],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333163, 0.335263, 0.331574],
| "rotationMat": [-0.684677, 0.728847, -0.343686, 0.728847, 0.684677, 0.44797, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.035156, 0.136719, 0.013672, 34.375, -0.087891, 0.005859, 0.0625, 137.5625, 0.041016, -0.056641, 0.056641, 110.8125, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 0,
| "wpDiffWeiEnableTh": {
| "wpDiffWeiNoTh": 0.004,
| "wpDiffWeiLvValueTh": 64
| },
| "wpDiffwei_y": [0, 16, 32, 64, 96, 128, 192, 224, 240],
| "perfectBin": [0, 0, 0, 1, 1, 1, 1, 0],
| "wpDiffWeightLvSet": [{
| "LvValue": 256,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 4224,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 0,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.1759, 1, 1, 2.2648],
| "uvRegion": {
| "u": [122.3, 68.2, 57.1, 122],
| "v": [125.4, 100.2, 128.1, 127.1]
| },
| "xyRegion": {
| "normal": [-1.1859, -0.8087, 0.0824, -0.0104],
| "big": [-1.1859, -0.8087, 0.1084, -0.0573]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 144, 110.5625, 185.6875, 100.5, 112.625],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.6787, 1, 1, 1.9928],
| "uvRegion": {
| "u": [124.3, 90.1, 79.3, 123.7],
| "v": [123.6, 82.9, 89.1, 124.4]
| },
| "xyRegion": {
| "normal": [-0.5639, -0.3993, 0.0316, -0.1284],
| "big": [-0.5639, -0.3993, 0.0616, -0.1584]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 140.25, 111.6875, 190.0625, 122.4375, 106.0625],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.7497, 1, 1, 1.5894],
| "uvRegion": {
| "u": [126, 110.6, 89.8, 124.9],
| "v": [122.6, 74.2, 83.5, 123.1]
| },
| "xyRegion": {
| "normal": [-0.3993, -0.0104, 0.1224, -0.0456],
| "big": [-0.3993, -0.0104, 0.2755, -0.2394]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 138.9375, 110.75, 190.875, 131.5625, 112],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.0117, 1, 1, 1.4109],
| "uvRegion": {
| "u": [127.3, 121.4, 110.8, 126.4],
| "v": [122.9, 73, 74.5, 123.2]
| },
| "xyRegion": {
| "normal": [-0.0091, 0.1298, 0.0825, -0.0775],
| "big": [-0.0091, 0.1298, 0.2691, -0.2335]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 137.1875, 110.5625, 190.9375, 142.5625, 113.3125],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.1135, 1, 1, 1.3026],
| "uvRegion": {
| "u": [127.9, 133.2, 121.5, 127.4],
| "v": [122.9, 72.1, 72.4, 123]
| },
| "xyRegion": {
| "normal": [0.1315, 0.2304, 0.0433, -0.071],
| "big": [0.1311, 0.2304, 0.2097, -0.2154]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 136.4375, 110.375, 190.5625, 147.875, 115.25],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.9608, 1, 1, 2.5378],
| "uvRegion": {
| "u": [122, 59.3, 55.5, 121.7],
| "v": [128.9, 147.5, 127.7, 127.9]
| },
| "xyRegion": {
| "normal": [-1.509, -1.1859, 0.0494, -0.033],
| "big": [-1.509, -1.1859, 0.0815, -0.0694]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 146.4375, 109.6875, 180.75, 86.75, 117],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.5715, 1, 1, 1.9733],
| "uvRegion": {
| "u": [123.6, 78.6, 67.4, 123.1],
| "v": [123.1, 89, 100.1, 124.7]
| },
| "xyRegion": {
| "normal": [-0.8087, -0.5639, 0.0677, -0.0923],
| "big": [-0.8087, -0.5639, 0.0977, -0.1223]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.4, 0.5, 0.5, 0.76, 1, 4],
| "lineVector": [10, 140.75, 111.4375, 189.75, 119.5625, 107.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 4224],
| "defaultDayGainLow": [1.7497, 1, 1, 1.5894],
| "defaultDayGainHigh": [2.0117, 1, 1, 1.4109],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0, 0, 0, 0],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [0, 0, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.05,
| "dFMin": 0.7,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }, {
| "lumaValue": 4224,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 10,
| "cri_grid_num": 9,
| "ct_in_range": [1000, 10000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
| "ct_lut_out_len": 90,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 90
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500, 10000],
| "cct_len": 6,
| "cri_bound_up": [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
| "cri_bound_up_len": 6,
| "cri_bound_low": [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
| "cri_bound_low_len": 6
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [150],
| "low_len": 1,
| "high": [216],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.7497, 1, 1, 1.5894],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4224, 4224, 16384, 32768, 65536, 131072, 262144],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 6.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.0031,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [216],
| "forBigType_len": 1,
| "forExtraType": [216],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 21.978086,
| "meanH": 27.755365
| }, {
| "index": 13,
| "meanC": 16.901169,
| "meanH": -77.853996
| }, {
| "index": 5,
| "meanC": 8.233836,
| "meanH": -65.227898
| }, {
| "index": 10,
| "meanC": 8.408318,
| "meanH": -32.571407
| }, {
| "index": 14,
| "meanC": 14.628476,
| "meanH": 148.128418
| }, {
| "index": 16,
| "meanC": 23.275656,
| "meanH": 87.194984
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.175949,
| "BGain": 2.264796
| }, {
| "name": "TL84",
| "RGain": 1.571483,
| "BGain": 1.973265
| }, {
| "name": "D50",
| "RGain": 1.749745,
| "BGain": 1.589398
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.7146, -0.6995, -2.4246],
| "lineRgProjCCT": [1, -0.0002, 0.5208],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.0117, 1, 1, 1.4109],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "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": [66.5625, 66.8125, 66.75, 65.875, 66.3125, 66.3125, 66.3125, 66.3125, 66.3125, 66.3125, 66.3125, 66.3125, 66.3125],
| "R_Channel_len": 13,
| "Gr_Channel": [65.9375, 66.25, 66.25, 66.4375, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875],
| "Gr_Channel_len": 13,
| "Gb_Channel": [66, 66.3125, 66.375, 66.6875, 67.25, 67.25, 67.25, 67.25, 67.25, 67.25, 67.25, 67.25, 67.25],
| "Gb_Channel_len": 13,
| "B_Channel": [66.875, 67.3125, 67.6875, 66.8125, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875, 66.6875],
| "B_Channel_len": 13
| }
| },
| "Blc1TuningPara": {
| "enable": 0,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "R_Channel_len": 13,
| "Gr_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Gr_Channel_len": 13,
| "Gb_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Gb_Channel_len": 13,
| "B_Channel": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "B_Channel_len": 13
| }
| }
| },
| "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": [0.8, 0.8, 0.7, 0.6, 0.5, 0.5, 0.5, 0.5, 0.5]
| }
| },
| "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.1773, 2.2623],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.6797, 1.9932],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "D50",
| "awbGain": [1.7512, 1.59],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [60, 60, 60, 50]
| }
| }, {
| "name": "D65",
| "awbGain": [2.0076, 1.4114],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [60, 60, 60, 50]
| }
| }, {
| "name": "D75",
| "awbGain": [2.1164, 1.304],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [60, 60, 60, 50]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.9611, 2.5399],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.573, 1.9741],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 50]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [2.3071, -0.7056, -0.6015, -0.6357, 2.4281, -0.7924, -0.4107, -1.4805, 2.8912],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.7775, -0.2516, -0.5259, -0.4, 2.0688, -0.6688, -0.2348, -0.8227, 2.0574],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [3.1378, -1.7505, -0.3872, -0.6854, 2.1967, -0.5113, -0.2154, -0.9216, 2.137],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [2.455, -1.1245, -0.3305, -0.374, 1.7974, -0.4235, -0.0278, -0.5088, 1.5366],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.3805, -1.0988, -0.2817, -0.4979, 2.2055, -0.7076, -0.1724, -0.8301, 2.0025],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.8657, -0.5875, -0.2781, -0.2642, 1.8587, -0.5944, -0.0246, -0.3866, 1.4112],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [2.3805, -1.0988, -0.2817, -0.4979, 2.2055, -0.7076, -0.1724, -0.8301, 2.0025],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.8657, -0.5875, -0.2781, -0.2642, 1.8587, -0.5944, -0.0246, -0.3866, 1.4112],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [2.3805, -1.0988, -0.2817, -0.4979, 2.2055, -0.7076, -0.1724, -0.8301, 2.0025],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.8657, -0.5875, -0.2781, -0.2642, 1.8587, -0.5944, -0.0246, -0.3866, 1.4112],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [2.2241, -0.2282, -0.9959, -0.8225, 2.3736, -0.5511, -0.7293, -1.9564, 3.5639],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.6716, 0.1163, -0.7915, -0.5826, 2.0433, -0.4642, -0.515, -1.1603, 2.5816],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [2.7091, -1.2231, -0.486, -0.5774, 2.1849, -0.6076, -0.2089, -1.0688, 2.2777],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [2.1212, -0.6995, -0.4217, -0.3107, 1.8236, -0.5129, -0.0394, -0.583, 1.6225],
| "ccOffsets": [0, 0, 0]
| }],
| "matrixAll_len": 14
| }
| },
| "lut3d_calib": {
| "common": {
| "enable": 1,
| "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, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 247, 374, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 366, 494, 619, 748, 887, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 886, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 482, 611, 746, 884, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 610, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1555, 2047, 2048, 2048, 2048, 2047, 2047, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 550, 553, 550, 558, 548, 553, 512, 1024, 1024, 1024, 1024, 1061, 1069, 1059, 1064, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1575, 1536, 2048, 2047, 2048, 2048, 2047, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 546, 554, 545, 550, 512, 1024, 1024, 1024, 1101, 1101, 1113, 1106, 1060, 1024, 1536, 1536, 1536, 1536, 1536, 1622, 1615, 1571, 1536, 2048, 2047, 2048, 2047, 2047, 2047, 2047, 2047, 2047, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 18, 512, 512, 512, 512, 512, 512, 512, 548, 512, 1024, 1024, 1024, 1024, 1024, 1103, 1098, 1057, 1024, 1536, 1536, 1536, 1536, 1661, 1659, 1625, 1582, 1536, 2048, 2048, 2048, 2048, 2047, 2048, 2133, 2092, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1615, 1577, 1536, 2048, 2048, 2048, 2048, 2048, 2173, 2124, 2086, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2596, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2081, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2636, 2600, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3110, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2047, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "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, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 137, 137, 137, 139, 136, 137, 128, 128, 128, 128, 128, 136, 138, 136, 137, 128, 128, 128, 128, 128, 128, 128, 128, 137, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 264, 265, 263, 264, 256, 256, 256, 256, 274, 274, 277, 275, 264, 256, 256, 256, 256, 256, 256, 275, 274, 264, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 384, 384, 384, 384, 384, 384, 384, 384, 388, 384, 384, 384, 384, 384, 384, 384, 392, 384, 384, 384, 384, 384, 384, 402, 401, 391, 384, 384, 384, 384, 384, 413, 412, 404, 394, 384, 384, 384, 384, 384, 384, 384, 403, 394, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 512, 512, 512, 512, 511, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 512, 512, 511, 512, 530, 521, 511, 512, 512, 511, 511, 512, 541, 529, 520, 512, 512, 512, 512, 512, 511, 511, 512, 520, 512, 512, 512, 512, 512, 512, 512, 512, 511, 512, 512, 512, 512, 512, 512, 511, 511, 512, 511, 512, 512, 512, 512, 512, 512, 512, 512, 512, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 647, 639, 639, 639, 639, 639, 639, 639, 657, 649, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 776, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }, {
| "name": "test",
| "awbGain": [2.0076, 1.4114],
| "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, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 247, 374, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 366, 494, 619, 748, 887, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 886, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 482, 611, 746, 884, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 610, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1555, 2047, 2048, 2048, 2048, 2047, 2047, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 550, 553, 550, 558, 548, 553, 512, 1024, 1024, 1024, 1024, 1061, 1069, 1059, 1064, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1575, 1536, 2048, 2047, 2048, 2048, 2047, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 546, 554, 545, 550, 512, 1024, 1024, 1024, 1101, 1101, 1113, 1106, 1060, 1024, 1536, 1536, 1536, 1536, 1536, 1622, 1615, 1571, 1536, 2048, 2047, 2048, 2047, 2047, 2047, 2047, 2047, 2047, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 18, 512, 512, 512, 512, 512, 512, 512, 548, 512, 1024, 1024, 1024, 1024, 1024, 1103, 1098, 1057, 1024, 1536, 1536, 1536, 1536, 1661, 1659, 1625, 1582, 1536, 2048, 2048, 2048, 2048, 2047, 2048, 2133, 2092, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1615, 1577, 1536, 2048, 2048, 2048, 2048, 2048, 2173, 2124, 2086, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2596, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2081, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2636, 2600, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3110, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2047, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "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, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 137, 137, 137, 139, 136, 137, 128, 128, 128, 128, 128, 136, 138, 136, 137, 128, 128, 128, 128, 128, 128, 128, 128, 137, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 264, 265, 263, 264, 256, 256, 256, 256, 274, 274, 277, 275, 264, 256, 256, 256, 256, 256, 256, 275, 274, 264, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 384, 384, 384, 384, 384, 384, 384, 384, 388, 384, 384, 384, 384, 384, 384, 384, 392, 384, 384, 384, 384, 384, 384, 402, 401, 391, 384, 384, 384, 384, 384, 413, 412, 404, 394, 384, 384, 384, 384, 384, 384, 384, 403, 394, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 512, 512, 512, 512, 511, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 512, 512, 511, 512, 530, 521, 511, 512, 512, 511, 511, 512, 541, 529, 520, 512, 512, 512, 512, 512, 511, 511, 512, 520, 512, 512, 512, 512, 512, 512, 512, 512, 511, 512, 512, 512, 512, 512, 512, 511, 511, 512, 511, 512, 512, 512, 512, 512, 512, 512, 512, 512, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 647, 639, 639, 639, 639, 639, 639, 639, 657, 649, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 776, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }, {
| "name": "D50",
| "awbGain": [1.7512, 1.59],
| "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, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 247, 374, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 366, 494, 619, 748, 887, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 886, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 482, 611, 746, 884, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 610, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1555, 2047, 2048, 2048, 2048, 2047, 2047, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 550, 553, 550, 558, 548, 553, 512, 1024, 1024, 1024, 1024, 1061, 1069, 1059, 1064, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1575, 1536, 2048, 2047, 2048, 2048, 2047, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 546, 554, 545, 550, 512, 1024, 1024, 1024, 1101, 1101, 1113, 1106, 1060, 1024, 1536, 1536, 1536, 1536, 1536, 1622, 1615, 1571, 1536, 2048, 2047, 2048, 2047, 2047, 2047, 2047, 2047, 2047, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 18, 512, 512, 512, 512, 512, 512, 512, 548, 512, 1024, 1024, 1024, 1024, 1024, 1103, 1098, 1057, 1024, 1536, 1536, 1536, 1536, 1661, 1659, 1625, 1582, 1536, 2048, 2048, 2048, 2048, 2047, 2048, 2133, 2092, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1615, 1577, 1536, 2048, 2048, 2048, 2048, 2048, 2173, 2124, 2086, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2596, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2081, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2636, 2600, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3110, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2047, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "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, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 137, 137, 137, 139, 136, 137, 128, 128, 128, 128, 128, 136, 138, 136, 137, 128, 128, 128, 128, 128, 128, 128, 128, 137, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 264, 265, 263, 264, 256, 256, 256, 256, 274, 274, 277, 275, 264, 256, 256, 256, 256, 256, 256, 275, 274, 264, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 384, 384, 384, 384, 384, 384, 384, 384, 388, 384, 384, 384, 384, 384, 384, 384, 392, 384, 384, 384, 384, 384, 384, 402, 401, 391, 384, 384, 384, 384, 384, 413, 412, 404, 394, 384, 384, 384, 384, 384, 384, 384, 403, 394, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 512, 512, 512, 512, 511, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 512, 512, 511, 512, 530, 521, 511, 512, 512, 511, 511, 512, 541, 529, 520, 512, 512, 512, 512, 512, 511, 511, 512, 520, 512, 512, 512, 512, 512, 512, 512, 512, 511, 512, 512, 512, 512, 512, 512, 511, 511, 512, 511, 512, 512, 512, 512, 512, 512, 512, 512, 512, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 647, 639, 639, 639, 639, 639, 639, 639, 657, 649, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 776, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }, {
| "name": "d75",
| "awbGain": [2.1164, 1.3],
| "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, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 247, 374, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 503, 629, 759, 886, 1023, 0, 128, 256, 366, 494, 619, 748, 887, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1019, 0, 128, 256, 384, 511, 639, 767, 886, 1023, 0, 128, 256, 384, 512, 620, 749, 887, 1023, 0, 128, 256, 384, 482, 611, 746, 884, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 748, 885, 1023, 0, 128, 256, 384, 512, 610, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 887, 1023, 0, 128, 256, 384, 512, 639, 749, 886, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 886, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 511, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023, 0, 128, 256, 384, 512, 639, 767, 895, 1023],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1555, 2047, 2048, 2048, 2048, 2047, 2047, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 550, 553, 550, 558, 548, 553, 512, 1024, 1024, 1024, 1024, 1061, 1069, 1059, 1064, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1575, 1536, 2048, 2047, 2048, 2048, 2047, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 546, 554, 545, 550, 512, 1024, 1024, 1024, 1101, 1101, 1113, 1106, 1060, 1024, 1536, 1536, 1536, 1536, 1536, 1622, 1615, 1571, 1536, 2048, 2047, 2048, 2047, 2047, 2047, 2047, 2047, 2047, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 18, 512, 512, 512, 512, 512, 512, 512, 548, 512, 1024, 1024, 1024, 1024, 1024, 1103, 1098, 1057, 1024, 1536, 1536, 1536, 1536, 1661, 1659, 1625, 1582, 1536, 2048, 2048, 2048, 2048, 2047, 2048, 2133, 2092, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1615, 1577, 1536, 2048, 2048, 2048, 2048, 2048, 2173, 2124, 2086, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2596, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2081, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2636, 2600, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3110, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2047, 2047, 2048, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2047, 2048, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "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, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 137, 137, 137, 139, 136, 137, 128, 128, 128, 128, 128, 136, 138, 136, 137, 128, 128, 128, 128, 128, 128, 128, 128, 137, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 264, 265, 263, 264, 256, 256, 256, 256, 274, 274, 277, 275, 264, 256, 256, 256, 256, 256, 256, 275, 274, 264, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 384, 384, 384, 384, 384, 384, 384, 384, 388, 384, 384, 384, 384, 384, 384, 384, 392, 384, 384, 384, 384, 384, 384, 402, 401, 391, 384, 384, 384, 384, 384, 413, 412, 404, 394, 384, 384, 384, 384, 384, 384, 384, 403, 394, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 512, 512, 512, 512, 511, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 511, 511, 511, 511, 511, 511, 512, 512, 512, 512, 511, 512, 530, 521, 511, 512, 512, 511, 511, 512, 541, 529, 520, 512, 512, 512, 512, 512, 511, 511, 512, 520, 512, 512, 512, 512, 512, 512, 512, 512, 511, 512, 512, 512, 512, 512, 512, 511, 511, 512, 511, 512, 512, 512, 512, 512, 512, 512, 512, 512, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 647, 639, 639, 639, 639, 639, 639, 639, 657, 649, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 776, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 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": 4
| }
| },
| "adegamma_calib": {
| "DegammaTuningPara": {
| "degamma_en": 0,
| "X_axis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_R": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_G": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_B": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "agic_calib_v21": {
| "GicTuningPara": {
| "enable": 0,
| "gr_ration": 0,
| "GicData": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 13,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 13,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 13,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 13,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 13,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 13,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 13,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 13,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 13,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 13,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 13,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 13,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 13,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 13,
| "noiseCurve_0": [0.6247, 0.6247, 0.8301, 1.1066, 1.4888, 1.4888, 1.4888, 1.4888, 1.4888, 1.4888, 1.4888, 1.4888, 1.4888],
| "noiseCurve_0_len": 13,
| "noiseCurve_1": [0.2633, 0.2633, 0.5185, 2.2654, 4.3475, 4.3475, 4.3475, 4.3475, 4.3475, 4.3475, 4.3475, 4.3475, 4.3475],
| "noiseCurve_1_len": 13,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 13,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 13,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 13,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 13
| }
| }
| },
| "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]
| }
| }
| },
| "amerge_calib_V2": {
| "MergeTuningPara": {
| "BaseFrm": "BASEFRAME_LONG",
| "ByPassThr": 0,
| "LongFrmModeData": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| },
| "ShortFrmModeData": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "Coef": [0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05],
| "Coef_len": 13,
| "ms_thd0": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "ms_thd0_len": 13,
| "lm_thd0": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "lm_thd0_len": 13
| },
| "OECurve_damp": 0.3,
| "MDCurve_damp": 0.3
| }
| }
| },
| "adrc_calib_V2": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalSetting": {
| "LocalData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "LocalAutoEnable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalAutoEnable_len": 13,
| "LocalAutoWeit": [0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477],
| "LocalAutoWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 4224]
| },
| "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
| }
| },
| "agamma_calib_V30": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "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, 1323, 1461, 1587, 1810, 2003, 2173, 2325, 2589, 2812, 3010, 3191, 3355, 3499, 3624, 3736, 3836, 3927, 4012, 4095]
| }
| },
| "adehaze_calib_v30": {
| "DehazeTuningPara": {
| "Enable": 0,
| "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": 0,
| "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, 1, 1, 1, 1, 1, 1, 1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.2, 1.15, 1.1, 1.1, 1.1, 1.1, 1.1, 1, 1],
| "enhance_chroma_len": 9
| }
| },
| "hist_setting": {
| "en": 0,
| "hist_para_en": 1,
| "HistData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "hist_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_gratio_len": 9,
| "hist_th_off": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "hist_th_off_len": 9,
| "hist_k": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_k_len": 9,
| "hist_min": [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
| "hist_min_len": 9,
| "hist_scale": [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
| "hist_scale_len": 9,
| "cfg_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "cfg_gratio_len": 9
| }
| }
| }
| },
| "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": 1,
| "point_en": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 7,
| "wrapy": 7,
| "wrapx_num": 480,
| "wrapy_num": 270,
| "point_x": [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [2, 6, 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
| }
| }
| }
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-007, 1.27247e-010]
| }
| },
| "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
| }
| },
| "cproc": {
| "param": {
| "enable": 1,
| "brightness": 128,
| "contrast": 128,
| "saturation": 128,
| "hue": 128
| }
| },
| "ie": {
| "param": {
| "enable": 0,
| "mode": 0
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lsc_v2": {
| "common": {
| "enable": 1,
| "resolutionAll": [{
| "name": "2112x1568",
| "lsc_sect_size_x": [132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132],
| "lsc_sect_size_y": [98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.1508, 2.2811],
| "tableUsed": [{
| "name": "A_30"
| }, {
| "name": "A_70"
| }, {
| "name": "A_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.6596, 2.0122],
| "tableUsed": [{
| "name": "CWF_30"
| }, {
| "name": "CWF_70"
| }, {
| "name": "CWF_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.689, 1.6099],
| "tableUsed": [{
| "name": "D50_30"
| }, {
| "name": "D50_70"
| }, {
| "name": "D50_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [2.0103, 1.5179],
| "tableUsed": [{
| "name": "D65_30"
| }, {
| "name": "D65_70"
| }, {
| "name": "D65_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [2.0419, 1.3312],
| "tableUsed": [{
| "name": "D75_30"
| }, {
| "name": "D75_70"
| }, {
| "name": "D75_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.9443, 2.5471],
| "tableUsed": [{
| "name": "HZ_30"
| }, {
| "name": "HZ_70"
| }, {
| "name": "HZ_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.5487, 1.9658],
| "tableUsed": [{
| "name": "TL84_30"
| }, {
| "name": "TL84_70"
| }, {
| "name": "TL84_100"
| }],
| "tableUsed_len": 3,
| "gains": [1, 4, 8, 16],
| "gains_len": 4,
| "vig": [100, 90, 70, 50],
| "vig_len": 4
| }],
| "illAll_len": 7
| },
| "tbl": {
| "tableAll": [{
| "name": "2112x1568_A_30",
| "resolution": "2112x1568",
| "illumination": "A",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1873, 2020, 2016, 1985, 1903, 1859, 1804, 1766, 1764, 1796, 1830, 1903, 1964, 2032, 2076, 2084, 1990, 1981, 2047, 2035, 1976, 1875, 1798, 1727, 1688, 1668, 1697, 1769, 1835, 1933, 2036, 2094, 2153, 2080, 2004, 2078, 1994, 1887, 1775, 1678, 1600, 1546, 1530, 1569, 1636, 1723, 1836, 1952, 2063, 2126, 2127, 1991, 2038, 1929, 1808, 1686, 1556, 1467, 1412, 1398, 1427, 1504, 1617, 1740, 1883, 2019, 2113, 2100, 2003, 1999, 1876, 1737, 1583, 1460, 1349, 1292, 1272, 1303, 1389, 1511, 1655, 1815, 1965, 2076, 2101, 1996, 1962, 1822, 1659, 1498, 1357, 1252, 1181, 1167, 1204, 1285, 1415, 1569, 1743, 1910, 2056, 2093, 1982, 1934, 1782, 1614, 1431, 1288, 1174, 1109, 1096, 1128, 1211, 1345, 1506, 1688, 1865, 2017, 2075, 1975, 1908, 1764, 1569, 1394, 1237, 1129, 1062, 1046, 1083, 1163, 1291, 1459, 1651, 1835, 2001, 2052, 1955, 1901, 1745, 1568, 1376, 1221, 1106, 1043, 1024, 1060, 1141, 1272, 1438, 1634, 1818, 1987, 2051, 1942, 1896, 1745, 1565, 1386, 1228, 1112, 1046, 1034, 1065, 1147, 1278, 1449, 1639, 1819, 1982, 2059, 1969, 1910, 1772, 1591, 1406, 1258, 1139, 1077, 1061, 1095, 1174, 1308, 1469, 1658, 1838, 1984, 2053, 1962, 1931, 1806, 1635, 1462, 1311, 1203, 1132, 1118, 1160, 1229, 1357, 1515, 1693, 1864, 2001, 2039, 1988, 1966, 1849, 1692, 1536, 1399, 1284, 1219, 1203, 1237, 1317, 1435, 1587, 1755, 1898, 2026, 2061, 1956, 1989, 1888, 1759, 1616, 1484, 1385, 1328, 1309, 1339, 1411, 1524, 1660, 1802, 1948, 2045, 2067, 1974, 2005, 1943, 1838, 1719, 1605, 1506, 1443, 1431, 1459, 1526, 1621, 1736, 1870, 1987, 2063, 2058, 1951, 2009, 1987, 1896, 1801, 1712, 1621, 1575, 1565, 1586, 1649, 1726, 1826, 1938, 2021, 2078, 2037, 1839, 1953, 1934, 1909, 1825, 1766, 1700, 1664, 1661, 1659, 1705, 1785, 1858, 1940, 1988, 2012, 1910]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1712, 1814, 1817, 1784, 1741, 1686, 1635, 1612, 1603, 1622, 1670, 1717, 1774, 1829, 1851, 1877, 1812, 1786, 1832, 1817, 1764, 1695, 1630, 1574, 1548, 1534, 1554, 1604, 1669, 1733, 1812, 1864, 1899, 1875, 1806, 1843, 1775, 1701, 1624, 1547, 1480, 1442, 1432, 1455, 1509, 1581, 1666, 1765, 1837, 1888, 1894, 1802, 1810, 1736, 1648, 1558, 1454, 1383, 1336, 1322, 1347, 1408, 1504, 1603, 1704, 1795, 1877, 1892, 1792, 1788, 1698, 1598, 1487, 1375, 1289, 1243, 1221, 1253, 1323, 1418, 1541, 1653, 1766, 1842, 1879, 1790, 1752, 1660, 1542, 1415, 1304, 1210, 1154, 1142, 1170, 1240, 1352, 1480, 1605, 1724, 1831, 1861, 1782, 1733, 1627, 1504, 1372, 1245, 1150, 1090, 1083, 1106, 1178, 1293, 1425, 1571, 1700, 1810, 1861, 1767, 1726, 1613, 1470, 1336, 1208, 1109, 1054, 1040, 1075, 1145, 1256, 1392, 1546, 1684, 1792, 1868, 1772, 1710, 1599, 1456, 1319, 1192, 1096, 1036, 1024, 1054, 1128, 1245, 1380, 1533, 1665, 1797, 1859, 1762, 1706, 1596, 1465, 1327, 1200, 1097, 1045, 1031, 1063, 1139, 1248, 1384, 1537, 1680, 1797, 1858, 1756, 1713, 1607, 1486, 1348, 1226, 1129, 1068, 1056, 1085, 1160, 1274, 1409, 1555, 1692, 1801, 1851, 1773, 1736, 1639, 1521, 1397, 1278, 1179, 1122, 1111, 1138, 1210, 1317, 1452, 1586, 1705, 1813, 1856, 1774, 1754, 1675, 1562, 1443, 1338, 1248, 1198, 1184, 1214, 1283, 1383, 1499, 1625, 1737, 1828, 1869, 1775, 1774, 1708, 1614, 1518, 1417, 1331, 1287, 1277, 1298, 1363, 1456, 1558, 1673, 1769, 1847, 1866, 1777, 1801, 1741, 1671, 1594, 1497, 1433, 1385, 1383, 1398, 1458, 1537, 1627, 1724, 1805, 1852, 1872, 1762, 1803, 1772, 1723, 1658, 1593, 1524, 1488, 1481, 1497, 1549, 1620, 1698, 1777, 1840, 1872, 1853, 1694, 1776, 1772, 1754, 1690, 1639, 1605, 1576, 1568, 1576, 1618, 1671, 1737, 1788, 1831, 1855, 1775]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1724, 1817, 1815, 1795, 1739, 1692, 1658, 1624, 1622, 1641, 1677, 1723, 1773, 1827, 1859, 1874, 1809, 1803, 1844, 1824, 1767, 1697, 1636, 1586, 1553, 1552, 1572, 1609, 1668, 1740, 1801, 1867, 1902, 1872, 1813, 1855, 1786, 1712, 1630, 1552, 1491, 1449, 1437, 1460, 1511, 1581, 1662, 1759, 1835, 1881, 1891, 1824, 1817, 1742, 1651, 1556, 1461, 1390, 1338, 1331, 1357, 1412, 1501, 1595, 1703, 1793, 1865, 1885, 1822, 1799, 1704, 1601, 1487, 1379, 1296, 1241, 1228, 1257, 1325, 1415, 1528, 1649, 1760, 1841, 1882, 1807, 1776, 1670, 1544, 1419, 1308, 1210, 1160, 1145, 1170, 1236, 1350, 1465, 1594, 1715, 1811, 1859, 1802, 1743, 1640, 1503, 1368, 1248, 1150, 1093, 1086, 1106, 1180, 1288, 1418, 1554, 1687, 1799, 1864, 1795, 1732, 1615, 1478, 1333, 1206, 1112, 1060, 1037, 1068, 1136, 1249, 1391, 1533, 1672, 1786, 1856, 1783, 1721, 1598, 1458, 1319, 1190, 1093, 1042, 1024, 1052, 1119, 1232, 1370, 1518, 1664, 1782, 1852, 1787, 1720, 1612, 1461, 1322, 1196, 1102, 1049, 1033, 1061, 1127, 1235, 1373, 1524, 1661, 1782, 1842, 1789, 1740, 1616, 1491, 1352, 1228, 1135, 1081, 1064, 1090, 1160, 1269, 1398, 1547, 1680, 1799, 1849, 1797, 1751, 1648, 1522, 1397, 1280, 1184, 1131, 1120, 1144, 1205, 1315, 1446, 1581, 1707, 1807, 1854, 1803, 1773, 1689, 1571, 1456, 1356, 1263, 1209, 1194, 1225, 1285, 1377, 1498, 1624, 1731, 1831, 1871, 1805, 1799, 1726, 1641, 1523, 1429, 1349, 1304, 1294, 1322, 1375, 1458, 1567, 1676, 1772, 1850, 1879, 1798, 1817, 1760, 1692, 1606, 1522, 1449, 1407, 1398, 1412, 1468, 1543, 1633, 1731, 1808, 1865, 1885, 1783, 1815, 1797, 1745, 1671, 1605, 1542, 1510, 1509, 1519, 1564, 1629, 1705, 1779, 1843, 1885, 1861, 1724, 1798, 1797, 1765, 1715, 1659, 1623, 1597, 1593, 1601, 1644, 1685, 1751, 1804, 1834, 1863, 1793]
| },
| "lsc_samples_blue": {
| "uCoeff": [1560, 1680, 1667, 1632, 1565, 1508, 1457, 1463, 1456, 1476, 1506, 1548, 1608, 1664, 1701, 1766, 1669, 1656, 1758, 1729, 1675, 1591, 1543, 1486, 1455, 1459, 1480, 1512, 1578, 1644, 1718, 1786, 1821, 1773, 1667, 1761, 1706, 1617, 1537, 1470, 1410, 1375, 1367, 1392, 1440, 1502, 1593, 1673, 1761, 1802, 1793, 1659, 1731, 1649, 1570, 1478, 1392, 1336, 1288, 1285, 1302, 1368, 1438, 1538, 1631, 1725, 1788, 1780, 1646, 1699, 1610, 1519, 1424, 1331, 1253, 1201, 1198, 1223, 1282, 1368, 1467, 1575, 1673, 1754, 1782, 1621, 1669, 1581, 1478, 1364, 1261, 1185, 1132, 1121, 1152, 1215, 1304, 1420, 1544, 1641, 1729, 1741, 1620, 1655, 1559, 1433, 1319, 1212, 1128, 1082, 1075, 1100, 1159, 1252, 1372, 1496, 1611, 1714, 1738, 1616, 1634, 1533, 1416, 1288, 1180, 1092, 1048, 1034, 1062, 1118, 1223, 1339, 1477, 1590, 1692, 1743, 1613, 1630, 1529, 1406, 1276, 1165, 1081, 1034, 1024, 1048, 1107, 1202, 1325, 1454, 1578, 1687, 1730, 1609, 1627, 1526, 1410, 1288, 1172, 1081, 1037, 1027, 1051, 1107, 1197, 1329, 1458, 1590, 1692, 1716, 1643, 1648, 1545, 1428, 1299, 1191, 1113, 1064, 1051, 1075, 1135, 1234, 1350, 1476, 1603, 1697, 1729, 1630, 1661, 1566, 1465, 1348, 1233, 1156, 1106, 1099, 1117, 1181, 1266, 1381, 1503, 1633, 1721, 1722, 1638, 1699, 1603, 1499, 1390, 1305, 1218, 1176, 1161, 1179, 1249, 1331, 1436, 1547, 1641, 1736, 1732, 1642, 1704, 1641, 1542, 1460, 1364, 1291, 1245, 1243, 1259, 1310, 1392, 1485, 1593, 1682, 1759, 1749, 1650, 1723, 1664, 1610, 1523, 1445, 1377, 1343, 1336, 1348, 1399, 1463, 1550, 1641, 1724, 1771, 1771, 1648, 1730, 1702, 1642, 1576, 1515, 1449, 1413, 1411, 1430, 1467, 1529, 1606, 1683, 1757, 1799, 1762, 1553, 1646, 1634, 1594, 1538, 1483, 1445, 1417, 1421, 1411, 1445, 1508, 1565, 1624, 1667, 1717, 1624]
| }
| }, {
| "name": "2112x1568_A_70",
| "resolution": "2112x1568",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3006, 2839, 2591, 2400, 2198, 2085, 1984, 1920, 1912, 1957, 2016, 2142, 2279, 2468, 2686, 2957, 3278, 2937, 2719, 2505, 2302, 2097, 1958, 1846, 1787, 1761, 1797, 1896, 2001, 2169, 2383, 2592, 2897, 3135, 2800, 2652, 2365, 2125, 1928, 1780, 1671, 1602, 1580, 1627, 1711, 1832, 2002, 2209, 2460, 2725, 3024, 2659, 2506, 2220, 1986, 1793, 1618, 1506, 1440, 1422, 1456, 1546, 1687, 1855, 2077, 2338, 2616, 2842, 2594, 2393, 2112, 1872, 1656, 1499, 1369, 1305, 1282, 1316, 1411, 1554, 1737, 1965, 2224, 2501, 2752, 2527, 2302, 2016, 1762, 1548, 1379, 1262, 1185, 1171, 1209, 1296, 1441, 1627, 1860, 2126, 2430, 2676, 2468, 2239, 1951, 1699, 1467, 1302, 1178, 1110, 1096, 1130, 1216, 1362, 1549, 1784, 2052, 2350, 2608, 2437, 2190, 1920, 1642, 1424, 1247, 1131, 1062, 1046, 1084, 1166, 1303, 1494, 1735, 2005, 2313, 2551, 2400, 2177, 1893, 1639, 1403, 1229, 1108, 1043, 1024, 1060, 1143, 1282, 1471, 1713, 1982, 2289, 2543, 2388, 2174, 1897, 1638, 1415, 1237, 1114, 1046, 1034, 1066, 1149, 1289, 1484, 1721, 1986, 2287, 2561, 2448, 2207, 1938, 1673, 1441, 1271, 1143, 1077, 1062, 1096, 1178, 1323, 1509, 1750, 2019, 2306, 2575, 2474, 2259, 1997, 1734, 1508, 1330, 1210, 1135, 1120, 1163, 1238, 1379, 1567, 1802, 2069, 2355, 2593, 2571, 2347, 2076, 1818, 1602, 1432, 1300, 1228, 1210, 1247, 1335, 1472, 1660, 1894, 2140, 2430, 2689, 2600, 2436, 2166, 1925, 1711, 1538, 1417, 1350, 1328, 1361, 1445, 1583, 1763, 1979, 2245, 2517, 2786, 2747, 2538, 2294, 2062, 1861, 1695, 1565, 1488, 1472, 1505, 1588, 1713, 1882, 2104, 2356, 2628, 2900, 2877, 2658, 2435, 2195, 2003, 1854, 1722, 1658, 1643, 1671, 1755, 1871, 2035, 2251, 2485, 2771, 3049, 2925, 2718, 2462, 2291, 2094, 1968, 1856, 1796, 1788, 1791, 1861, 1992, 2137, 2335, 2547, 2825, 3091]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2630, 2465, 2277, 2112, 1982, 1866, 1775, 1734, 1719, 1746, 1819, 1905, 2025, 2176, 2331, 2579, 2864, 2547, 2363, 2185, 2018, 1870, 1755, 1667, 1626, 1607, 1633, 1702, 1802, 1918, 2082, 2256, 2474, 2726, 2441, 2288, 2062, 1889, 1747, 1628, 1537, 1486, 1472, 1501, 1569, 1668, 1798, 1970, 2148, 2358, 2601, 2339, 2173, 1965, 1790, 1644, 1504, 1414, 1358, 1342, 1371, 1442, 1561, 1697, 1858, 2042, 2271, 2492, 2256, 2097, 1884, 1707, 1547, 1406, 1306, 1253, 1229, 1264, 1341, 1453, 1608, 1773, 1970, 2173, 2395, 2208, 2016, 1815, 1626, 1457, 1323, 1218, 1157, 1145, 1174, 1249, 1374, 1529, 1700, 1895, 2124, 2318, 2166, 1971, 1761, 1573, 1403, 1256, 1153, 1091, 1084, 1107, 1183, 1307, 1461, 1650, 1850, 2073, 2286, 2127, 1949, 1736, 1530, 1361, 1216, 1111, 1054, 1040, 1076, 1147, 1266, 1422, 1616, 1822, 2037, 2278, 2129, 1926, 1717, 1513, 1343, 1199, 1097, 1036, 1024, 1054, 1130, 1254, 1408, 1600, 1797, 2039, 2259, 2120, 1924, 1716, 1524, 1352, 1208, 1099, 1045, 1031, 1063, 1141, 1258, 1413, 1606, 1818, 2043, 2263, 2127, 1944, 1737, 1553, 1377, 1237, 1132, 1069, 1057, 1086, 1164, 1287, 1444, 1631, 1841, 2061, 2270, 2182, 1994, 1789, 1601, 1437, 1295, 1185, 1125, 1113, 1141, 1218, 1337, 1498, 1677, 1871, 2099, 2310, 2227, 2049, 1855, 1664, 1497, 1365, 1262, 1206, 1191, 1222, 1299, 1414, 1561, 1739, 1933, 2153, 2379, 2293, 2121, 1928, 1748, 1598, 1463, 1358, 1306, 1293, 1317, 1393, 1507, 1644, 1821, 2009, 2228, 2447, 2390, 2223, 2015, 1850, 1711, 1570, 1484, 1423, 1419, 1437, 1512, 1617, 1751, 1918, 2104, 2303, 2562, 2500, 2316, 2120, 1962, 1823, 1710, 1609, 1558, 1547, 1568, 1638, 1742, 1874, 2035, 2220, 2430, 2682, 2588, 2396, 2206, 2069, 1913, 1806, 1739, 1690, 1676, 1690, 1754, 1847, 1976, 2118, 2300, 2540, 2776]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2656, 2469, 2274, 2128, 1979, 1874, 1804, 1749, 1742, 1769, 1827, 1913, 2024, 2174, 2343, 2573, 2857, 2582, 2384, 2196, 2021, 1872, 1762, 1681, 1633, 1627, 1654, 1708, 1800, 1927, 2067, 2260, 2479, 2720, 2455, 2308, 2077, 1902, 1753, 1634, 1549, 1494, 1478, 1506, 1571, 1667, 1792, 1963, 2145, 2347, 2596, 2375, 2184, 1973, 1793, 1642, 1513, 1422, 1360, 1352, 1381, 1446, 1557, 1688, 1857, 2040, 2253, 2479, 2304, 2112, 1891, 1710, 1547, 1410, 1312, 1251, 1237, 1268, 1343, 1449, 1593, 1767, 1963, 2171, 2400, 2234, 2049, 1827, 1629, 1461, 1328, 1218, 1164, 1148, 1174, 1245, 1372, 1512, 1687, 1884, 2096, 2314, 2196, 1984, 1777, 1572, 1400, 1260, 1153, 1094, 1087, 1107, 1185, 1302, 1454, 1631, 1835, 2058, 2290, 2169, 1958, 1739, 1539, 1358, 1214, 1114, 1060, 1037, 1069, 1138, 1259, 1421, 1602, 1807, 2030, 2260, 2146, 1939, 1716, 1514, 1342, 1197, 1094, 1042, 1024, 1052, 1121, 1240, 1398, 1583, 1795, 2020, 2248, 2157, 1942, 1736, 1520, 1346, 1204, 1104, 1049, 1033, 1061, 1129, 1245, 1402, 1592, 1794, 2024, 2238, 2176, 1979, 1747, 1558, 1382, 1239, 1138, 1081, 1065, 1091, 1164, 1282, 1432, 1623, 1826, 2058, 2267, 2219, 2014, 1800, 1603, 1436, 1297, 1191, 1134, 1122, 1148, 1212, 1334, 1491, 1672, 1874, 2090, 2307, 2275, 2076, 1872, 1675, 1512, 1385, 1278, 1218, 1201, 1234, 1301, 1409, 1560, 1738, 1927, 2157, 2384, 2343, 2157, 1952, 1780, 1604, 1476, 1378, 1324, 1312, 1343, 1406, 1509, 1654, 1824, 2012, 2232, 2469, 2428, 2248, 2042, 1877, 1725, 1599, 1502, 1448, 1435, 1453, 1523, 1624, 1758, 1926, 2107, 2323, 2586, 2542, 2336, 2156, 1993, 1840, 1724, 1630, 1583, 1579, 1593, 1655, 1753, 1882, 2038, 2224, 2452, 2698, 2656, 2434, 2245, 2085, 1947, 1832, 1761, 1716, 1707, 1720, 1787, 1864, 1995, 2141, 2304, 2554, 2819]
| },
| "lsc_samples_blue": {
| "uCoeff": [2274, 2220, 2040, 1895, 1746, 1639, 1557, 1555, 1542, 1570, 1618, 1690, 1804, 1941, 2094, 2377, 2529, 2288, 2242, 2057, 1898, 1738, 1649, 1564, 1520, 1521, 1548, 1595, 1692, 1806, 1956, 2141, 2345, 2521, 2191, 2162, 1967, 1781, 1641, 1539, 1458, 1412, 1401, 1431, 1491, 1576, 1710, 1852, 2043, 2225, 2418, 2097, 2058, 1850, 1694, 1552, 1435, 1363, 1307, 1302, 1322, 1398, 1487, 1621, 1768, 1950, 2142, 2301, 2021, 1972, 1772, 1613, 1476, 1358, 1267, 1209, 1206, 1232, 1298, 1398, 1525, 1680, 1853, 2049, 2240, 1947, 1903, 1716, 1552, 1400, 1277, 1192, 1135, 1123, 1155, 1223, 1323, 1462, 1629, 1791, 1985, 2132, 1922, 1867, 1678, 1493, 1346, 1222, 1131, 1082, 1076, 1101, 1163, 1264, 1403, 1564, 1741, 1946, 2100, 1904, 1829, 1640, 1469, 1310, 1187, 1093, 1048, 1034, 1062, 1120, 1232, 1365, 1537, 1708, 1905, 2092, 1894, 1820, 1632, 1456, 1295, 1171, 1082, 1034, 1024, 1048, 1109, 1209, 1348, 1510, 1692, 1895, 2067, 1892, 1819, 1631, 1462, 1310, 1179, 1082, 1037, 1027, 1051, 1109, 1205, 1353, 1516, 1708, 1905, 2051, 1957, 1856, 1661, 1486, 1324, 1199, 1115, 1065, 1051, 1075, 1139, 1245, 1380, 1542, 1732, 1923, 2086, 1960, 1892, 1698, 1537, 1382, 1247, 1162, 1108, 1101, 1119, 1187, 1282, 1419, 1581, 1782, 1974, 2103, 2009, 1972, 1762, 1589, 1437, 1330, 1230, 1183, 1167, 1187, 1263, 1358, 1490, 1646, 1811, 2023, 2161, 2069, 2018, 1839, 1660, 1530, 1404, 1314, 1261, 1257, 1276, 1335, 1435, 1559, 1721, 1893, 2099, 2250, 2160, 2104, 1909, 1772, 1625, 1511, 1420, 1377, 1367, 1382, 1445, 1532, 1657, 1811, 1991, 2177, 2379, 2271, 2194, 2017, 1854, 1720, 1616, 1521, 1471, 1466, 1491, 1543, 1632, 1757, 1909, 2098, 2309, 2499, 2257, 2158, 1988, 1840, 1710, 1608, 1542, 1499, 1500, 1492, 1542, 1639, 1746, 1883, 2040, 2287, 2423]
| }
| }, {
| "name": "2112x1568_A_100",
| "resolution": "2112x1568",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3855, 3454, 3023, 2711, 2419, 2255, 2119, 2036, 2023, 2077, 2155, 2321, 2516, 2795, 3144, 3612, 4244, 3654, 3224, 2858, 2547, 2263, 2077, 1936, 1862, 1830, 1873, 1991, 2126, 2347, 2643, 2966, 3454, 3927, 3398, 3082, 2643, 2304, 2043, 1856, 1724, 1643, 1618, 1670, 1768, 1913, 2126, 2401, 2758, 3175, 3697, 3159, 2858, 2438, 2119, 1873, 1665, 1535, 1461, 1441, 1478, 1578, 1739, 1942, 2223, 2578, 2994, 3398, 3038, 2688, 2288, 1973, 1710, 1528, 1384, 1314, 1290, 1326, 1428, 1586, 1798, 2077, 2419, 2820, 3240, 2925, 2557, 2162, 1840, 1586, 1396, 1269, 1188, 1173, 1213, 1304, 1461, 1670, 1948, 2288, 2711, 3113, 2833, 2467, 2077, 1763, 1495, 1312, 1181, 1111, 1097, 1131, 1220, 1375, 1582, 1856, 2192, 2599, 3008, 2783, 2401, 2036, 1697, 1447, 1254, 1133, 1062, 1046, 1084, 1168, 1312, 1521, 1798, 2133, 2547, 2925, 2734, 2383, 2004, 1692, 1424, 1235, 1109, 1043, 1024, 1060, 1145, 1290, 1495, 1773, 2104, 2516, 2911, 2722, 2383, 2010, 1692, 1437, 1244, 1115, 1046, 1034, 1066, 1151, 1298, 1510, 1783, 2111, 2516, 2938, 2807, 2429, 2063, 1734, 1467, 1280, 1145, 1078, 1062, 1097, 1181, 1334, 1539, 1819, 2155, 2547, 2966, 2858, 2506, 2140, 1809, 1543, 1345, 1216, 1137, 1122, 1166, 1244, 1396, 1606, 1884, 2223, 2621, 3008, 3008, 2632, 2247, 1913, 1652, 1457, 1312, 1235, 1216, 1254, 1348, 1499, 1715, 1998, 2321, 2734, 3159, 3082, 2771, 2374, 2050, 1783, 1578, 1441, 1366, 1342, 1378, 1471, 1627, 1840, 2111, 2467, 2871, 3326, 3326, 2938, 2557, 2231, 1967, 1763, 1610, 1521, 1502, 1539, 1635, 1783, 1991, 2279, 2632, 3052, 3531, 3571, 3144, 2771, 2419, 2155, 1960, 1798, 1720, 1701, 1734, 1835, 1979, 2192, 2486, 2833, 3291, 3808, 3740, 3291, 2858, 2578, 2296, 2119, 1973, 1896, 1884, 1890, 1979, 2147, 2347, 2632, 2966, 3435, 3977]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3318, 2953, 2622, 2358, 2162, 2001, 1881, 1825, 1806, 1839, 1931, 2046, 2214, 2437, 2691, 3105, 3652, 3118, 2762, 2462, 2208, 2001, 1848, 1737, 1685, 1662, 1693, 1776, 1901, 2057, 2284, 2549, 2906, 3364, 2918, 2622, 2277, 2029, 1839, 1689, 1579, 1519, 1503, 1535, 1614, 1733, 1896, 2124, 2381, 2711, 3132, 2741, 2446, 2136, 1896, 1709, 1542, 1438, 1375, 1357, 1388, 1467, 1603, 1767, 1973, 2228, 2567, 2941, 2604, 2328, 2023, 1789, 1592, 1429, 1318, 1261, 1235, 1272, 1355, 1479, 1658, 1862, 2124, 2421, 2783, 2522, 2214, 1931, 1689, 1488, 1337, 1224, 1160, 1147, 1177, 1256, 1391, 1565, 1771, 2023, 2343, 2661, 2454, 2149, 1862, 1625, 1427, 1265, 1156, 1092, 1084, 1108, 1186, 1318, 1488, 1709, 1963, 2270, 2604, 2397, 2117, 1829, 1575, 1380, 1222, 1112, 1054, 1040, 1076, 1149, 1274, 1444, 1669, 1926, 2221, 2585, 2397, 2087, 1806, 1555, 1360, 1204, 1098, 1036, 1024, 1054, 1131, 1261, 1429, 1650, 1896, 2221, 2558, 2389, 2087, 1806, 1568, 1370, 1214, 1100, 1045, 1031, 1063, 1143, 1265, 1435, 1658, 1921, 2228, 2567, 2405, 2117, 1834, 1603, 1399, 1245, 1134, 1069, 1057, 1087, 1167, 1297, 1470, 1689, 1952, 2256, 2585, 2488, 2188, 1901, 1662, 1467, 1308, 1190, 1127, 1114, 1143, 1224, 1352, 1532, 1746, 1995, 2313, 2651, 2567, 2270, 1990, 1741, 1538, 1386, 1272, 1212, 1196, 1229, 1311, 1438, 1607, 1825, 2081, 2397, 2762, 2681, 2381, 2093, 1848, 1658, 1497, 1378, 1320, 1306, 1332, 1415, 1545, 1709, 1931, 2188, 2513, 2883, 2849, 2540, 2221, 1984, 1798, 1625, 1522, 1452, 1446, 1467, 1552, 1677, 1843, 2063, 2328, 2641, 3079, 3053, 2701, 2381, 2142, 1947, 1798, 1673, 1610, 1596, 1621, 1705, 1834, 2006, 2228, 2505, 2849, 3303, 3258, 2860, 2531, 2306, 2081, 1931, 1839, 1776, 1758, 1776, 1857, 1979, 2155, 2366, 2651, 3053, 3527]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3356, 2959, 2618, 2378, 2159, 2010, 1914, 1842, 1832, 1865, 1940, 2055, 2212, 2434, 2706, 3098, 3642, 3166, 2789, 2475, 2212, 2004, 1856, 1753, 1692, 1684, 1716, 1783, 1899, 2067, 2267, 2554, 2912, 3356, 2936, 2647, 2295, 2044, 1846, 1696, 1592, 1528, 1509, 1541, 1616, 1732, 1890, 2115, 2378, 2696, 3125, 2789, 2459, 2146, 1899, 1707, 1551, 1446, 1377, 1367, 1399, 1472, 1599, 1757, 1972, 2225, 2545, 2924, 2666, 2347, 2032, 1792, 1592, 1434, 1325, 1258, 1243, 1276, 1357, 1475, 1642, 1856, 2115, 2418, 2789, 2554, 2253, 1945, 1692, 1493, 1342, 1224, 1167, 1150, 1177, 1252, 1388, 1547, 1757, 2010, 2310, 2656, 2492, 2165, 1880, 1624, 1423, 1269, 1156, 1095, 1087, 1108, 1188, 1313, 1481, 1688, 1945, 2253, 2609, 2450, 2127, 1832, 1585, 1377, 1220, 1115, 1060, 1037, 1069, 1140, 1267, 1443, 1653, 1909, 2212, 2563, 2418, 2103, 1805, 1557, 1359, 1202, 1095, 1042, 1024, 1052, 1122, 1247, 1418, 1631, 1894, 2198, 2545, 2434, 2109, 1828, 1564, 1364, 1210, 1105, 1049, 1033, 1061, 1131, 1252, 1423, 1642, 1894, 2205, 2536, 2467, 2159, 1846, 1609, 1404, 1247, 1140, 1082, 1065, 1092, 1167, 1292, 1457, 1680, 1935, 2253, 2581, 2536, 2212, 1914, 1664, 1466, 1310, 1196, 1136, 1124, 1150, 1218, 1349, 1525, 1740, 1999, 2303, 2647, 2628, 2303, 2010, 1753, 1554, 1407, 1289, 1224, 1206, 1241, 1313, 1432, 1606, 1823, 2073, 2402, 2768, 2747, 2426, 2121, 1885, 1664, 1512, 1399, 1339, 1325, 1359, 1429, 1547, 1720, 1935, 2192, 2518, 2912, 2900, 2572, 2253, 2015, 1814, 1657, 1541, 1478, 1463, 1484, 1564, 1684, 1851, 2073, 2332, 2666, 3111, 3111, 2726, 2426, 2178, 1966, 1814, 1696, 1638, 1631, 1649, 1724, 1846, 2015, 2232, 2510, 2877, 3325, 3356, 2912, 2581, 2325, 2121, 1961, 1865, 1805, 1792, 1810, 1894, 1999, 2178, 2394, 2656, 3072, 3588]
| },
| "lsc_samples_blue": {
| "uCoeff": [2810, 2625, 2320, 2092, 1882, 1738, 1632, 1623, 1607, 1640, 1701, 1797, 1951, 2148, 2389, 2835, 3174, 2762, 2604, 2303, 2065, 1849, 1729, 1623, 1568, 1568, 1599, 1657, 1777, 1927, 2134, 2407, 2738, 3082, 2583, 2463, 2163, 1904, 1720, 1591, 1494, 1440, 1427, 1460, 1530, 1632, 1797, 1987, 2254, 2542, 2887, 2426, 2303, 2000, 1787, 1607, 1467, 1384, 1321, 1315, 1337, 1421, 1523, 1683, 1871, 2119, 2407, 2692, 2303, 2177, 1893, 1683, 1515, 1378, 1278, 1215, 1211, 1239, 1310, 1421, 1568, 1758, 1987, 2270, 2583, 2192, 2078, 1818, 1607, 1427, 1289, 1197, 1137, 1125, 1158, 1229, 1337, 1494, 1692, 1904, 2177, 2426, 2148, 2025, 1767, 1537, 1366, 1229, 1133, 1083, 1076, 1102, 1166, 1273, 1427, 1615, 1839, 2119, 2372, 2119, 1975, 1720, 1508, 1326, 1192, 1094, 1048, 1034, 1062, 1121, 1239, 1384, 1583, 1797, 2065, 2354, 2105, 1963, 1710, 1494, 1310, 1175, 1083, 1034, 1024, 1048, 1110, 1215, 1366, 1552, 1777, 2051, 2320, 2105, 1963, 1710, 1501, 1326, 1184, 1083, 1037, 1027, 1051, 1110, 1211, 1372, 1560, 1797, 2065, 2303, 2192, 2013, 1748, 1530, 1343, 1206, 1117, 1065, 1051, 1076, 1141, 1253, 1402, 1591, 1828, 2092, 2354, 2208, 2065, 1797, 1591, 1408, 1258, 1166, 1110, 1102, 1121, 1192, 1294, 1447, 1640, 1893, 2163, 2389, 2287, 2177, 1882, 1657, 1473, 1349, 1239, 1188, 1171, 1192, 1273, 1378, 1530, 1720, 1939, 2239, 2482, 2389, 2254, 1987, 1748, 1583, 1434, 1332, 1273, 1268, 1289, 1354, 1467, 1615, 1818, 2051, 2354, 2625, 2542, 2389, 2092, 1893, 1701, 1560, 1453, 1402, 1390, 1408, 1480, 1583, 1738, 1939, 2192, 2482, 2835, 2738, 2542, 2254, 2013, 1828, 1692, 1575, 1515, 1508, 1537, 1599, 1710, 1871, 2078, 2354, 2692, 3052, 2786, 2542, 2254, 2025, 1839, 1701, 1615, 1560, 1560, 1552, 1615, 1738, 1882, 2078, 2320, 2715, 3023]
| }
| }, {
| "name": "2112x1568_CWF_30",
| "resolution": "2112x1568",
| "illumination": "CWF",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1682, 1765, 1759, 1725, 1655, 1608, 1569, 1546, 1542, 1559, 1596, 1637, 1707, 1765, 1796, 1832, 1760, 1760, 1816, 1782, 1718, 1655, 1591, 1542, 1506, 1506, 1514, 1559, 1609, 1691, 1763, 1827, 1879, 1837, 1770, 1814, 1744, 1658, 1579, 1502, 1444, 1407, 1397, 1418, 1463, 1539, 1620, 1705, 1779, 1847, 1837, 1746, 1772, 1702, 1594, 1506, 1422, 1355, 1312, 1302, 1322, 1376, 1460, 1552, 1651, 1740, 1835, 1843, 1737, 1750, 1658, 1550, 1445, 1349, 1268, 1220, 1211, 1234, 1298, 1379, 1491, 1594, 1716, 1799, 1825, 1740, 1725, 1614, 1497, 1380, 1274, 1197, 1140, 1132, 1160, 1224, 1317, 1425, 1556, 1673, 1783, 1807, 1730, 1697, 1584, 1458, 1331, 1226, 1142, 1091, 1081, 1107, 1170, 1263, 1381, 1505, 1640, 1747, 1790, 1717, 1683, 1571, 1431, 1301, 1189, 1104, 1053, 1040, 1069, 1129, 1223, 1345, 1484, 1612, 1736, 1774, 1710, 1671, 1556, 1422, 1288, 1171, 1091, 1040, 1024, 1051, 1111, 1205, 1334, 1470, 1609, 1730, 1779, 1711, 1677, 1557, 1423, 1293, 1173, 1093, 1047, 1026, 1055, 1113, 1209, 1336, 1465, 1602, 1726, 1774, 1713, 1681, 1571, 1447, 1313, 1204, 1114, 1065, 1053, 1078, 1135, 1237, 1361, 1484, 1616, 1735, 1777, 1722, 1698, 1596, 1481, 1353, 1246, 1157, 1105, 1095, 1121, 1184, 1272, 1390, 1517, 1633, 1748, 1788, 1726, 1728, 1634, 1524, 1409, 1302, 1213, 1170, 1159, 1180, 1243, 1330, 1437, 1553, 1669, 1762, 1767, 1728, 1749, 1660, 1568, 1474, 1368, 1293, 1242, 1241, 1264, 1311, 1397, 1494, 1599, 1702, 1778, 1790, 1727, 1776, 1705, 1629, 1540, 1448, 1387, 1334, 1324, 1344, 1401, 1463, 1548, 1643, 1738, 1795, 1810, 1741, 1771, 1741, 1675, 1602, 1534, 1469, 1429, 1418, 1440, 1476, 1543, 1611, 1697, 1765, 1823, 1794, 1642, 1728, 1712, 1661, 1603, 1556, 1503, 1470, 1462, 1462, 1514, 1556, 1626, 1682, 1730, 1777, 1701]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1659, 1750, 1743, 1715, 1671, 1619, 1573, 1545, 1542, 1557, 1598, 1642, 1690, 1749, 1780, 1808, 1737, 1731, 1764, 1746, 1688, 1632, 1570, 1512, 1482, 1474, 1494, 1542, 1594, 1663, 1723, 1786, 1818, 1798, 1737, 1775, 1711, 1641, 1562, 1483, 1434, 1393, 1382, 1407, 1454, 1522, 1603, 1691, 1758, 1804, 1818, 1742, 1748, 1682, 1590, 1503, 1414, 1343, 1303, 1293, 1313, 1367, 1449, 1546, 1638, 1723, 1788, 1818, 1743, 1718, 1636, 1547, 1444, 1345, 1263, 1215, 1198, 1229, 1291, 1382, 1483, 1598, 1700, 1773, 1802, 1727, 1696, 1605, 1497, 1386, 1280, 1195, 1140, 1130, 1156, 1218, 1317, 1433, 1552, 1663, 1752, 1799, 1718, 1678, 1579, 1466, 1346, 1229, 1140, 1084, 1075, 1099, 1164, 1265, 1397, 1514, 1635, 1736, 1792, 1719, 1671, 1562, 1441, 1315, 1197, 1107, 1057, 1040, 1065, 1129, 1235, 1358, 1499, 1622, 1722, 1790, 1714, 1656, 1551, 1428, 1300, 1178, 1091, 1040, 1024, 1054, 1120, 1222, 1350, 1485, 1611, 1723, 1773, 1702, 1656, 1551, 1430, 1307, 1189, 1094, 1048, 1031, 1060, 1129, 1232, 1357, 1492, 1619, 1722, 1786, 1715, 1663, 1566, 1449, 1329, 1212, 1122, 1069, 1053, 1082, 1151, 1252, 1372, 1509, 1630, 1730, 1785, 1721, 1683, 1591, 1481, 1364, 1259, 1166, 1116, 1104, 1131, 1195, 1291, 1413, 1535, 1651, 1739, 1777, 1718, 1695, 1616, 1519, 1418, 1312, 1233, 1181, 1172, 1195, 1261, 1351, 1458, 1568, 1678, 1755, 1787, 1718, 1714, 1651, 1565, 1470, 1380, 1306, 1262, 1254, 1273, 1330, 1414, 1517, 1615, 1704, 1773, 1794, 1722, 1725, 1685, 1613, 1542, 1460, 1397, 1351, 1347, 1360, 1416, 1488, 1573, 1656, 1741, 1789, 1797, 1706, 1743, 1712, 1663, 1596, 1536, 1476, 1447, 1433, 1457, 1495, 1559, 1624, 1700, 1764, 1803, 1794, 1642, 1721, 1710, 1679, 1626, 1586, 1545, 1513, 1502, 1524, 1555, 1608, 1671, 1721, 1758, 1784, 1713]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1661, 1755, 1748, 1725, 1675, 1631, 1598, 1571, 1557, 1579, 1615, 1661, 1710, 1749, 1781, 1786, 1731, 1729, 1766, 1754, 1695, 1636, 1580, 1534, 1503, 1492, 1513, 1550, 1608, 1663, 1724, 1779, 1808, 1788, 1756, 1783, 1714, 1642, 1570, 1500, 1445, 1409, 1397, 1420, 1463, 1529, 1597, 1675, 1751, 1790, 1803, 1740, 1742, 1676, 1595, 1500, 1417, 1352, 1314, 1301, 1319, 1374, 1451, 1535, 1629, 1708, 1777, 1792, 1740, 1719, 1634, 1534, 1434, 1340, 1269, 1218, 1210, 1233, 1292, 1374, 1471, 1573, 1669, 1753, 1781, 1731, 1696, 1594, 1495, 1379, 1274, 1193, 1145, 1131, 1156, 1218, 1307, 1415, 1529, 1634, 1729, 1764, 1736, 1672, 1571, 1452, 1330, 1223, 1136, 1085, 1073, 1098, 1157, 1256, 1371, 1487, 1612, 1710, 1757, 1723, 1662, 1554, 1421, 1301, 1188, 1101, 1053, 1036, 1062, 1121, 1223, 1340, 1468, 1588, 1693, 1758, 1711, 1644, 1543, 1414, 1287, 1172, 1085, 1039, 1024, 1048, 1105, 1202, 1324, 1454, 1580, 1691, 1756, 1710, 1653, 1535, 1414, 1291, 1179, 1092, 1043, 1029, 1054, 1114, 1209, 1329, 1463, 1582, 1699, 1754, 1709, 1660, 1560, 1441, 1315, 1205, 1121, 1073, 1058, 1080, 1144, 1241, 1355, 1480, 1607, 1704, 1757, 1721, 1681, 1585, 1473, 1363, 1259, 1169, 1121, 1113, 1133, 1191, 1281, 1392, 1514, 1625, 1719, 1774, 1733, 1702, 1621, 1521, 1419, 1319, 1236, 1194, 1179, 1207, 1261, 1340, 1443, 1554, 1654, 1742, 1781, 1726, 1718, 1655, 1565, 1474, 1390, 1325, 1279, 1269, 1290, 1340, 1413, 1510, 1606, 1691, 1760, 1792, 1731, 1740, 1691, 1619, 1552, 1468, 1414, 1375, 1370, 1379, 1427, 1494, 1573, 1654, 1735, 1776, 1783, 1715, 1748, 1726, 1675, 1619, 1554, 1504, 1468, 1462, 1476, 1517, 1569, 1641, 1701, 1754, 1789, 1776, 1644, 1729, 1728, 1696, 1650, 1608, 1568, 1545, 1539, 1547, 1578, 1625, 1677, 1729, 1752, 1790, 1704]
| },
| "lsc_samples_blue": {
| "uCoeff": [1503, 1599, 1587, 1558, 1502, 1463, 1432, 1397, 1409, 1418, 1444, 1476, 1540, 1584, 1615, 1646, 1583, 1588, 1658, 1637, 1582, 1525, 1467, 1429, 1398, 1393, 1411, 1447, 1500, 1565, 1621, 1686, 1710, 1681, 1592, 1664, 1608, 1540, 1473, 1403, 1355, 1321, 1319, 1340, 1378, 1429, 1501, 1576, 1654, 1689, 1690, 1584, 1634, 1569, 1497, 1417, 1346, 1295, 1256, 1251, 1263, 1313, 1373, 1452, 1536, 1618, 1682, 1679, 1570, 1606, 1545, 1449, 1367, 1288, 1223, 1182, 1178, 1189, 1250, 1321, 1396, 1495, 1587, 1658, 1674, 1567, 1581, 1501, 1404, 1317, 1234, 1168, 1116, 1109, 1136, 1181, 1261, 1359, 1455, 1550, 1632, 1651, 1550, 1576, 1485, 1376, 1280, 1187, 1118, 1074, 1064, 1090, 1135, 1219, 1320, 1421, 1514, 1615, 1649, 1556, 1555, 1464, 1361, 1249, 1162, 1087, 1044, 1036, 1057, 1106, 1186, 1291, 1402, 1516, 1609, 1638, 1549, 1553, 1454, 1347, 1240, 1141, 1076, 1039, 1024, 1047, 1095, 1178, 1282, 1387, 1500, 1590, 1630, 1540, 1550, 1460, 1354, 1256, 1156, 1076, 1039, 1029, 1049, 1097, 1180, 1284, 1397, 1497, 1597, 1626, 1545, 1561, 1476, 1372, 1267, 1171, 1099, 1058, 1049, 1072, 1121, 1200, 1309, 1405, 1509, 1604, 1637, 1562, 1576, 1496, 1395, 1295, 1211, 1139, 1097, 1087, 1105, 1151, 1234, 1332, 1433, 1530, 1625, 1645, 1576, 1600, 1525, 1440, 1344, 1260, 1194, 1153, 1142, 1162, 1213, 1285, 1375, 1472, 1555, 1640, 1655, 1569, 1610, 1548, 1473, 1396, 1327, 1254, 1216, 1209, 1229, 1271, 1342, 1417, 1506, 1596, 1657, 1673, 1576, 1628, 1585, 1515, 1454, 1386, 1331, 1292, 1284, 1302, 1343, 1399, 1467, 1550, 1619, 1677, 1670, 1566, 1639, 1603, 1556, 1501, 1445, 1396, 1369, 1357, 1373, 1408, 1454, 1525, 1588, 1650, 1683, 1661, 1489, 1577, 1561, 1532, 1470, 1437, 1395, 1370, 1358, 1374, 1395, 1445, 1502, 1552, 1598, 1634, 1571]
| }
| }, {
| "name": "2112x1568_CWF_70",
| "resolution": "2112x1568",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2560, 2375, 2185, 2028, 1867, 1767, 1695, 1654, 1646, 1670, 1728, 1803, 1936, 2085, 2243, 2496, 2740, 2496, 2337, 2135, 1956, 1820, 1708, 1630, 1578, 1575, 1587, 1650, 1730, 1865, 2017, 2201, 2441, 2649, 2377, 2244, 2020, 1834, 1692, 1576, 1496, 1448, 1434, 1460, 1517, 1619, 1742, 1893, 2068, 2295, 2499, 2244, 2118, 1920, 1723, 1584, 1469, 1384, 1333, 1320, 1343, 1407, 1511, 1637, 1793, 1970, 2211, 2408, 2169, 2044, 1834, 1649, 1499, 1377, 1283, 1229, 1218, 1244, 1314, 1410, 1552, 1702, 1907, 2111, 2309, 2130, 1979, 1758, 1574, 1418, 1291, 1205, 1144, 1134, 1164, 1233, 1337, 1468, 1642, 1831, 2058, 2234, 2088, 1922, 1708, 1521, 1359, 1237, 1145, 1092, 1082, 1108, 1174, 1275, 1414, 1575, 1776, 1989, 2178, 2053, 1893, 1685, 1485, 1324, 1196, 1106, 1053, 1040, 1070, 1131, 1232, 1371, 1546, 1735, 1964, 2138, 2038, 1874, 1665, 1474, 1308, 1177, 1092, 1040, 1024, 1051, 1113, 1212, 1359, 1528, 1730, 1951, 2140, 2044, 1886, 1669, 1477, 1315, 1180, 1094, 1047, 1026, 1055, 1115, 1218, 1361, 1524, 1723, 1949, 2138, 2063, 1901, 1692, 1508, 1339, 1214, 1117, 1066, 1053, 1078, 1139, 1249, 1391, 1551, 1747, 1973, 2159, 2103, 1943, 1735, 1555, 1388, 1261, 1163, 1107, 1097, 1124, 1191, 1288, 1429, 1598, 1782, 2010, 2204, 2151, 2013, 1802, 1619, 1459, 1327, 1224, 1177, 1165, 1188, 1256, 1357, 1491, 1654, 1847, 2060, 2217, 2214, 2084, 1865, 1691, 1546, 1408, 1316, 1257, 1255, 1281, 1336, 1441, 1570, 1729, 1920, 2127, 2318, 2299, 2185, 1966, 1796, 1645, 1514, 1432, 1366, 1354, 1378, 1448, 1531, 1655, 1815, 2011, 2214, 2449, 2458, 2262, 2075, 1899, 1753, 1639, 1544, 1489, 1475, 1502, 1553, 1649, 1764, 1927, 2109, 2348, 2563, 2466, 2307, 2112, 1936, 1797, 1700, 1613, 1563, 1550, 1553, 1627, 1700, 1828, 1966, 2139, 2398, 2603]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2506, 2347, 2161, 2013, 1888, 1781, 1700, 1653, 1645, 1668, 1730, 1810, 1913, 2062, 2218, 2454, 2688, 2438, 2252, 2082, 1915, 1791, 1682, 1595, 1551, 1539, 1564, 1630, 1711, 1829, 1963, 2140, 2341, 2572, 2316, 2183, 1973, 1812, 1672, 1554, 1485, 1432, 1417, 1448, 1507, 1599, 1721, 1875, 2039, 2229, 2464, 2237, 2083, 1893, 1718, 1580, 1460, 1371, 1323, 1311, 1333, 1397, 1499, 1630, 1777, 1948, 2141, 2366, 2177, 1999, 1805, 1646, 1498, 1374, 1278, 1223, 1206, 1239, 1308, 1413, 1542, 1706, 1887, 2076, 2272, 2111, 1939, 1747, 1574, 1424, 1297, 1202, 1144, 1132, 1159, 1226, 1336, 1476, 1638, 1819, 2016, 2223, 2070, 1897, 1703, 1530, 1375, 1240, 1144, 1085, 1076, 1100, 1168, 1277, 1431, 1585, 1771, 1974, 2182, 2056, 1877, 1674, 1497, 1339, 1205, 1109, 1057, 1040, 1066, 1131, 1244, 1386, 1563, 1747, 1944, 2161, 2044, 1854, 1660, 1480, 1322, 1184, 1092, 1040, 1024, 1054, 1122, 1231, 1376, 1545, 1732, 1942, 2131, 2031, 1857, 1661, 1484, 1330, 1196, 1096, 1048, 1031, 1060, 1131, 1241, 1384, 1555, 1744, 1944, 2156, 2065, 1877, 1687, 1510, 1356, 1222, 1125, 1070, 1054, 1082, 1154, 1264, 1403, 1579, 1764, 1966, 2171, 2101, 1922, 1729, 1555, 1400, 1275, 1172, 1118, 1106, 1134, 1202, 1309, 1455, 1618, 1804, 1998, 2188, 2138, 1967, 1779, 1613, 1469, 1338, 1245, 1189, 1178, 1203, 1276, 1380, 1514, 1671, 1859, 2050, 2248, 2196, 2033, 1852, 1688, 1542, 1422, 1330, 1279, 1270, 1291, 1357, 1460, 1597, 1749, 1922, 2119, 2326, 2290, 2106, 1938, 1776, 1648, 1527, 1443, 1385, 1380, 1395, 1465, 1560, 1685, 1831, 2015, 2206, 2426, 2387, 2215, 2032, 1882, 1745, 1641, 1553, 1510, 1492, 1521, 1575, 1669, 1781, 1932, 2108, 2315, 2564, 2467, 2294, 2108, 1963, 1828, 1739, 1665, 1614, 1598, 1628, 1677, 1766, 1888, 2023, 2184, 2410, 2633]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2510, 2357, 2169, 2029, 1893, 1795, 1730, 1684, 1664, 1694, 1751, 1833, 1940, 2063, 2220, 2413, 2675, 2434, 2254, 2093, 1925, 1795, 1694, 1621, 1575, 1560, 1586, 1639, 1728, 1829, 1964, 2130, 2324, 2551, 2352, 2196, 1978, 1813, 1681, 1574, 1497, 1449, 1434, 1462, 1517, 1607, 1714, 1855, 2029, 2207, 2437, 2234, 2074, 1885, 1725, 1577, 1463, 1381, 1334, 1319, 1340, 1405, 1501, 1617, 1766, 1927, 2126, 2322, 2173, 2000, 1802, 1631, 1487, 1368, 1284, 1227, 1217, 1243, 1309, 1405, 1529, 1677, 1847, 2047, 2238, 2117, 1939, 1733, 1572, 1417, 1290, 1200, 1149, 1133, 1159, 1226, 1326, 1457, 1611, 1782, 1984, 2167, 2097, 1889, 1693, 1514, 1357, 1233, 1140, 1086, 1074, 1099, 1161, 1269, 1402, 1554, 1743, 1940, 2128, 2063, 1865, 1665, 1474, 1323, 1195, 1103, 1053, 1036, 1062, 1123, 1232, 1366, 1527, 1706, 1906, 2114, 2040, 1839, 1650, 1465, 1308, 1178, 1086, 1039, 1024, 1048, 1107, 1209, 1347, 1510, 1694, 1900, 2106, 2042, 1854, 1643, 1467, 1313, 1186, 1093, 1043, 1029, 1054, 1116, 1217, 1353, 1522, 1699, 1915, 2108, 2056, 1872, 1680, 1502, 1341, 1215, 1124, 1073, 1059, 1080, 1147, 1252, 1385, 1546, 1736, 1931, 2128, 2102, 1919, 1722, 1546, 1399, 1275, 1175, 1124, 1115, 1136, 1198, 1298, 1431, 1594, 1771, 1971, 2184, 2162, 1976, 1786, 1615, 1471, 1345, 1249, 1202, 1185, 1216, 1276, 1368, 1497, 1655, 1828, 2032, 2238, 2210, 2039, 1857, 1688, 1546, 1433, 1352, 1297, 1285, 1309, 1368, 1459, 1588, 1738, 1905, 2100, 2322, 2306, 2129, 1947, 1783, 1660, 1537, 1462, 1412, 1405, 1417, 1477, 1567, 1685, 1828, 2006, 2184, 2401, 2405, 2224, 2053, 1899, 1774, 1662, 1586, 1534, 1525, 1544, 1600, 1681, 1802, 1933, 2093, 2292, 2527, 2470, 2310, 2136, 1986, 1860, 1766, 1693, 1653, 1643, 1656, 1706, 1788, 1897, 2034, 2174, 2420, 2611]
| },
| "lsc_samples_blue": {
| "uCoeff": [2142, 2073, 1914, 1788, 1662, 1582, 1526, 1475, 1486, 1500, 1541, 1599, 1713, 1826, 1958, 2159, 2327, 2151, 2074, 1923, 1774, 1655, 1558, 1498, 1454, 1445, 1469, 1519, 1598, 1706, 1826, 1995, 2161, 2337, 2054, 2012, 1831, 1682, 1564, 1462, 1395, 1352, 1349, 1373, 1422, 1492, 1598, 1729, 1894, 2051, 2231, 1971, 1916, 1744, 1604, 1480, 1384, 1319, 1273, 1266, 1280, 1339, 1414, 1521, 1652, 1809, 1987, 2131, 1900, 1841, 1689, 1530, 1412, 1311, 1235, 1190, 1184, 1196, 1264, 1347, 1444, 1584, 1742, 1914, 2066, 1863, 1783, 1617, 1466, 1348, 1248, 1174, 1118, 1111, 1139, 1187, 1277, 1394, 1525, 1679, 1852, 1993, 1817, 1761, 1587, 1427, 1304, 1196, 1121, 1074, 1065, 1091, 1139, 1229, 1347, 1479, 1622, 1813, 1965, 1814, 1724, 1557, 1406, 1267, 1168, 1088, 1044, 1036, 1057, 1108, 1194, 1313, 1453, 1620, 1795, 1936, 1801, 1719, 1542, 1389, 1257, 1146, 1077, 1039, 1024, 1047, 1096, 1184, 1302, 1434, 1598, 1767, 1920, 1791, 1717, 1551, 1398, 1275, 1162, 1077, 1039, 1029, 1049, 1099, 1187, 1305, 1447, 1597, 1780, 1918, 1809, 1740, 1576, 1422, 1289, 1179, 1101, 1059, 1049, 1072, 1124, 1209, 1335, 1460, 1616, 1798, 1948, 1855, 1776, 1611, 1456, 1324, 1224, 1143, 1099, 1088, 1107, 1156, 1248, 1364, 1500, 1653, 1843, 1984, 1909, 1833, 1663, 1519, 1386, 1281, 1204, 1159, 1146, 1168, 1224, 1308, 1421, 1556, 1702, 1888, 2037, 1944, 1882, 1717, 1575, 1456, 1362, 1274, 1230, 1221, 1244, 1293, 1379, 1480, 1615, 1779, 1950, 2120, 2024, 1957, 1800, 1651, 1542, 1443, 1369, 1320, 1310, 1332, 1382, 1457, 1558, 1695, 1846, 2032, 2196, 2107, 2044, 1873, 1738, 1625, 1531, 1459, 1421, 1404, 1426, 1473, 1542, 1655, 1781, 1941, 2117, 2297, 2109, 2032, 1872, 1752, 1620, 1549, 1480, 1442, 1425, 1447, 1480, 1559, 1662, 1781, 1931, 2136, 2300]
| }
| }, {
| "name": "2112x1568_CWF_100",
| "resolution": "2112x1568",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3218, 2832, 2505, 2255, 2026, 1886, 1789, 1735, 1724, 1753, 1827, 1928, 2108, 2325, 2579, 2995, 3476, 3048, 2728, 2400, 2134, 1943, 1795, 1696, 1632, 1627, 1642, 1718, 1820, 1995, 2207, 2481, 2863, 3258, 2832, 2566, 2226, 1965, 1777, 1632, 1535, 1478, 1462, 1491, 1558, 1679, 1833, 2034, 2284, 2631, 2995, 2618, 2378, 2083, 1820, 1642, 1504, 1406, 1348, 1334, 1359, 1430, 1549, 1701, 1900, 2143, 2492, 2832, 2492, 2264, 1965, 1724, 1540, 1399, 1294, 1236, 1224, 1251, 1327, 1434, 1597, 1783, 2050, 2346, 2672, 2423, 2170, 1866, 1632, 1446, 1304, 1210, 1146, 1136, 1167, 1239, 1352, 1500, 1707, 1950, 2264, 2554, 2357, 2091, 1801, 1568, 1380, 1245, 1148, 1093, 1082, 1109, 1177, 1285, 1438, 1627, 1879, 2170, 2469, 2305, 2050, 1771, 1526, 1341, 1202, 1107, 1053, 1040, 1070, 1133, 1239, 1391, 1592, 1827, 2134, 2411, 2284, 2026, 1747, 1513, 1324, 1182, 1093, 1040, 1024, 1051, 1114, 1218, 1377, 1572, 1820, 2117, 2411, 2294, 2042, 1753, 1517, 1331, 1185, 1095, 1047, 1026, 1055, 1116, 1224, 1380, 1568, 1814, 2117, 2411, 2325, 2066, 1783, 1554, 1359, 1221, 1119, 1066, 1053, 1079, 1141, 1257, 1414, 1601, 1846, 2152, 2446, 2389, 2126, 1840, 1611, 1414, 1272, 1167, 1109, 1098, 1126, 1196, 1301, 1458, 1658, 1893, 2207, 2517, 2469, 2226, 1928, 1690, 1496, 1345, 1233, 1182, 1169, 1193, 1266, 1377, 1531, 1729, 1980, 2284, 2554, 2579, 2336, 2018, 1783, 1601, 1438, 1334, 1269, 1266, 1294, 1355, 1474, 1627, 1827, 2083, 2389, 2714, 2728, 2492, 2161, 1921, 1724, 1563, 1466, 1391, 1377, 1403, 1483, 1582, 1735, 1943, 2216, 2529, 2928, 2995, 2631, 2325, 2066, 1866, 1718, 1601, 1535, 1517, 1549, 1611, 1729, 1879, 2100, 2368, 2742, 3140, 3084, 2742, 2411, 2143, 1943, 1808, 1696, 1632, 1616, 1621, 1712, 1808, 1980, 2179, 2446, 2863, 3279]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3141, 2795, 2474, 2237, 2051, 1902, 1795, 1734, 1723, 1751, 1829, 1936, 2081, 2297, 2547, 2938, 3401, 2968, 2617, 2334, 2086, 1910, 1766, 1657, 1602, 1587, 1617, 1696, 1799, 1954, 2143, 2406, 2733, 3152, 2751, 2489, 2170, 1940, 1755, 1608, 1523, 1461, 1444, 1478, 1547, 1657, 1810, 2013, 2249, 2547, 2948, 2609, 2334, 2051, 1814, 1638, 1494, 1392, 1338, 1324, 1349, 1420, 1536, 1693, 1881, 2116, 2406, 2777, 2503, 2209, 1932, 1720, 1539, 1395, 1289, 1230, 1211, 1246, 1320, 1437, 1587, 1788, 2027, 2303, 2625, 2399, 2122, 1853, 1632, 1453, 1310, 1207, 1146, 1134, 1162, 1232, 1351, 1509, 1703, 1936, 2214, 2540, 2334, 2061, 1795, 1578, 1397, 1248, 1146, 1086, 1076, 1101, 1171, 1287, 1456, 1638, 1873, 2153, 2474, 2309, 2032, 1759, 1539, 1357, 1211, 1110, 1057, 1040, 1066, 1133, 1251, 1406, 1611, 1841, 2111, 2440, 2291, 2003, 1741, 1520, 1338, 1189, 1093, 1040, 1024, 1054, 1123, 1237, 1395, 1590, 1822, 2106, 2399, 2278, 2008, 1744, 1525, 1347, 1202, 1097, 1048, 1031, 1060, 1133, 1248, 1404, 1602, 1837, 2111, 2433, 2328, 2037, 1777, 1556, 1377, 1230, 1127, 1070, 1054, 1083, 1157, 1273, 1427, 1632, 1865, 2143, 2460, 2386, 2101, 1833, 1611, 1427, 1287, 1176, 1120, 1107, 1136, 1207, 1322, 1486, 1680, 1919, 2192, 2496, 2453, 2170, 1902, 1683, 1507, 1357, 1255, 1194, 1183, 1209, 1287, 1402, 1556, 1748, 1994, 2272, 2594, 2555, 2272, 2003, 1780, 1596, 1453, 1349, 1292, 1281, 1304, 1377, 1494, 1657, 1849, 2086, 2379, 2724, 2716, 2392, 2127, 1898, 1727, 1578, 1478, 1411, 1404, 1422, 1501, 1614, 1769, 1962, 2220, 2518, 2898, 2898, 2570, 2272, 2046, 1857, 1720, 1611, 1558, 1536, 1570, 1635, 1751, 1898, 2106, 2366, 2699, 3141, 3085, 2724, 2406, 2175, 1980, 1853, 1755, 1690, 1670, 1706, 1769, 1885, 2051, 2249, 2503, 2879, 3322]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3147, 2808, 2484, 2256, 2057, 1919, 1829, 1769, 1744, 1780, 1853, 1963, 2112, 2298, 2550, 2883, 3382, 2963, 2620, 2348, 2097, 1915, 1780, 1686, 1629, 1610, 1641, 1706, 1818, 1954, 2144, 2394, 2711, 3124, 2799, 2506, 2176, 1941, 1765, 1629, 1536, 1480, 1462, 1493, 1558, 1666, 1802, 1990, 2238, 2520, 2913, 2604, 2323, 2042, 1822, 1635, 1498, 1403, 1350, 1333, 1356, 1428, 1538, 1679, 1869, 2092, 2387, 2719, 2498, 2210, 1928, 1703, 1527, 1389, 1295, 1234, 1223, 1250, 1321, 1428, 1572, 1755, 1981, 2268, 2581, 2407, 2122, 1837, 1629, 1445, 1303, 1205, 1151, 1135, 1162, 1232, 1340, 1488, 1673, 1894, 2176, 2470, 2368, 2052, 1784, 1561, 1378, 1241, 1142, 1087, 1074, 1100, 1164, 1278, 1426, 1604, 1841, 2112, 2407, 2317, 2018, 1748, 1514, 1340, 1201, 1104, 1053, 1036, 1062, 1124, 1239, 1385, 1572, 1795, 2066, 2381, 2286, 1985, 1730, 1503, 1323, 1183, 1087, 1039, 1024, 1048, 1108, 1215, 1365, 1552, 1780, 2057, 2368, 2292, 2004, 1723, 1506, 1329, 1191, 1094, 1043, 1029, 1054, 1117, 1223, 1372, 1566, 1787, 2076, 2374, 2317, 2032, 1769, 1547, 1361, 1222, 1126, 1074, 1059, 1081, 1150, 1261, 1407, 1595, 1833, 2102, 2407, 2387, 2097, 1825, 1601, 1426, 1287, 1180, 1126, 1116, 1138, 1203, 1311, 1460, 1654, 1881, 2160, 2491, 2484, 2182, 1910, 1686, 1509, 1365, 1259, 1208, 1190, 1222, 1287, 1389, 1538, 1730, 1958, 2250, 2581, 2573, 2280, 2009, 1780, 1601, 1465, 1372, 1311, 1297, 1323, 1389, 1493, 1647, 1837, 2066, 2355, 2719, 2737, 2421, 2138, 1906, 1741, 1589, 1498, 1440, 1431, 1445, 1514, 1622, 1769, 1958, 2210, 2491, 2864, 2922, 2581, 2298, 2066, 1890, 1744, 1647, 1584, 1572, 1595, 1663, 1765, 1923, 2107, 2348, 2669, 3090, 3090, 2745, 2442, 2204, 2018, 1885, 1787, 1734, 1720, 1737, 1802, 1910, 2061, 2262, 2491, 2893, 3291]
| },
| "lsc_samples_blue": {
| "uCoeff": [2621, 2428, 2159, 1961, 1782, 1671, 1596, 1533, 1544, 1561, 1614, 1691, 1843, 2007, 2215, 2543, 2886, 2574, 2387, 2137, 1917, 1753, 1626, 1550, 1496, 1485, 1512, 1573, 1671, 1812, 1979, 2226, 2499, 2829, 2401, 2273, 1998, 1789, 1633, 1506, 1426, 1376, 1371, 1398, 1455, 1539, 1671, 1843, 2075, 2323, 2637, 2261, 2127, 1875, 1684, 1528, 1412, 1337, 1285, 1277, 1293, 1358, 1445, 1573, 1739, 1952, 2215, 2470, 2148, 2017, 1797, 1590, 1445, 1329, 1244, 1195, 1189, 1202, 1274, 1367, 1480, 1651, 1859, 2106, 2361, 2085, 1935, 1704, 1512, 1371, 1259, 1179, 1120, 1112, 1141, 1192, 1289, 1421, 1578, 1775, 2017, 2250, 2017, 1900, 1664, 1465, 1321, 1202, 1123, 1075, 1065, 1092, 1141, 1237, 1367, 1522, 1704, 1961, 2203, 2007, 1851, 1626, 1440, 1281, 1173, 1089, 1044, 1036, 1057, 1109, 1199, 1329, 1491, 1697, 1935, 2159, 1989, 1843, 1608, 1421, 1270, 1150, 1078, 1039, 1024, 1047, 1097, 1189, 1317, 1470, 1671, 1900, 2137, 1979, 1843, 1620, 1431, 1289, 1166, 1078, 1039, 1029, 1049, 1100, 1192, 1321, 1485, 1671, 1917, 2137, 2007, 1875, 1651, 1460, 1305, 1185, 1103, 1059, 1049, 1073, 1126, 1216, 1354, 1501, 1697, 1944, 2181, 2075, 1926, 1697, 1501, 1346, 1233, 1147, 1100, 1089, 1109, 1160, 1259, 1389, 1550, 1746, 2007, 2238, 2159, 2007, 1767, 1578, 1417, 1297, 1212, 1163, 1150, 1173, 1233, 1325, 1455, 1620, 1812, 2075, 2323, 2226, 2085, 1843, 1651, 1501, 1389, 1289, 1240, 1230, 1255, 1309, 1407, 1528, 1697, 1917, 2170, 2456, 2361, 2203, 1961, 1753, 1608, 1485, 1398, 1341, 1329, 1354, 1412, 1501, 1626, 1804, 2017, 2298, 2590, 2513, 2348, 2075, 1875, 1718, 1596, 1506, 1460, 1440, 1465, 1522, 1608, 1753, 1926, 2159, 2442, 2774, 2574, 2374, 2106, 1917, 1732, 1633, 1544, 1496, 1475, 1501, 1544, 1645, 1782, 1952, 2181, 2513, 2847]
| }
| }, {
| "name": "2112x1568_D50_30",
| "resolution": "2112x1568",
| "illumination": "D50",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1781, 1914, 1879, 1844, 1786, 1732, 1674, 1658, 1641, 1664, 1692, 1752, 1807, 1867, 1914, 1961, 1891, 1883, 1954, 1921, 1860, 1768, 1683, 1631, 1582, 1577, 1593, 1648, 1713, 1789, 1867, 1938, 1982, 1973, 1911, 1960, 1878, 1788, 1684, 1594, 1521, 1459, 1450, 1478, 1536, 1621, 1714, 1809, 1903, 1970, 1968, 1903, 1924, 1827, 1720, 1600, 1489, 1415, 1356, 1343, 1368, 1423, 1531, 1638, 1746, 1856, 1950, 1958, 1895, 1883, 1782, 1661, 1512, 1398, 1306, 1247, 1236, 1266, 1331, 1428, 1562, 1691, 1809, 1916, 1948, 1889, 1857, 1724, 1588, 1446, 1321, 1222, 1160, 1144, 1175, 1245, 1362, 1491, 1637, 1756, 1889, 1932, 1895, 1837, 1705, 1555, 1397, 1261, 1160, 1089, 1082, 1107, 1180, 1291, 1444, 1587, 1730, 1859, 1920, 1871, 1829, 1674, 1514, 1351, 1219, 1117, 1055, 1038, 1069, 1139, 1250, 1398, 1558, 1716, 1844, 1904, 1861, 1812, 1671, 1507, 1337, 1204, 1102, 1038, 1024, 1045, 1117, 1232, 1379, 1541, 1695, 1834, 1885, 1863, 1814, 1668, 1514, 1347, 1206, 1106, 1043, 1026, 1055, 1125, 1237, 1390, 1543, 1704, 1836, 1896, 1862, 1837, 1705, 1540, 1377, 1238, 1129, 1069, 1050, 1079, 1155, 1264, 1406, 1560, 1705, 1844, 1903, 1864, 1842, 1731, 1578, 1421, 1292, 1186, 1121, 1109, 1135, 1197, 1314, 1451, 1594, 1737, 1865, 1898, 1895, 1883, 1768, 1632, 1485, 1363, 1258, 1196, 1180, 1209, 1271, 1374, 1503, 1643, 1782, 1892, 1912, 1894, 1898, 1805, 1689, 1563, 1448, 1348, 1283, 1279, 1298, 1359, 1452, 1563, 1695, 1805, 1907, 1939, 1893, 1933, 1855, 1761, 1655, 1552, 1448, 1397, 1384, 1405, 1461, 1543, 1643, 1748, 1863, 1933, 1929, 1883, 1926, 1888, 1815, 1729, 1631, 1557, 1508, 1499, 1513, 1552, 1637, 1716, 1822, 1904, 1935, 1922, 1789, 1877, 1863, 1806, 1745, 1671, 1618, 1561, 1551, 1561, 1612, 1654, 1745, 1792, 1871, 1905, 1806]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1689, 1777, 1780, 1744, 1684, 1631, 1588, 1558, 1555, 1562, 1588, 1651, 1709, 1756, 1793, 1818, 1755, 1759, 1799, 1776, 1726, 1652, 1575, 1532, 1495, 1486, 1501, 1544, 1599, 1673, 1737, 1797, 1840, 1820, 1770, 1818, 1750, 1679, 1591, 1508, 1438, 1400, 1382, 1407, 1459, 1530, 1610, 1700, 1777, 1822, 1829, 1775, 1778, 1712, 1622, 1526, 1430, 1347, 1305, 1288, 1311, 1374, 1450, 1553, 1652, 1735, 1808, 1833, 1777, 1765, 1672, 1568, 1463, 1356, 1269, 1220, 1200, 1228, 1293, 1383, 1489, 1605, 1708, 1793, 1820, 1782, 1737, 1645, 1528, 1407, 1291, 1195, 1137, 1121, 1151, 1220, 1322, 1439, 1557, 1672, 1769, 1816, 1771, 1721, 1616, 1485, 1363, 1245, 1141, 1084, 1073, 1097, 1159, 1272, 1396, 1529, 1652, 1755, 1809, 1762, 1718, 1603, 1465, 1330, 1202, 1112, 1052, 1035, 1064, 1131, 1237, 1373, 1506, 1635, 1749, 1808, 1759, 1700, 1593, 1459, 1319, 1194, 1096, 1042, 1024, 1049, 1120, 1231, 1358, 1503, 1635, 1737, 1804, 1750, 1707, 1593, 1460, 1324, 1199, 1101, 1048, 1032, 1055, 1129, 1234, 1366, 1506, 1642, 1737, 1812, 1763, 1709, 1609, 1482, 1348, 1233, 1132, 1069, 1057, 1080, 1156, 1256, 1387, 1524, 1648, 1755, 1813, 1757, 1733, 1632, 1511, 1385, 1274, 1179, 1123, 1104, 1130, 1200, 1300, 1419, 1549, 1663, 1761, 1812, 1760, 1749, 1661, 1559, 1445, 1331, 1240, 1188, 1175, 1204, 1269, 1358, 1468, 1583, 1693, 1781, 1820, 1775, 1766, 1701, 1600, 1501, 1403, 1319, 1276, 1265, 1281, 1338, 1420, 1529, 1632, 1724, 1795, 1824, 1766, 1783, 1730, 1651, 1573, 1481, 1409, 1369, 1354, 1374, 1428, 1494, 1588, 1682, 1765, 1813, 1829, 1746, 1795, 1760, 1703, 1630, 1563, 1501, 1464, 1449, 1471, 1512, 1575, 1643, 1722, 1788, 1826, 1815, 1680, 1752, 1755, 1724, 1666, 1609, 1561, 1532, 1520, 1541, 1573, 1631, 1677, 1740, 1780, 1800, 1745]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1678, 1793, 1782, 1746, 1711, 1664, 1621, 1594, 1593, 1604, 1638, 1692, 1718, 1774, 1804, 1812, 1762, 1766, 1810, 1795, 1732, 1665, 1598, 1554, 1531, 1524, 1531, 1572, 1624, 1676, 1740, 1791, 1824, 1798, 1776, 1829, 1751, 1677, 1599, 1524, 1463, 1428, 1415, 1436, 1479, 1536, 1616, 1695, 1768, 1811, 1827, 1782, 1784, 1711, 1621, 1528, 1441, 1369, 1322, 1313, 1331, 1385, 1460, 1549, 1637, 1730, 1793, 1817, 1779, 1755, 1674, 1570, 1463, 1360, 1280, 1233, 1216, 1235, 1299, 1385, 1484, 1595, 1685, 1775, 1805, 1760, 1732, 1624, 1519, 1399, 1292, 1201, 1148, 1138, 1160, 1216, 1315, 1423, 1539, 1651, 1747, 1793, 1765, 1715, 1605, 1479, 1349, 1231, 1144, 1094, 1078, 1100, 1159, 1257, 1377, 1506, 1621, 1726, 1773, 1752, 1702, 1583, 1460, 1319, 1198, 1107, 1061, 1039, 1064, 1119, 1222, 1348, 1481, 1612, 1713, 1773, 1749, 1695, 1577, 1449, 1304, 1185, 1092, 1042, 1024, 1052, 1112, 1210, 1334, 1469, 1596, 1717, 1769, 1744, 1702, 1574, 1442, 1311, 1196, 1098, 1051, 1034, 1058, 1115, 1217, 1337, 1473, 1602, 1713, 1773, 1753, 1708, 1599, 1474, 1336, 1223, 1133, 1084, 1063, 1085, 1150, 1248, 1366, 1500, 1618, 1726, 1777, 1768, 1732, 1634, 1508, 1385, 1272, 1185, 1130, 1119, 1138, 1197, 1294, 1408, 1531, 1644, 1747, 1784, 1767, 1751, 1660, 1555, 1449, 1340, 1259, 1209, 1193, 1213, 1274, 1355, 1459, 1567, 1674, 1767, 1805, 1773, 1776, 1704, 1611, 1509, 1421, 1349, 1299, 1288, 1303, 1353, 1429, 1520, 1624, 1711, 1784, 1813, 1781, 1798, 1740, 1664, 1590, 1502, 1442, 1397, 1386, 1404, 1451, 1515, 1590, 1681, 1756, 1803, 1817, 1753, 1806, 1774, 1720, 1655, 1592, 1531, 1506, 1485, 1502, 1537, 1592, 1655, 1728, 1787, 1819, 1793, 1695, 1771, 1778, 1750, 1696, 1650, 1606, 1576, 1568, 1573, 1612, 1650, 1700, 1758, 1787, 1812, 1729]
| },
| "lsc_samples_blue": {
| "uCoeff": [1535, 1617, 1616, 1581, 1534, 1488, 1445, 1426, 1422, 1434, 1461, 1513, 1561, 1616, 1648, 1678, 1611, 1610, 1679, 1654, 1610, 1538, 1484, 1443, 1411, 1414, 1426, 1463, 1509, 1570, 1647, 1693, 1721, 1685, 1610, 1691, 1631, 1560, 1488, 1423, 1369, 1329, 1324, 1346, 1387, 1451, 1515, 1594, 1652, 1709, 1701, 1614, 1661, 1599, 1518, 1436, 1358, 1296, 1258, 1253, 1264, 1316, 1387, 1464, 1555, 1630, 1695, 1703, 1609, 1644, 1569, 1472, 1380, 1292, 1225, 1184, 1174, 1198, 1246, 1326, 1410, 1502, 1604, 1671, 1691, 1604, 1618, 1534, 1435, 1332, 1235, 1166, 1118, 1110, 1134, 1185, 1266, 1363, 1463, 1562, 1655, 1661, 1594, 1600, 1508, 1398, 1295, 1199, 1121, 1076, 1069, 1084, 1139, 1219, 1329, 1433, 1539, 1636, 1656, 1582, 1590, 1494, 1382, 1270, 1165, 1094, 1049, 1037, 1058, 1104, 1190, 1295, 1423, 1529, 1625, 1653, 1590, 1579, 1484, 1372, 1253, 1157, 1075, 1037, 1024, 1047, 1093, 1182, 1290, 1406, 1509, 1614, 1641, 1591, 1590, 1489, 1375, 1264, 1162, 1088, 1042, 1033, 1049, 1099, 1184, 1289, 1408, 1516, 1615, 1658, 1589, 1605, 1508, 1395, 1286, 1191, 1109, 1064, 1049, 1069, 1123, 1202, 1315, 1417, 1530, 1621, 1656, 1604, 1613, 1525, 1427, 1322, 1221, 1150, 1114, 1094, 1109, 1157, 1238, 1342, 1443, 1552, 1644, 1667, 1599, 1638, 1560, 1464, 1373, 1279, 1202, 1167, 1150, 1167, 1219, 1292, 1380, 1476, 1574, 1666, 1679, 1603, 1650, 1589, 1510, 1424, 1343, 1274, 1234, 1218, 1234, 1286, 1351, 1428, 1522, 1604, 1683, 1685, 1610, 1668, 1621, 1550, 1484, 1405, 1348, 1312, 1304, 1315, 1358, 1408, 1484, 1560, 1647, 1691, 1689, 1616, 1673, 1659, 1595, 1533, 1467, 1416, 1377, 1385, 1396, 1423, 1475, 1538, 1610, 1665, 1709, 1685, 1539, 1606, 1611, 1581, 1508, 1467, 1419, 1397, 1397, 1408, 1426, 1480, 1529, 1576, 1621, 1650, 1590]
| }
| }, {
| "name": "2112x1568_D50_70",
| "resolution": "2112x1568",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2789, 2646, 2376, 2198, 2041, 1925, 1824, 1789, 1764, 1796, 1846, 1950, 2069, 2232, 2430, 2733, 3047, 2742, 2565, 2339, 2146, 1962, 1818, 1735, 1666, 1656, 1678, 1754, 1855, 1988, 2156, 2364, 2613, 2921, 2632, 2470, 2205, 2000, 1819, 1683, 1583, 1505, 1493, 1526, 1600, 1713, 1855, 2026, 2239, 2484, 2736, 2510, 2340, 2085, 1878, 1693, 1543, 1449, 1380, 1364, 1392, 1459, 1590, 1738, 1909, 2124, 2378, 2603, 2422, 2231, 1991, 1781, 1576, 1431, 1323, 1257, 1244, 1278, 1350, 1463, 1632, 1817, 2026, 2277, 2507, 2361, 2159, 1895, 1680, 1491, 1341, 1231, 1164, 1147, 1179, 1254, 1385, 1541, 1737, 1935, 2202, 2427, 2336, 2109, 1857, 1632, 1431, 1274, 1164, 1090, 1083, 1108, 1185, 1305, 1482, 1668, 1887, 2139, 2374, 2283, 2086, 1810, 1580, 1378, 1227, 1119, 1055, 1038, 1070, 1141, 1260, 1428, 1630, 1861, 2105, 2332, 2261, 2059, 1804, 1571, 1362, 1211, 1103, 1038, 1024, 1045, 1119, 1240, 1407, 1608, 1833, 2088, 2297, 2271, 2066, 1803, 1580, 1373, 1214, 1108, 1043, 1026, 1055, 1127, 1247, 1420, 1613, 1846, 2095, 2319, 2287, 2109, 1857, 1615, 1409, 1249, 1132, 1070, 1050, 1079, 1158, 1276, 1440, 1638, 1857, 2118, 2349, 2323, 2139, 1903, 1668, 1463, 1310, 1193, 1124, 1111, 1138, 1205, 1333, 1496, 1686, 1911, 2169, 2374, 2422, 2231, 1973, 1748, 1544, 1393, 1272, 1204, 1186, 1218, 1286, 1405, 1565, 1761, 1991, 2242, 2449, 2495, 2303, 2056, 1840, 1651, 1498, 1377, 1302, 1296, 1317, 1389, 1502, 1651, 1847, 2056, 2315, 2570, 2599, 2428, 2173, 1965, 1783, 1634, 1501, 1436, 1420, 1445, 1515, 1624, 1769, 1948, 2183, 2428, 2666, 2742, 2520, 2290, 2086, 1912, 1755, 1648, 1581, 1567, 1586, 1642, 1763, 1897, 2096, 2314, 2534, 2818, 2809, 2580, 2350, 2144, 1987, 1846, 1754, 1672, 1657, 1672, 1747, 1825, 1987, 2124, 2363, 2629, 2850]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2575, 2398, 2219, 2055, 1905, 1796, 1718, 1669, 1661, 1673, 1718, 1821, 1939, 2072, 2239, 2472, 2729, 2494, 2309, 2126, 1967, 1816, 1688, 1618, 1566, 1552, 1572, 1632, 1717, 1842, 1982, 2156, 2376, 2615, 2376, 2249, 2027, 1859, 1707, 1584, 1490, 1439, 1417, 1448, 1513, 1609, 1729, 1887, 2065, 2256, 2483, 2293, 2126, 1933, 1757, 1607, 1477, 1376, 1325, 1306, 1332, 1405, 1500, 1638, 1794, 1964, 2170, 2391, 2232, 2064, 1851, 1671, 1519, 1385, 1284, 1229, 1208, 1237, 1310, 1415, 1550, 1715, 1896, 2104, 2302, 2196, 1996, 1796, 1610, 1447, 1309, 1202, 1140, 1123, 1154, 1228, 1342, 1483, 1644, 1830, 2039, 2249, 2150, 1954, 1747, 1552, 1394, 1256, 1145, 1084, 1074, 1098, 1163, 1285, 1430, 1602, 1791, 1999, 2207, 2120, 1939, 1724, 1525, 1355, 1210, 1114, 1052, 1035, 1064, 1133, 1247, 1402, 1571, 1763, 1980, 2188, 2110, 1912, 1710, 1516, 1342, 1202, 1097, 1042, 1024, 1049, 1122, 1239, 1384, 1565, 1761, 1961, 2177, 2102, 1925, 1713, 1518, 1349, 1207, 1103, 1048, 1032, 1055, 1131, 1243, 1394, 1571, 1771, 1964, 2194, 2138, 1939, 1739, 1548, 1377, 1244, 1135, 1070, 1058, 1080, 1160, 1269, 1419, 1596, 1787, 1999, 2214, 2157, 1990, 1780, 1591, 1423, 1291, 1185, 1126, 1106, 1133, 1207, 1319, 1461, 1634, 1818, 2028, 2242, 2205, 2041, 1837, 1661, 1499, 1359, 1253, 1195, 1181, 1212, 1284, 1388, 1526, 1689, 1878, 2087, 2302, 2293, 2109, 1919, 1730, 1578, 1448, 1345, 1294, 1281, 1299, 1366, 1466, 1611, 1770, 1948, 2152, 2376, 2369, 2196, 2000, 1824, 1685, 1552, 1456, 1406, 1387, 1411, 1478, 1567, 1703, 1864, 2049, 2243, 2483, 2468, 2302, 2102, 1936, 1788, 1674, 1582, 1530, 1510, 1538, 1595, 1688, 1804, 1962, 2144, 2353, 2606, 2556, 2351, 2180, 2027, 1881, 1768, 1684, 1638, 1620, 1649, 1699, 1796, 1896, 2049, 2219, 2439, 2707]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2551, 2426, 2222, 2058, 1942, 1838, 1759, 1712, 1707, 1724, 1779, 1873, 1951, 2098, 2257, 2460, 2745, 2508, 2327, 2154, 1974, 1833, 1716, 1644, 1607, 1595, 1607, 1665, 1747, 1846, 1985, 2147, 2350, 2572, 2388, 2267, 2029, 1858, 1717, 1602, 1517, 1471, 1454, 1479, 1536, 1615, 1736, 1881, 2052, 2240, 2479, 2304, 2136, 1932, 1757, 1610, 1490, 1399, 1343, 1333, 1353, 1417, 1511, 1633, 1776, 1956, 2148, 2365, 2236, 2050, 1853, 1673, 1519, 1390, 1296, 1243, 1224, 1245, 1315, 1417, 1543, 1703, 1867, 2078, 2277, 2161, 1989, 1770, 1600, 1439, 1310, 1208, 1151, 1140, 1163, 1224, 1334, 1465, 1623, 1803, 2009, 2212, 2141, 1946, 1734, 1545, 1379, 1242, 1147, 1095, 1079, 1101, 1163, 1270, 1409, 1576, 1754, 1962, 2153, 2105, 1918, 1700, 1518, 1343, 1206, 1109, 1061, 1039, 1064, 1121, 1231, 1374, 1542, 1735, 1932, 2136, 2096, 1905, 1691, 1504, 1326, 1192, 1093, 1042, 1024, 1052, 1114, 1218, 1358, 1527, 1713, 1934, 2126, 2094, 1918, 1690, 1498, 1334, 1203, 1100, 1051, 1034, 1058, 1117, 1226, 1362, 1533, 1723, 1932, 2136, 2123, 1937, 1726, 1539, 1365, 1234, 1136, 1084, 1064, 1086, 1153, 1260, 1397, 1569, 1750, 1962, 2159, 2174, 1989, 1782, 1587, 1423, 1288, 1192, 1133, 1121, 1141, 1205, 1312, 1449, 1613, 1796, 2009, 2199, 2215, 2045, 1836, 1656, 1505, 1368, 1273, 1218, 1200, 1221, 1289, 1384, 1516, 1670, 1853, 2067, 2277, 2290, 2124, 1922, 1744, 1587, 1468, 1378, 1318, 1306, 1323, 1382, 1476, 1600, 1760, 1932, 2136, 2357, 2396, 2219, 2014, 1840, 1705, 1576, 1494, 1436, 1422, 1444, 1503, 1592, 1705, 1862, 2035, 2226, 2462, 2481, 2320, 2123, 1959, 1820, 1708, 1617, 1578, 1551, 1574, 1624, 1708, 1820, 1969, 2142, 2343, 2562, 2589, 2386, 2216, 2064, 1922, 1820, 1740, 1690, 1677, 1687, 1747, 1820, 1927, 2075, 2229, 2460, 2670]
| },
| "lsc_samples_blue": {
| "uCoeff": [2215, 2105, 1959, 1822, 1705, 1614, 1542, 1509, 1502, 1519, 1562, 1645, 1741, 1872, 2010, 2217, 2395, 2196, 2110, 1947, 1810, 1672, 1578, 1514, 1469, 1470, 1487, 1537, 1609, 1712, 1860, 2004, 2179, 2345, 2087, 2054, 1863, 1708, 1583, 1485, 1412, 1361, 1354, 1380, 1432, 1517, 1615, 1751, 1892, 2082, 2252, 2021, 1956, 1784, 1630, 1502, 1397, 1320, 1274, 1269, 1281, 1342, 1429, 1535, 1675, 1824, 2005, 2172, 1963, 1894, 1720, 1557, 1426, 1316, 1238, 1191, 1180, 1206, 1260, 1353, 1460, 1592, 1764, 1932, 2094, 1920, 1833, 1659, 1502, 1364, 1249, 1172, 1121, 1112, 1137, 1192, 1282, 1399, 1534, 1694, 1884, 2009, 1883, 1793, 1615, 1452, 1320, 1208, 1124, 1076, 1070, 1084, 1143, 1229, 1356, 1493, 1653, 1840, 1977, 1852, 1771, 1592, 1430, 1290, 1171, 1096, 1049, 1037, 1058, 1106, 1197, 1317, 1477, 1635, 1817, 1958, 1861, 1753, 1578, 1418, 1271, 1163, 1076, 1037, 1024, 1047, 1094, 1189, 1311, 1456, 1609, 1799, 1936, 1866, 1771, 1587, 1422, 1283, 1168, 1089, 1042, 1033, 1049, 1101, 1192, 1311, 1459, 1619, 1804, 1966, 1876, 1799, 1615, 1449, 1309, 1199, 1111, 1065, 1049, 1070, 1126, 1211, 1341, 1474, 1642, 1820, 1977, 1920, 1826, 1647, 1493, 1353, 1234, 1155, 1116, 1096, 1111, 1163, 1252, 1376, 1511, 1681, 1868, 2018, 1946, 1886, 1708, 1547, 1418, 1302, 1213, 1174, 1155, 1174, 1231, 1316, 1426, 1562, 1726, 1925, 2075, 2003, 1940, 1770, 1620, 1489, 1381, 1296, 1249, 1230, 1249, 1310, 1389, 1493, 1635, 1790, 1988, 2142, 2087, 2018, 1849, 1696, 1578, 1464, 1388, 1342, 1332, 1346, 1399, 1467, 1578, 1708, 1885, 2054, 2229, 2207, 2101, 1955, 1791, 1666, 1558, 1482, 1430, 1436, 1451, 1491, 1568, 1672, 1810, 1963, 2159, 2345, 2226, 2086, 1952, 1822, 1670, 1588, 1510, 1474, 1471, 1487, 1519, 1603, 1699, 1815, 1968, 2165, 2344]
| }
| }, {
| "name": "2112x1568_D50_100",
| "resolution": "2112x1568",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3546, 3195, 2748, 2464, 2233, 2069, 1936, 1888, 1857, 1896, 1961, 2098, 2266, 2505, 2817, 3312, 3914, 3386, 3024, 2652, 2361, 2108, 1920, 1812, 1729, 1716, 1742, 1834, 1961, 2138, 2373, 2683, 3086, 3632, 3173, 2852, 2450, 2158, 1920, 1749, 1629, 1540, 1525, 1562, 1647, 1783, 1961, 2189, 2491, 2870, 3312, 2965, 2652, 2278, 1996, 1763, 1584, 1475, 1398, 1380, 1411, 1485, 1635, 1812, 2032, 2324, 2699, 3086, 2817, 2491, 2148, 1872, 1623, 1456, 1336, 1265, 1251, 1286, 1364, 1490, 1684, 1912, 2189, 2547, 2926, 2715, 2386, 2023, 1749, 1525, 1356, 1237, 1167, 1149, 1182, 1261, 1402, 1578, 1812, 2069, 2437, 2799, 2667, 2313, 1970, 1690, 1456, 1283, 1167, 1091, 1083, 1109, 1188, 1316, 1510, 1729, 2005, 2349, 2715, 2591, 2278, 1912, 1629, 1398, 1234, 1120, 1055, 1038, 1070, 1143, 1268, 1451, 1684, 1970, 2301, 2652, 2561, 2244, 1904, 1618, 1380, 1217, 1104, 1038, 1024, 1045, 1120, 1247, 1428, 1659, 1936, 2278, 2606, 2576, 2255, 1904, 1629, 1393, 1220, 1109, 1043, 1026, 1055, 1129, 1254, 1442, 1665, 1953, 2289, 2636, 2606, 2313, 1970, 1671, 1433, 1258, 1134, 1070, 1050, 1080, 1161, 1286, 1466, 1696, 1970, 2324, 2683, 2667, 2361, 2032, 1736, 1495, 1324, 1198, 1126, 1112, 1140, 1210, 1348, 1530, 1756, 2041, 2398, 2732, 2817, 2491, 2127, 1834, 1589, 1415, 1283, 1210, 1191, 1224, 1297, 1428, 1612, 1849, 2148, 2505, 2852, 2945, 2606, 2244, 1953, 1716, 1535, 1398, 1316, 1309, 1332, 1411, 1540, 1716, 1961, 2244, 2621, 3044, 3129, 2799, 2411, 2118, 1880, 1696, 1540, 1466, 1447, 1475, 1556, 1684, 1864, 2098, 2424, 2799, 3218, 3386, 2965, 2591, 2289, 2050, 1849, 1716, 1635, 1618, 1641, 1709, 1857, 2032, 2301, 2621, 2984, 3491, 3574, 3107, 2715, 2398, 2168, 1978, 1857, 1756, 1736, 1756, 1849, 1953, 2168, 2373, 2732, 3173, 3632]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3239, 2863, 2548, 2288, 2071, 1920, 1815, 1752, 1741, 1757, 1815, 1949, 2111, 2309, 2573, 2963, 3459, 3045, 2691, 2388, 2147, 1939, 1773, 1683, 1619, 1602, 1626, 1698, 1806, 1969, 2165, 2426, 2779, 3212, 2831, 2573, 2235, 1995, 1794, 1640, 1528, 1469, 1444, 1478, 1553, 1668, 1819, 2027, 2281, 2582, 2974, 2682, 2388, 2099, 1859, 1668, 1513, 1397, 1340, 1319, 1347, 1428, 1537, 1702, 1901, 2135, 2442, 2810, 2573, 2288, 1985, 1748, 1562, 1407, 1295, 1236, 1213, 1244, 1322, 1439, 1595, 1798, 2038, 2337, 2663, 2506, 2190, 1910, 1672, 1478, 1322, 1207, 1142, 1125, 1157, 1234, 1357, 1516, 1709, 1949, 2241, 2573, 2434, 2129, 1846, 1602, 1417, 1265, 1147, 1085, 1074, 1099, 1166, 1295, 1455, 1657, 1896, 2183, 2506, 2388, 2105, 1815, 1569, 1374, 1216, 1115, 1052, 1035, 1064, 1135, 1254, 1423, 1619, 1859, 2153, 2473, 2373, 2071, 1798, 1559, 1359, 1207, 1098, 1042, 1024, 1049, 1123, 1246, 1404, 1612, 1855, 2129, 2457, 2366, 2088, 1802, 1562, 1367, 1213, 1104, 1048, 1032, 1055, 1133, 1250, 1415, 1619, 1868, 2135, 2481, 2419, 2111, 1837, 1598, 1399, 1252, 1137, 1070, 1058, 1081, 1163, 1278, 1444, 1650, 1891, 2183, 2514, 2457, 2183, 1891, 1650, 1452, 1304, 1190, 1128, 1107, 1135, 1213, 1333, 1492, 1698, 1935, 2228, 2565, 2539, 2261, 1969, 1737, 1540, 1379, 1263, 1201, 1186, 1218, 1295, 1410, 1569, 1769, 2016, 2316, 2663, 2682, 2366, 2082, 1828, 1636, 1481, 1364, 1308, 1293, 1313, 1387, 1501, 1672, 1873, 2117, 2419, 2790, 2821, 2506, 2202, 1954, 1769, 1605, 1492, 1433, 1412, 1439, 1516, 1622, 1789, 2000, 2261, 2565, 2974, 3009, 2682, 2359, 2111, 1906, 1757, 1643, 1579, 1556, 1588, 1657, 1773, 1925, 2141, 2411, 2749, 3199, 3212, 2800, 2498, 2254, 2043, 1887, 1777, 1717, 1694, 1729, 1794, 1920, 2060, 2281, 2548, 2918, 3428]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3205, 2901, 2552, 2292, 2115, 1968, 1862, 1801, 1792, 1814, 1885, 2009, 2126, 2341, 2596, 2946, 3483, 3064, 2715, 2423, 2156, 1958, 1805, 1712, 1664, 1649, 1664, 1735, 1840, 1973, 2169, 2415, 2745, 3152, 2847, 2596, 2238, 1993, 1805, 1660, 1558, 1503, 1483, 1512, 1578, 1675, 1827, 2020, 2265, 2561, 2969, 2696, 2400, 2097, 1858, 1671, 1527, 1422, 1359, 1347, 1369, 1441, 1549, 1697, 1880, 2126, 2415, 2775, 2578, 2272, 1988, 1751, 1562, 1412, 1308, 1250, 1230, 1252, 1328, 1441, 1588, 1784, 2004, 2306, 2631, 2462, 2181, 1880, 1660, 1469, 1324, 1214, 1154, 1142, 1166, 1230, 1349, 1497, 1686, 1918, 2206, 2527, 2423, 2120, 1831, 1594, 1401, 1250, 1150, 1096, 1079, 1102, 1166, 1279, 1433, 1628, 1853, 2138, 2438, 2370, 2080, 1788, 1562, 1361, 1212, 1110, 1061, 1039, 1064, 1122, 1238, 1394, 1588, 1827, 2097, 2408, 2356, 2063, 1776, 1546, 1342, 1197, 1094, 1042, 1024, 1052, 1115, 1224, 1376, 1571, 1801, 2097, 2393, 2356, 2080, 1776, 1540, 1352, 1209, 1101, 1051, 1034, 1058, 1118, 1232, 1381, 1578, 1814, 2097, 2408, 2400, 2109, 1822, 1588, 1386, 1242, 1138, 1085, 1064, 1087, 1156, 1269, 1420, 1621, 1849, 2138, 2446, 2478, 2181, 1894, 1646, 1452, 1301, 1197, 1135, 1123, 1143, 1210, 1326, 1480, 1675, 1909, 2206, 2510, 2552, 2265, 1968, 1731, 1546, 1389, 1284, 1224, 1205, 1228, 1301, 1406, 1558, 1747, 1988, 2292, 2631, 2677, 2385, 2086, 1844, 1646, 1503, 1399, 1333, 1319, 1338, 1404, 1512, 1660, 1862, 2097, 2400, 2765, 2858, 2535, 2219, 1973, 1792, 1632, 1533, 1466, 1449, 1474, 1543, 1649, 1792, 1998, 2245, 2544, 2946, 3027, 2706, 2385, 2138, 1943, 1796, 1682, 1632, 1601, 1628, 1689, 1796, 1943, 2150, 2408, 2735, 3139, 3260, 2847, 2544, 2299, 2091, 1948, 1840, 1776, 1759, 1772, 1849, 1948, 2097, 2313, 2561, 2946, 3375]
| },
| "lsc_samples_blue": {
| "uCoeff": [2726, 2471, 2217, 2003, 1833, 1708, 1615, 1572, 1562, 1583, 1637, 1745, 1876, 2064, 2281, 2621, 2982, 2635, 2433, 2167, 1961, 1772, 1649, 1567, 1512, 1512, 1532, 1593, 1684, 1819, 2020, 2238, 2523, 2840, 2445, 2326, 2037, 1819, 1654, 1532, 1444, 1385, 1377, 1405, 1466, 1567, 1690, 1869, 2072, 2361, 2665, 2326, 2177, 1922, 1714, 1552, 1426, 1338, 1287, 1280, 1294, 1361, 1461, 1588, 1765, 1970, 2238, 2523, 2228, 2082, 1833, 1621, 1461, 1334, 1247, 1197, 1185, 1212, 1270, 1373, 1498, 1660, 1884, 2128, 2396, 2157, 1994, 1752, 1552, 1389, 1260, 1176, 1123, 1113, 1139, 1197, 1294, 1426, 1588, 1792, 2055, 2270, 2100, 1938, 1696, 1493, 1338, 1215, 1126, 1077, 1070, 1085, 1145, 1237, 1377, 1537, 1739, 1994, 2217, 2055, 1906, 1666, 1466, 1305, 1176, 1097, 1049, 1037, 1058, 1107, 1203, 1334, 1517, 1714, 1961, 2187, 2064, 1884, 1649, 1452, 1284, 1167, 1077, 1037, 1024, 1047, 1095, 1194, 1327, 1493, 1684, 1938, 2157, 2072, 1906, 1660, 1457, 1298, 1173, 1090, 1042, 1033, 1049, 1102, 1197, 1327, 1498, 1696, 1945, 2197, 2091, 1945, 1696, 1489, 1327, 1206, 1113, 1065, 1049, 1070, 1128, 1218, 1361, 1517, 1726, 1970, 2217, 2157, 1986, 1739, 1542, 1377, 1244, 1159, 1118, 1097, 1113, 1167, 1263, 1401, 1562, 1778, 2037, 2281, 2207, 2072, 1819, 1610, 1452, 1319, 1221, 1179, 1159, 1179, 1240, 1334, 1461, 1626, 1840, 2119, 2372, 2303, 2157, 1906, 1702, 1537, 1409, 1312, 1260, 1240, 1260, 1327, 1418, 1542, 1720, 1930, 2217, 2484, 2445, 2281, 2020, 1805, 1649, 1508, 1418, 1365, 1353, 1369, 1430, 1512, 1649, 1819, 2064, 2326, 2635, 2650, 2421, 2177, 1938, 1765, 1626, 1532, 1470, 1475, 1493, 1542, 1637, 1772, 1961, 2187, 2497, 2840, 2741, 2445, 2207, 2003, 1792, 1678, 1578, 1532, 1527, 1547, 1588, 1696, 1826, 1994, 2228, 2551, 2909]
| }
| }, {
| "name": "2112x1568_D65_30",
| "resolution": "2112x1568",
| "illumination": "D65",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1781, 1914, 1879, 1844, 1786, 1732, 1674, 1658, 1641, 1664, 1692, 1752, 1807, 1867, 1914, 1961, 1891, 1883, 1954, 1921, 1860, 1768, 1683, 1631, 1582, 1577, 1593, 1648, 1713, 1789, 1867, 1938, 1982, 1973, 1911, 1960, 1878, 1788, 1684, 1594, 1521, 1459, 1450, 1478, 1536, 1621, 1714, 1809, 1903, 1970, 1968, 1903, 1924, 1827, 1720, 1600, 1489, 1415, 1356, 1343, 1368, 1423, 1531, 1638, 1746, 1856, 1950, 1958, 1895, 1883, 1782, 1661, 1512, 1398, 1306, 1247, 1236, 1266, 1331, 1428, 1562, 1691, 1809, 1916, 1948, 1889, 1857, 1724, 1588, 1446, 1321, 1222, 1160, 1144, 1175, 1245, 1362, 1491, 1637, 1756, 1889, 1932, 1895, 1837, 1705, 1555, 1397, 1261, 1160, 1089, 1082, 1107, 1180, 1291, 1444, 1587, 1730, 1859, 1920, 1871, 1829, 1674, 1514, 1351, 1219, 1117, 1055, 1038, 1069, 1139, 1250, 1398, 1558, 1716, 1844, 1904, 1861, 1812, 1671, 1507, 1337, 1204, 1102, 1038, 1024, 1045, 1117, 1232, 1379, 1541, 1695, 1834, 1885, 1863, 1814, 1668, 1514, 1347, 1206, 1106, 1043, 1026, 1055, 1125, 1237, 1390, 1543, 1704, 1836, 1896, 1862, 1837, 1705, 1540, 1377, 1238, 1129, 1069, 1050, 1079, 1155, 1264, 1406, 1560, 1705, 1844, 1903, 1864, 1842, 1731, 1578, 1421, 1292, 1186, 1121, 1109, 1135, 1197, 1314, 1451, 1594, 1737, 1865, 1898, 1895, 1883, 1768, 1632, 1485, 1363, 1258, 1196, 1180, 1209, 1271, 1374, 1503, 1643, 1782, 1892, 1912, 1894, 1898, 1805, 1689, 1563, 1448, 1348, 1283, 1279, 1298, 1359, 1452, 1563, 1695, 1805, 1907, 1939, 1893, 1933, 1855, 1761, 1655, 1552, 1448, 1397, 1384, 1405, 1461, 1543, 1643, 1748, 1863, 1933, 1929, 1883, 1926, 1888, 1815, 1729, 1631, 1557, 1508, 1499, 1513, 1552, 1637, 1716, 1822, 1904, 1935, 1922, 1789, 1877, 1863, 1806, 1745, 1671, 1618, 1561, 1551, 1561, 1612, 1654, 1745, 1792, 1871, 1905, 1806]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1689, 1777, 1780, 1744, 1684, 1631, 1588, 1558, 1555, 1562, 1588, 1651, 1709, 1756, 1793, 1818, 1755, 1759, 1799, 1776, 1726, 1652, 1575, 1532, 1495, 1486, 1501, 1544, 1599, 1673, 1737, 1797, 1840, 1820, 1770, 1818, 1750, 1679, 1591, 1508, 1438, 1400, 1382, 1407, 1459, 1530, 1610, 1700, 1777, 1822, 1829, 1775, 1778, 1712, 1622, 1526, 1430, 1347, 1305, 1288, 1311, 1374, 1450, 1553, 1652, 1735, 1808, 1833, 1777, 1765, 1672, 1568, 1463, 1356, 1269, 1220, 1200, 1228, 1293, 1383, 1489, 1605, 1708, 1793, 1820, 1782, 1737, 1645, 1528, 1407, 1291, 1195, 1137, 1121, 1151, 1220, 1322, 1439, 1557, 1672, 1769, 1816, 1771, 1721, 1616, 1485, 1363, 1245, 1141, 1084, 1073, 1097, 1159, 1272, 1396, 1529, 1652, 1755, 1809, 1762, 1718, 1603, 1465, 1330, 1202, 1112, 1052, 1035, 1064, 1131, 1237, 1373, 1506, 1635, 1749, 1808, 1759, 1700, 1593, 1459, 1319, 1194, 1096, 1042, 1024, 1049, 1120, 1231, 1358, 1503, 1635, 1737, 1804, 1750, 1707, 1593, 1460, 1324, 1199, 1101, 1048, 1032, 1055, 1129, 1234, 1366, 1506, 1642, 1737, 1812, 1763, 1709, 1609, 1482, 1348, 1233, 1132, 1069, 1057, 1080, 1156, 1256, 1387, 1524, 1648, 1755, 1813, 1757, 1733, 1632, 1511, 1385, 1274, 1179, 1123, 1104, 1130, 1200, 1300, 1419, 1549, 1663, 1761, 1812, 1760, 1749, 1661, 1559, 1445, 1331, 1240, 1188, 1175, 1204, 1269, 1358, 1468, 1583, 1693, 1781, 1820, 1775, 1766, 1701, 1600, 1501, 1403, 1319, 1276, 1265, 1281, 1338, 1420, 1529, 1632, 1724, 1795, 1824, 1766, 1783, 1730, 1651, 1573, 1481, 1409, 1369, 1354, 1374, 1428, 1494, 1588, 1682, 1765, 1813, 1829, 1746, 1795, 1760, 1703, 1630, 1563, 1501, 1464, 1449, 1471, 1512, 1575, 1643, 1722, 1788, 1826, 1815, 1680, 1752, 1755, 1724, 1666, 1609, 1561, 1532, 1520, 1541, 1573, 1631, 1677, 1740, 1780, 1800, 1745]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1678, 1793, 1782, 1746, 1711, 1664, 1621, 1594, 1593, 1604, 1638, 1692, 1718, 1774, 1804, 1812, 1762, 1766, 1810, 1795, 1732, 1665, 1598, 1554, 1531, 1524, 1531, 1572, 1624, 1676, 1740, 1791, 1824, 1798, 1776, 1829, 1751, 1677, 1599, 1524, 1463, 1428, 1415, 1436, 1479, 1536, 1616, 1695, 1768, 1811, 1827, 1782, 1784, 1711, 1621, 1528, 1441, 1369, 1322, 1313, 1331, 1385, 1460, 1549, 1637, 1730, 1793, 1817, 1779, 1755, 1674, 1570, 1463, 1360, 1280, 1233, 1216, 1235, 1299, 1385, 1484, 1595, 1685, 1775, 1805, 1760, 1732, 1624, 1519, 1399, 1292, 1201, 1148, 1138, 1160, 1216, 1315, 1423, 1539, 1651, 1747, 1793, 1765, 1715, 1605, 1479, 1349, 1231, 1144, 1094, 1078, 1100, 1159, 1257, 1377, 1506, 1621, 1726, 1773, 1752, 1702, 1583, 1460, 1319, 1198, 1107, 1061, 1039, 1064, 1119, 1222, 1348, 1481, 1612, 1713, 1773, 1749, 1695, 1577, 1449, 1304, 1185, 1092, 1042, 1024, 1052, 1112, 1210, 1334, 1469, 1596, 1717, 1769, 1744, 1702, 1574, 1442, 1311, 1196, 1098, 1051, 1034, 1058, 1115, 1217, 1337, 1473, 1602, 1713, 1773, 1753, 1708, 1599, 1474, 1336, 1223, 1133, 1084, 1063, 1085, 1150, 1248, 1366, 1500, 1618, 1726, 1777, 1768, 1732, 1634, 1508, 1385, 1272, 1185, 1130, 1119, 1138, 1197, 1294, 1408, 1531, 1644, 1747, 1784, 1767, 1751, 1660, 1555, 1449, 1340, 1259, 1209, 1193, 1213, 1274, 1355, 1459, 1567, 1674, 1767, 1805, 1773, 1776, 1704, 1611, 1509, 1421, 1349, 1299, 1288, 1303, 1353, 1429, 1520, 1624, 1711, 1784, 1813, 1781, 1798, 1740, 1664, 1590, 1502, 1442, 1397, 1386, 1404, 1451, 1515, 1590, 1681, 1756, 1803, 1817, 1753, 1806, 1774, 1720, 1655, 1592, 1531, 1506, 1485, 1502, 1537, 1592, 1655, 1728, 1787, 1819, 1793, 1695, 1771, 1778, 1750, 1696, 1650, 1606, 1576, 1568, 1573, 1612, 1650, 1700, 1758, 1787, 1812, 1729]
| },
| "lsc_samples_blue": {
| "uCoeff": [1535, 1617, 1616, 1581, 1534, 1488, 1445, 1426, 1422, 1434, 1461, 1513, 1561, 1616, 1648, 1678, 1611, 1610, 1679, 1654, 1610, 1538, 1484, 1443, 1411, 1414, 1426, 1463, 1509, 1570, 1647, 1693, 1721, 1685, 1610, 1691, 1631, 1560, 1488, 1423, 1369, 1329, 1324, 1346, 1387, 1451, 1515, 1594, 1652, 1709, 1701, 1614, 1661, 1599, 1518, 1436, 1358, 1296, 1258, 1253, 1264, 1316, 1387, 1464, 1555, 1630, 1695, 1703, 1609, 1644, 1569, 1472, 1380, 1292, 1225, 1184, 1174, 1198, 1246, 1326, 1410, 1502, 1604, 1671, 1691, 1604, 1618, 1534, 1435, 1332, 1235, 1166, 1118, 1110, 1134, 1185, 1266, 1363, 1463, 1562, 1655, 1661, 1594, 1600, 1508, 1398, 1295, 1199, 1121, 1076, 1069, 1084, 1139, 1219, 1329, 1433, 1539, 1636, 1656, 1582, 1590, 1494, 1382, 1270, 1165, 1094, 1049, 1037, 1058, 1104, 1190, 1295, 1423, 1529, 1625, 1653, 1590, 1579, 1484, 1372, 1253, 1157, 1075, 1037, 1024, 1047, 1093, 1182, 1290, 1406, 1509, 1614, 1641, 1591, 1590, 1489, 1375, 1264, 1162, 1088, 1042, 1033, 1049, 1099, 1184, 1289, 1408, 1516, 1615, 1658, 1589, 1605, 1508, 1395, 1286, 1191, 1109, 1064, 1049, 1069, 1123, 1202, 1315, 1417, 1530, 1621, 1656, 1604, 1613, 1525, 1427, 1322, 1221, 1150, 1114, 1094, 1109, 1157, 1238, 1342, 1443, 1552, 1644, 1667, 1599, 1638, 1560, 1464, 1373, 1279, 1202, 1167, 1150, 1167, 1219, 1292, 1380, 1476, 1574, 1666, 1679, 1603, 1650, 1589, 1510, 1424, 1343, 1274, 1234, 1218, 1234, 1286, 1351, 1428, 1522, 1604, 1683, 1685, 1610, 1668, 1621, 1550, 1484, 1405, 1348, 1312, 1304, 1315, 1358, 1408, 1484, 1560, 1647, 1691, 1689, 1616, 1673, 1659, 1595, 1533, 1467, 1416, 1377, 1385, 1396, 1423, 1475, 1538, 1610, 1665, 1709, 1685, 1539, 1606, 1611, 1581, 1508, 1467, 1419, 1397, 1397, 1408, 1426, 1480, 1529, 1576, 1621, 1650, 1590]
| }
| }, {
| "name": "2112x1568_D65_70",
| "resolution": "2112x1568",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2789, 2646, 2376, 2198, 2041, 1925, 1824, 1789, 1764, 1796, 1846, 1950, 2069, 2232, 2430, 2733, 3047, 2742, 2565, 2339, 2146, 1962, 1818, 1735, 1666, 1656, 1678, 1754, 1855, 1988, 2156, 2364, 2613, 2921, 2632, 2470, 2205, 2000, 1819, 1683, 1583, 1505, 1493, 1526, 1600, 1713, 1855, 2026, 2239, 2484, 2736, 2510, 2340, 2085, 1878, 1693, 1543, 1449, 1380, 1364, 1392, 1459, 1590, 1738, 1909, 2124, 2378, 2603, 2422, 2231, 1991, 1781, 1576, 1431, 1323, 1257, 1244, 1278, 1350, 1463, 1632, 1817, 2026, 2277, 2507, 2361, 2159, 1895, 1680, 1491, 1341, 1231, 1164, 1147, 1179, 1254, 1385, 1541, 1737, 1935, 2202, 2427, 2336, 2109, 1857, 1632, 1431, 1274, 1164, 1090, 1083, 1108, 1185, 1305, 1482, 1668, 1887, 2139, 2374, 2283, 2086, 1810, 1580, 1378, 1227, 1119, 1055, 1038, 1070, 1141, 1260, 1428, 1630, 1861, 2105, 2332, 2261, 2059, 1804, 1571, 1362, 1211, 1103, 1038, 1024, 1045, 1119, 1240, 1407, 1608, 1833, 2088, 2297, 2271, 2066, 1803, 1580, 1373, 1214, 1108, 1043, 1026, 1055, 1127, 1247, 1420, 1613, 1846, 2095, 2319, 2287, 2109, 1857, 1615, 1409, 1249, 1132, 1070, 1050, 1079, 1158, 1276, 1440, 1638, 1857, 2118, 2349, 2323, 2139, 1903, 1668, 1463, 1310, 1193, 1124, 1111, 1138, 1205, 1333, 1496, 1686, 1911, 2169, 2374, 2422, 2231, 1973, 1748, 1544, 1393, 1272, 1204, 1186, 1218, 1286, 1405, 1565, 1761, 1991, 2242, 2449, 2495, 2303, 2056, 1840, 1651, 1498, 1377, 1302, 1296, 1317, 1389, 1502, 1651, 1847, 2056, 2315, 2570, 2599, 2428, 2173, 1965, 1783, 1634, 1501, 1436, 1420, 1445, 1515, 1624, 1769, 1948, 2183, 2428, 2666, 2742, 2520, 2290, 2086, 1912, 1755, 1648, 1581, 1567, 1586, 1642, 1763, 1897, 2096, 2314, 2534, 2818, 2809, 2580, 2350, 2144, 1987, 1846, 1754, 1672, 1657, 1672, 1747, 1825, 1987, 2124, 2363, 2629, 2850]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2575, 2398, 2219, 2055, 1905, 1796, 1718, 1669, 1661, 1673, 1718, 1821, 1939, 2072, 2239, 2472, 2729, 2494, 2309, 2126, 1967, 1816, 1688, 1618, 1566, 1552, 1572, 1632, 1717, 1842, 1982, 2156, 2376, 2615, 2376, 2249, 2027, 1859, 1707, 1584, 1490, 1439, 1417, 1448, 1513, 1609, 1729, 1887, 2065, 2256, 2483, 2293, 2126, 1933, 1757, 1607, 1477, 1376, 1325, 1306, 1332, 1405, 1500, 1638, 1794, 1964, 2170, 2391, 2232, 2064, 1851, 1671, 1519, 1385, 1284, 1229, 1208, 1237, 1310, 1415, 1550, 1715, 1896, 2104, 2302, 2196, 1996, 1796, 1610, 1447, 1309, 1202, 1140, 1123, 1154, 1228, 1342, 1483, 1644, 1830, 2039, 2249, 2150, 1954, 1747, 1552, 1394, 1256, 1145, 1084, 1074, 1098, 1163, 1285, 1430, 1602, 1791, 1999, 2207, 2120, 1939, 1724, 1525, 1355, 1210, 1114, 1052, 1035, 1064, 1133, 1247, 1402, 1571, 1763, 1980, 2188, 2110, 1912, 1710, 1516, 1342, 1202, 1097, 1042, 1024, 1049, 1122, 1239, 1384, 1565, 1761, 1961, 2177, 2102, 1925, 1713, 1518, 1349, 1207, 1103, 1048, 1032, 1055, 1131, 1243, 1394, 1571, 1771, 1964, 2194, 2138, 1939, 1739, 1548, 1377, 1244, 1135, 1070, 1058, 1080, 1160, 1269, 1419, 1596, 1787, 1999, 2214, 2157, 1990, 1780, 1591, 1423, 1291, 1185, 1126, 1106, 1133, 1207, 1319, 1461, 1634, 1818, 2028, 2242, 2205, 2041, 1837, 1661, 1499, 1359, 1253, 1195, 1181, 1212, 1284, 1388, 1526, 1689, 1878, 2087, 2302, 2293, 2109, 1919, 1730, 1578, 1448, 1345, 1294, 1281, 1299, 1366, 1466, 1611, 1770, 1948, 2152, 2376, 2369, 2196, 2000, 1824, 1685, 1552, 1456, 1406, 1387, 1411, 1478, 1567, 1703, 1864, 2049, 2243, 2483, 2468, 2302, 2102, 1936, 1788, 1674, 1582, 1530, 1510, 1538, 1595, 1688, 1804, 1962, 2144, 2353, 2606, 2556, 2351, 2180, 2027, 1881, 1768, 1684, 1638, 1620, 1649, 1699, 1796, 1896, 2049, 2219, 2439, 2707]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2551, 2426, 2222, 2058, 1942, 1838, 1759, 1712, 1707, 1724, 1779, 1873, 1951, 2098, 2257, 2460, 2745, 2508, 2327, 2154, 1974, 1833, 1716, 1644, 1607, 1595, 1607, 1665, 1747, 1846, 1985, 2147, 2350, 2572, 2388, 2267, 2029, 1858, 1717, 1602, 1517, 1471, 1454, 1479, 1536, 1615, 1736, 1881, 2052, 2240, 2479, 2304, 2136, 1932, 1757, 1610, 1490, 1399, 1343, 1333, 1353, 1417, 1511, 1633, 1776, 1956, 2148, 2365, 2236, 2050, 1853, 1673, 1519, 1390, 1296, 1243, 1224, 1245, 1315, 1417, 1543, 1703, 1867, 2078, 2277, 2161, 1989, 1770, 1600, 1439, 1310, 1208, 1151, 1140, 1163, 1224, 1334, 1465, 1623, 1803, 2009, 2212, 2141, 1946, 1734, 1545, 1379, 1242, 1147, 1095, 1079, 1101, 1163, 1270, 1409, 1576, 1754, 1962, 2153, 2105, 1918, 1700, 1518, 1343, 1206, 1109, 1061, 1039, 1064, 1121, 1231, 1374, 1542, 1735, 1932, 2136, 2096, 1905, 1691, 1504, 1326, 1192, 1093, 1042, 1024, 1052, 1114, 1218, 1358, 1527, 1713, 1934, 2126, 2094, 1918, 1690, 1498, 1334, 1203, 1100, 1051, 1034, 1058, 1117, 1226, 1362, 1533, 1723, 1932, 2136, 2123, 1937, 1726, 1539, 1365, 1234, 1136, 1084, 1064, 1086, 1153, 1260, 1397, 1569, 1750, 1962, 2159, 2174, 1989, 1782, 1587, 1423, 1288, 1192, 1133, 1121, 1141, 1205, 1312, 1449, 1613, 1796, 2009, 2199, 2215, 2045, 1836, 1656, 1505, 1368, 1273, 1218, 1200, 1221, 1289, 1384, 1516, 1670, 1853, 2067, 2277, 2290, 2124, 1922, 1744, 1587, 1468, 1378, 1318, 1306, 1323, 1382, 1476, 1600, 1760, 1932, 2136, 2357, 2396, 2219, 2014, 1840, 1705, 1576, 1494, 1436, 1422, 1444, 1503, 1592, 1705, 1862, 2035, 2226, 2462, 2481, 2320, 2123, 1959, 1820, 1708, 1617, 1578, 1551, 1574, 1624, 1708, 1820, 1969, 2142, 2343, 2562, 2589, 2386, 2216, 2064, 1922, 1820, 1740, 1690, 1677, 1687, 1747, 1820, 1927, 2075, 2229, 2460, 2670]
| },
| "lsc_samples_blue": {
| "uCoeff": [2215, 2105, 1959, 1822, 1705, 1614, 1542, 1509, 1502, 1519, 1562, 1645, 1741, 1872, 2010, 2217, 2395, 2196, 2110, 1947, 1810, 1672, 1578, 1514, 1469, 1470, 1487, 1537, 1609, 1712, 1860, 2004, 2179, 2345, 2087, 2054, 1863, 1708, 1583, 1485, 1412, 1361, 1354, 1380, 1432, 1517, 1615, 1751, 1892, 2082, 2252, 2021, 1956, 1784, 1630, 1502, 1397, 1320, 1274, 1269, 1281, 1342, 1429, 1535, 1675, 1824, 2005, 2172, 1963, 1894, 1720, 1557, 1426, 1316, 1238, 1191, 1180, 1206, 1260, 1353, 1460, 1592, 1764, 1932, 2094, 1920, 1833, 1659, 1502, 1364, 1249, 1172, 1121, 1112, 1137, 1192, 1282, 1399, 1534, 1694, 1884, 2009, 1883, 1793, 1615, 1452, 1320, 1208, 1124, 1076, 1070, 1084, 1143, 1229, 1356, 1493, 1653, 1840, 1977, 1852, 1771, 1592, 1430, 1290, 1171, 1096, 1049, 1037, 1058, 1106, 1197, 1317, 1477, 1635, 1817, 1958, 1861, 1753, 1578, 1418, 1271, 1163, 1076, 1037, 1024, 1047, 1094, 1189, 1311, 1456, 1609, 1799, 1936, 1866, 1771, 1587, 1422, 1283, 1168, 1089, 1042, 1033, 1049, 1101, 1192, 1311, 1459, 1619, 1804, 1966, 1876, 1799, 1615, 1449, 1309, 1199, 1111, 1065, 1049, 1070, 1126, 1211, 1341, 1474, 1642, 1820, 1977, 1920, 1826, 1647, 1493, 1353, 1234, 1155, 1116, 1096, 1111, 1163, 1252, 1376, 1511, 1681, 1868, 2018, 1946, 1886, 1708, 1547, 1418, 1302, 1213, 1174, 1155, 1174, 1231, 1316, 1426, 1562, 1726, 1925, 2075, 2003, 1940, 1770, 1620, 1489, 1381, 1296, 1249, 1230, 1249, 1310, 1389, 1493, 1635, 1790, 1988, 2142, 2087, 2018, 1849, 1696, 1578, 1464, 1388, 1342, 1332, 1346, 1399, 1467, 1578, 1708, 1885, 2054, 2229, 2207, 2101, 1955, 1791, 1666, 1558, 1482, 1430, 1436, 1451, 1491, 1568, 1672, 1810, 1963, 2159, 2345, 2226, 2086, 1952, 1822, 1670, 1588, 1510, 1474, 1471, 1487, 1519, 1603, 1699, 1815, 1968, 2165, 2344]
| }
| }, {
| "name": "2112x1568_D65_100",
| "resolution": "2112x1568",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3546, 3195, 2748, 2464, 2233, 2069, 1936, 1888, 1857, 1896, 1961, 2098, 2266, 2505, 2817, 3312, 3914, 3386, 3024, 2652, 2361, 2108, 1920, 1812, 1729, 1716, 1742, 1834, 1961, 2138, 2373, 2683, 3086, 3632, 3173, 2852, 2450, 2158, 1920, 1749, 1629, 1540, 1525, 1562, 1647, 1783, 1961, 2189, 2491, 2870, 3312, 2965, 2652, 2278, 1996, 1763, 1584, 1475, 1398, 1380, 1411, 1485, 1635, 1812, 2032, 2324, 2699, 3086, 2817, 2491, 2148, 1872, 1623, 1456, 1336, 1265, 1251, 1286, 1364, 1490, 1684, 1912, 2189, 2547, 2926, 2715, 2386, 2023, 1749, 1525, 1356, 1237, 1167, 1149, 1182, 1261, 1402, 1578, 1812, 2069, 2437, 2799, 2667, 2313, 1970, 1690, 1456, 1283, 1167, 1091, 1083, 1109, 1188, 1316, 1510, 1729, 2005, 2349, 2715, 2591, 2278, 1912, 1629, 1398, 1234, 1120, 1055, 1038, 1070, 1143, 1268, 1451, 1684, 1970, 2301, 2652, 2561, 2244, 1904, 1618, 1380, 1217, 1104, 1038, 1024, 1045, 1120, 1247, 1428, 1659, 1936, 2278, 2606, 2576, 2255, 1904, 1629, 1393, 1220, 1109, 1043, 1026, 1055, 1129, 1254, 1442, 1665, 1953, 2289, 2636, 2606, 2313, 1970, 1671, 1433, 1258, 1134, 1070, 1050, 1080, 1161, 1286, 1466, 1696, 1970, 2324, 2683, 2667, 2361, 2032, 1736, 1495, 1324, 1198, 1126, 1112, 1140, 1210, 1348, 1530, 1756, 2041, 2398, 2732, 2817, 2491, 2127, 1834, 1589, 1415, 1283, 1210, 1191, 1224, 1297, 1428, 1612, 1849, 2148, 2505, 2852, 2945, 2606, 2244, 1953, 1716, 1535, 1398, 1316, 1309, 1332, 1411, 1540, 1716, 1961, 2244, 2621, 3044, 3129, 2799, 2411, 2118, 1880, 1696, 1540, 1466, 1447, 1475, 1556, 1684, 1864, 2098, 2424, 2799, 3218, 3386, 2965, 2591, 2289, 2050, 1849, 1716, 1635, 1618, 1641, 1709, 1857, 2032, 2301, 2621, 2984, 3491, 3574, 3107, 2715, 2398, 2168, 1978, 1857, 1756, 1736, 1756, 1849, 1953, 2168, 2373, 2732, 3173, 3632]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3239, 2863, 2548, 2288, 2071, 1920, 1815, 1752, 1741, 1757, 1815, 1949, 2111, 2309, 2573, 2963, 3459, 3045, 2691, 2388, 2147, 1939, 1773, 1683, 1619, 1602, 1626, 1698, 1806, 1969, 2165, 2426, 2779, 3212, 2831, 2573, 2235, 1995, 1794, 1640, 1528, 1469, 1444, 1478, 1553, 1668, 1819, 2027, 2281, 2582, 2974, 2682, 2388, 2099, 1859, 1668, 1513, 1397, 1340, 1319, 1347, 1428, 1537, 1702, 1901, 2135, 2442, 2810, 2573, 2288, 1985, 1748, 1562, 1407, 1295, 1236, 1213, 1244, 1322, 1439, 1595, 1798, 2038, 2337, 2663, 2506, 2190, 1910, 1672, 1478, 1322, 1207, 1142, 1125, 1157, 1234, 1357, 1516, 1709, 1949, 2241, 2573, 2434, 2129, 1846, 1602, 1417, 1265, 1147, 1085, 1074, 1099, 1166, 1295, 1455, 1657, 1896, 2183, 2506, 2388, 2105, 1815, 1569, 1374, 1216, 1115, 1052, 1035, 1064, 1135, 1254, 1423, 1619, 1859, 2153, 2473, 2373, 2071, 1798, 1559, 1359, 1207, 1098, 1042, 1024, 1049, 1123, 1246, 1404, 1612, 1855, 2129, 2457, 2366, 2088, 1802, 1562, 1367, 1213, 1104, 1048, 1032, 1055, 1133, 1250, 1415, 1619, 1868, 2135, 2481, 2419, 2111, 1837, 1598, 1399, 1252, 1137, 1070, 1058, 1081, 1163, 1278, 1444, 1650, 1891, 2183, 2514, 2457, 2183, 1891, 1650, 1452, 1304, 1190, 1128, 1107, 1135, 1213, 1333, 1492, 1698, 1935, 2228, 2565, 2539, 2261, 1969, 1737, 1540, 1379, 1263, 1201, 1186, 1218, 1295, 1410, 1569, 1769, 2016, 2316, 2663, 2682, 2366, 2082, 1828, 1636, 1481, 1364, 1308, 1293, 1313, 1387, 1501, 1672, 1873, 2117, 2419, 2790, 2821, 2506, 2202, 1954, 1769, 1605, 1492, 1433, 1412, 1439, 1516, 1622, 1789, 2000, 2261, 2565, 2974, 3009, 2682, 2359, 2111, 1906, 1757, 1643, 1579, 1556, 1588, 1657, 1773, 1925, 2141, 2411, 2749, 3199, 3212, 2800, 2498, 2254, 2043, 1887, 1777, 1717, 1694, 1729, 1794, 1920, 2060, 2281, 2548, 2918, 3428]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3205, 2901, 2552, 2292, 2115, 1968, 1862, 1801, 1792, 1814, 1885, 2009, 2126, 2341, 2596, 2946, 3483, 3064, 2715, 2423, 2156, 1958, 1805, 1712, 1664, 1649, 1664, 1735, 1840, 1973, 2169, 2415, 2745, 3152, 2847, 2596, 2238, 1993, 1805, 1660, 1558, 1503, 1483, 1512, 1578, 1675, 1827, 2020, 2265, 2561, 2969, 2696, 2400, 2097, 1858, 1671, 1527, 1422, 1359, 1347, 1369, 1441, 1549, 1697, 1880, 2126, 2415, 2775, 2578, 2272, 1988, 1751, 1562, 1412, 1308, 1250, 1230, 1252, 1328, 1441, 1588, 1784, 2004, 2306, 2631, 2462, 2181, 1880, 1660, 1469, 1324, 1214, 1154, 1142, 1166, 1230, 1349, 1497, 1686, 1918, 2206, 2527, 2423, 2120, 1831, 1594, 1401, 1250, 1150, 1096, 1079, 1102, 1166, 1279, 1433, 1628, 1853, 2138, 2438, 2370, 2080, 1788, 1562, 1361, 1212, 1110, 1061, 1039, 1064, 1122, 1238, 1394, 1588, 1827, 2097, 2408, 2356, 2063, 1776, 1546, 1342, 1197, 1094, 1042, 1024, 1052, 1115, 1224, 1376, 1571, 1801, 2097, 2393, 2356, 2080, 1776, 1540, 1352, 1209, 1101, 1051, 1034, 1058, 1118, 1232, 1381, 1578, 1814, 2097, 2408, 2400, 2109, 1822, 1588, 1386, 1242, 1138, 1085, 1064, 1087, 1156, 1269, 1420, 1621, 1849, 2138, 2446, 2478, 2181, 1894, 1646, 1452, 1301, 1197, 1135, 1123, 1143, 1210, 1326, 1480, 1675, 1909, 2206, 2510, 2552, 2265, 1968, 1731, 1546, 1389, 1284, 1224, 1205, 1228, 1301, 1406, 1558, 1747, 1988, 2292, 2631, 2677, 2385, 2086, 1844, 1646, 1503, 1399, 1333, 1319, 1338, 1404, 1512, 1660, 1862, 2097, 2400, 2765, 2858, 2535, 2219, 1973, 1792, 1632, 1533, 1466, 1449, 1474, 1543, 1649, 1792, 1998, 2245, 2544, 2946, 3027, 2706, 2385, 2138, 1943, 1796, 1682, 1632, 1601, 1628, 1689, 1796, 1943, 2150, 2408, 2735, 3139, 3260, 2847, 2544, 2299, 2091, 1948, 1840, 1776, 1759, 1772, 1849, 1948, 2097, 2313, 2561, 2946, 3375]
| },
| "lsc_samples_blue": {
| "uCoeff": [2726, 2471, 2217, 2003, 1833, 1708, 1615, 1572, 1562, 1583, 1637, 1745, 1876, 2064, 2281, 2621, 2982, 2635, 2433, 2167, 1961, 1772, 1649, 1567, 1512, 1512, 1532, 1593, 1684, 1819, 2020, 2238, 2523, 2840, 2445, 2326, 2037, 1819, 1654, 1532, 1444, 1385, 1377, 1405, 1466, 1567, 1690, 1869, 2072, 2361, 2665, 2326, 2177, 1922, 1714, 1552, 1426, 1338, 1287, 1280, 1294, 1361, 1461, 1588, 1765, 1970, 2238, 2523, 2228, 2082, 1833, 1621, 1461, 1334, 1247, 1197, 1185, 1212, 1270, 1373, 1498, 1660, 1884, 2128, 2396, 2157, 1994, 1752, 1552, 1389, 1260, 1176, 1123, 1113, 1139, 1197, 1294, 1426, 1588, 1792, 2055, 2270, 2100, 1938, 1696, 1493, 1338, 1215, 1126, 1077, 1070, 1085, 1145, 1237, 1377, 1537, 1739, 1994, 2217, 2055, 1906, 1666, 1466, 1305, 1176, 1097, 1049, 1037, 1058, 1107, 1203, 1334, 1517, 1714, 1961, 2187, 2064, 1884, 1649, 1452, 1284, 1167, 1077, 1037, 1024, 1047, 1095, 1194, 1327, 1493, 1684, 1938, 2157, 2072, 1906, 1660, 1457, 1298, 1173, 1090, 1042, 1033, 1049, 1102, 1197, 1327, 1498, 1696, 1945, 2197, 2091, 1945, 1696, 1489, 1327, 1206, 1113, 1065, 1049, 1070, 1128, 1218, 1361, 1517, 1726, 1970, 2217, 2157, 1986, 1739, 1542, 1377, 1244, 1159, 1118, 1097, 1113, 1167, 1263, 1401, 1562, 1778, 2037, 2281, 2207, 2072, 1819, 1610, 1452, 1319, 1221, 1179, 1159, 1179, 1240, 1334, 1461, 1626, 1840, 2119, 2372, 2303, 2157, 1906, 1702, 1537, 1409, 1312, 1260, 1240, 1260, 1327, 1418, 1542, 1720, 1930, 2217, 2484, 2445, 2281, 2020, 1805, 1649, 1508, 1418, 1365, 1353, 1369, 1430, 1512, 1649, 1819, 2064, 2326, 2635, 2650, 2421, 2177, 1938, 1765, 1626, 1532, 1470, 1475, 1493, 1542, 1637, 1772, 1961, 2187, 2497, 2840, 2741, 2445, 2207, 2003, 1792, 1678, 1578, 1532, 1527, 1547, 1588, 1696, 1826, 1994, 2228, 2551, 2909]
| }
| }, {
| "name": "2112x1568_D75_30",
| "resolution": "2112x1568",
| "illumination": "D75",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1781, 1914, 1879, 1844, 1786, 1732, 1674, 1658, 1641, 1664, 1692, 1752, 1807, 1867, 1914, 1961, 1891, 1883, 1954, 1921, 1860, 1768, 1683, 1631, 1582, 1577, 1593, 1648, 1713, 1789, 1867, 1938, 1982, 1973, 1911, 1960, 1878, 1788, 1684, 1594, 1521, 1459, 1450, 1478, 1536, 1621, 1714, 1809, 1903, 1970, 1968, 1903, 1924, 1827, 1720, 1600, 1489, 1415, 1356, 1343, 1368, 1423, 1531, 1638, 1746, 1856, 1950, 1958, 1895, 1883, 1782, 1661, 1512, 1398, 1306, 1247, 1236, 1266, 1331, 1428, 1562, 1691, 1809, 1916, 1948, 1889, 1857, 1724, 1588, 1446, 1321, 1222, 1160, 1144, 1175, 1245, 1362, 1491, 1637, 1756, 1889, 1932, 1895, 1837, 1705, 1555, 1397, 1261, 1160, 1089, 1082, 1107, 1180, 1291, 1444, 1587, 1730, 1859, 1920, 1871, 1829, 1674, 1514, 1351, 1219, 1117, 1055, 1038, 1069, 1139, 1250, 1398, 1558, 1716, 1844, 1904, 1861, 1812, 1671, 1507, 1337, 1204, 1102, 1038, 1024, 1045, 1117, 1232, 1379, 1541, 1695, 1834, 1885, 1863, 1814, 1668, 1514, 1347, 1206, 1106, 1043, 1026, 1055, 1125, 1237, 1390, 1543, 1704, 1836, 1896, 1862, 1837, 1705, 1540, 1377, 1238, 1129, 1069, 1050, 1079, 1155, 1264, 1406, 1560, 1705, 1844, 1903, 1864, 1842, 1731, 1578, 1421, 1292, 1186, 1121, 1109, 1135, 1197, 1314, 1451, 1594, 1737, 1865, 1898, 1895, 1883, 1768, 1632, 1485, 1363, 1258, 1196, 1180, 1209, 1271, 1374, 1503, 1643, 1782, 1892, 1912, 1894, 1898, 1805, 1689, 1563, 1448, 1348, 1283, 1279, 1298, 1359, 1452, 1563, 1695, 1805, 1907, 1939, 1893, 1933, 1855, 1761, 1655, 1552, 1448, 1397, 1384, 1405, 1461, 1543, 1643, 1748, 1863, 1933, 1929, 1883, 1926, 1888, 1815, 1729, 1631, 1557, 1508, 1499, 1513, 1552, 1637, 1716, 1822, 1904, 1935, 1922, 1789, 1877, 1863, 1806, 1745, 1671, 1618, 1561, 1551, 1561, 1612, 1654, 1745, 1792, 1871, 1905, 1806]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1689, 1777, 1780, 1744, 1684, 1631, 1588, 1558, 1555, 1562, 1588, 1651, 1709, 1756, 1793, 1818, 1755, 1759, 1799, 1776, 1726, 1652, 1575, 1532, 1495, 1486, 1501, 1544, 1599, 1673, 1737, 1797, 1840, 1820, 1770, 1818, 1750, 1679, 1591, 1508, 1438, 1400, 1382, 1407, 1459, 1530, 1610, 1700, 1777, 1822, 1829, 1775, 1778, 1712, 1622, 1526, 1430, 1347, 1305, 1288, 1311, 1374, 1450, 1553, 1652, 1735, 1808, 1833, 1777, 1765, 1672, 1568, 1463, 1356, 1269, 1220, 1200, 1228, 1293, 1383, 1489, 1605, 1708, 1793, 1820, 1782, 1737, 1645, 1528, 1407, 1291, 1195, 1137, 1121, 1151, 1220, 1322, 1439, 1557, 1672, 1769, 1816, 1771, 1721, 1616, 1485, 1363, 1245, 1141, 1084, 1073, 1097, 1159, 1272, 1396, 1529, 1652, 1755, 1809, 1762, 1718, 1603, 1465, 1330, 1202, 1112, 1052, 1035, 1064, 1131, 1237, 1373, 1506, 1635, 1749, 1808, 1759, 1700, 1593, 1459, 1319, 1194, 1096, 1042, 1024, 1049, 1120, 1231, 1358, 1503, 1635, 1737, 1804, 1750, 1707, 1593, 1460, 1324, 1199, 1101, 1048, 1032, 1055, 1129, 1234, 1366, 1506, 1642, 1737, 1812, 1763, 1709, 1609, 1482, 1348, 1233, 1132, 1069, 1057, 1080, 1156, 1256, 1387, 1524, 1648, 1755, 1813, 1757, 1733, 1632, 1511, 1385, 1274, 1179, 1123, 1104, 1130, 1200, 1300, 1419, 1549, 1663, 1761, 1812, 1760, 1749, 1661, 1559, 1445, 1331, 1240, 1188, 1175, 1204, 1269, 1358, 1468, 1583, 1693, 1781, 1820, 1775, 1766, 1701, 1600, 1501, 1403, 1319, 1276, 1265, 1281, 1338, 1420, 1529, 1632, 1724, 1795, 1824, 1766, 1783, 1730, 1651, 1573, 1481, 1409, 1369, 1354, 1374, 1428, 1494, 1588, 1682, 1765, 1813, 1829, 1746, 1795, 1760, 1703, 1630, 1563, 1501, 1464, 1449, 1471, 1512, 1575, 1643, 1722, 1788, 1826, 1815, 1680, 1752, 1755, 1724, 1666, 1609, 1561, 1532, 1520, 1541, 1573, 1631, 1677, 1740, 1780, 1800, 1745]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1678, 1793, 1782, 1746, 1711, 1664, 1621, 1594, 1593, 1604, 1638, 1692, 1718, 1774, 1804, 1812, 1762, 1766, 1810, 1795, 1732, 1665, 1598, 1554, 1531, 1524, 1531, 1572, 1624, 1676, 1740, 1791, 1824, 1798, 1776, 1829, 1751, 1677, 1599, 1524, 1463, 1428, 1415, 1436, 1479, 1536, 1616, 1695, 1768, 1811, 1827, 1782, 1784, 1711, 1621, 1528, 1441, 1369, 1322, 1313, 1331, 1385, 1460, 1549, 1637, 1730, 1793, 1817, 1779, 1755, 1674, 1570, 1463, 1360, 1280, 1233, 1216, 1235, 1299, 1385, 1484, 1595, 1685, 1775, 1805, 1760, 1732, 1624, 1519, 1399, 1292, 1201, 1148, 1138, 1160, 1216, 1315, 1423, 1539, 1651, 1747, 1793, 1765, 1715, 1605, 1479, 1349, 1231, 1144, 1094, 1078, 1100, 1159, 1257, 1377, 1506, 1621, 1726, 1773, 1752, 1702, 1583, 1460, 1319, 1198, 1107, 1061, 1039, 1064, 1119, 1222, 1348, 1481, 1612, 1713, 1773, 1749, 1695, 1577, 1449, 1304, 1185, 1092, 1042, 1024, 1052, 1112, 1210, 1334, 1469, 1596, 1717, 1769, 1744, 1702, 1574, 1442, 1311, 1196, 1098, 1051, 1034, 1058, 1115, 1217, 1337, 1473, 1602, 1713, 1773, 1753, 1708, 1599, 1474, 1336, 1223, 1133, 1084, 1063, 1085, 1150, 1248, 1366, 1500, 1618, 1726, 1777, 1768, 1732, 1634, 1508, 1385, 1272, 1185, 1130, 1119, 1138, 1197, 1294, 1408, 1531, 1644, 1747, 1784, 1767, 1751, 1660, 1555, 1449, 1340, 1259, 1209, 1193, 1213, 1274, 1355, 1459, 1567, 1674, 1767, 1805, 1773, 1776, 1704, 1611, 1509, 1421, 1349, 1299, 1288, 1303, 1353, 1429, 1520, 1624, 1711, 1784, 1813, 1781, 1798, 1740, 1664, 1590, 1502, 1442, 1397, 1386, 1404, 1451, 1515, 1590, 1681, 1756, 1803, 1817, 1753, 1806, 1774, 1720, 1655, 1592, 1531, 1506, 1485, 1502, 1537, 1592, 1655, 1728, 1787, 1819, 1793, 1695, 1771, 1778, 1750, 1696, 1650, 1606, 1576, 1568, 1573, 1612, 1650, 1700, 1758, 1787, 1812, 1729]
| },
| "lsc_samples_blue": {
| "uCoeff": [1535, 1617, 1616, 1581, 1534, 1488, 1445, 1426, 1422, 1434, 1461, 1513, 1561, 1616, 1648, 1678, 1611, 1610, 1679, 1654, 1610, 1538, 1484, 1443, 1411, 1414, 1426, 1463, 1509, 1570, 1647, 1693, 1721, 1685, 1610, 1691, 1631, 1560, 1488, 1423, 1369, 1329, 1324, 1346, 1387, 1451, 1515, 1594, 1652, 1709, 1701, 1614, 1661, 1599, 1518, 1436, 1358, 1296, 1258, 1253, 1264, 1316, 1387, 1464, 1555, 1630, 1695, 1703, 1609, 1644, 1569, 1472, 1380, 1292, 1225, 1184, 1174, 1198, 1246, 1326, 1410, 1502, 1604, 1671, 1691, 1604, 1618, 1534, 1435, 1332, 1235, 1166, 1118, 1110, 1134, 1185, 1266, 1363, 1463, 1562, 1655, 1661, 1594, 1600, 1508, 1398, 1295, 1199, 1121, 1076, 1069, 1084, 1139, 1219, 1329, 1433, 1539, 1636, 1656, 1582, 1590, 1494, 1382, 1270, 1165, 1094, 1049, 1037, 1058, 1104, 1190, 1295, 1423, 1529, 1625, 1653, 1590, 1579, 1484, 1372, 1253, 1157, 1075, 1037, 1024, 1047, 1093, 1182, 1290, 1406, 1509, 1614, 1641, 1591, 1590, 1489, 1375, 1264, 1162, 1088, 1042, 1033, 1049, 1099, 1184, 1289, 1408, 1516, 1615, 1658, 1589, 1605, 1508, 1395, 1286, 1191, 1109, 1064, 1049, 1069, 1123, 1202, 1315, 1417, 1530, 1621, 1656, 1604, 1613, 1525, 1427, 1322, 1221, 1150, 1114, 1094, 1109, 1157, 1238, 1342, 1443, 1552, 1644, 1667, 1599, 1638, 1560, 1464, 1373, 1279, 1202, 1167, 1150, 1167, 1219, 1292, 1380, 1476, 1574, 1666, 1679, 1603, 1650, 1589, 1510, 1424, 1343, 1274, 1234, 1218, 1234, 1286, 1351, 1428, 1522, 1604, 1683, 1685, 1610, 1668, 1621, 1550, 1484, 1405, 1348, 1312, 1304, 1315, 1358, 1408, 1484, 1560, 1647, 1691, 1689, 1616, 1673, 1659, 1595, 1533, 1467, 1416, 1377, 1385, 1396, 1423, 1475, 1538, 1610, 1665, 1709, 1685, 1539, 1606, 1611, 1581, 1508, 1467, 1419, 1397, 1397, 1408, 1426, 1480, 1529, 1576, 1621, 1650, 1590]
| }
| }, {
| "name": "2112x1568_D75_70",
| "resolution": "2112x1568",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2789, 2646, 2376, 2198, 2041, 1925, 1824, 1789, 1764, 1796, 1846, 1950, 2069, 2232, 2430, 2733, 3047, 2742, 2565, 2339, 2146, 1962, 1818, 1735, 1666, 1656, 1678, 1754, 1855, 1988, 2156, 2364, 2613, 2921, 2632, 2470, 2205, 2000, 1819, 1683, 1583, 1505, 1493, 1526, 1600, 1713, 1855, 2026, 2239, 2484, 2736, 2510, 2340, 2085, 1878, 1693, 1543, 1449, 1380, 1364, 1392, 1459, 1590, 1738, 1909, 2124, 2378, 2603, 2422, 2231, 1991, 1781, 1576, 1431, 1323, 1257, 1244, 1278, 1350, 1463, 1632, 1817, 2026, 2277, 2507, 2361, 2159, 1895, 1680, 1491, 1341, 1231, 1164, 1147, 1179, 1254, 1385, 1541, 1737, 1935, 2202, 2427, 2336, 2109, 1857, 1632, 1431, 1274, 1164, 1090, 1083, 1108, 1185, 1305, 1482, 1668, 1887, 2139, 2374, 2283, 2086, 1810, 1580, 1378, 1227, 1119, 1055, 1038, 1070, 1141, 1260, 1428, 1630, 1861, 2105, 2332, 2261, 2059, 1804, 1571, 1362, 1211, 1103, 1038, 1024, 1045, 1119, 1240, 1407, 1608, 1833, 2088, 2297, 2271, 2066, 1803, 1580, 1373, 1214, 1108, 1043, 1026, 1055, 1127, 1247, 1420, 1613, 1846, 2095, 2319, 2287, 2109, 1857, 1615, 1409, 1249, 1132, 1070, 1050, 1079, 1158, 1276, 1440, 1638, 1857, 2118, 2349, 2323, 2139, 1903, 1668, 1463, 1310, 1193, 1124, 1111, 1138, 1205, 1333, 1496, 1686, 1911, 2169, 2374, 2422, 2231, 1973, 1748, 1544, 1393, 1272, 1204, 1186, 1218, 1286, 1405, 1565, 1761, 1991, 2242, 2449, 2495, 2303, 2056, 1840, 1651, 1498, 1377, 1302, 1296, 1317, 1389, 1502, 1651, 1847, 2056, 2315, 2570, 2599, 2428, 2173, 1965, 1783, 1634, 1501, 1436, 1420, 1445, 1515, 1624, 1769, 1948, 2183, 2428, 2666, 2742, 2520, 2290, 2086, 1912, 1755, 1648, 1581, 1567, 1586, 1642, 1763, 1897, 2096, 2314, 2534, 2818, 2809, 2580, 2350, 2144, 1987, 1846, 1754, 1672, 1657, 1672, 1747, 1825, 1987, 2124, 2363, 2629, 2850]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2575, 2398, 2219, 2055, 1905, 1796, 1718, 1669, 1661, 1673, 1718, 1821, 1939, 2072, 2239, 2472, 2729, 2494, 2309, 2126, 1967, 1816, 1688, 1618, 1566, 1552, 1572, 1632, 1717, 1842, 1982, 2156, 2376, 2615, 2376, 2249, 2027, 1859, 1707, 1584, 1490, 1439, 1417, 1448, 1513, 1609, 1729, 1887, 2065, 2256, 2483, 2293, 2126, 1933, 1757, 1607, 1477, 1376, 1325, 1306, 1332, 1405, 1500, 1638, 1794, 1964, 2170, 2391, 2232, 2064, 1851, 1671, 1519, 1385, 1284, 1229, 1208, 1237, 1310, 1415, 1550, 1715, 1896, 2104, 2302, 2196, 1996, 1796, 1610, 1447, 1309, 1202, 1140, 1123, 1154, 1228, 1342, 1483, 1644, 1830, 2039, 2249, 2150, 1954, 1747, 1552, 1394, 1256, 1145, 1084, 1074, 1098, 1163, 1285, 1430, 1602, 1791, 1999, 2207, 2120, 1939, 1724, 1525, 1355, 1210, 1114, 1052, 1035, 1064, 1133, 1247, 1402, 1571, 1763, 1980, 2188, 2110, 1912, 1710, 1516, 1342, 1202, 1097, 1042, 1024, 1049, 1122, 1239, 1384, 1565, 1761, 1961, 2177, 2102, 1925, 1713, 1518, 1349, 1207, 1103, 1048, 1032, 1055, 1131, 1243, 1394, 1571, 1771, 1964, 2194, 2138, 1939, 1739, 1548, 1377, 1244, 1135, 1070, 1058, 1080, 1160, 1269, 1419, 1596, 1787, 1999, 2214, 2157, 1990, 1780, 1591, 1423, 1291, 1185, 1126, 1106, 1133, 1207, 1319, 1461, 1634, 1818, 2028, 2242, 2205, 2041, 1837, 1661, 1499, 1359, 1253, 1195, 1181, 1212, 1284, 1388, 1526, 1689, 1878, 2087, 2302, 2293, 2109, 1919, 1730, 1578, 1448, 1345, 1294, 1281, 1299, 1366, 1466, 1611, 1770, 1948, 2152, 2376, 2369, 2196, 2000, 1824, 1685, 1552, 1456, 1406, 1387, 1411, 1478, 1567, 1703, 1864, 2049, 2243, 2483, 2468, 2302, 2102, 1936, 1788, 1674, 1582, 1530, 1510, 1538, 1595, 1688, 1804, 1962, 2144, 2353, 2606, 2556, 2351, 2180, 2027, 1881, 1768, 1684, 1638, 1620, 1649, 1699, 1796, 1896, 2049, 2219, 2439, 2707]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2551, 2426, 2222, 2058, 1942, 1838, 1759, 1712, 1707, 1724, 1779, 1873, 1951, 2098, 2257, 2460, 2745, 2508, 2327, 2154, 1974, 1833, 1716, 1644, 1607, 1595, 1607, 1665, 1747, 1846, 1985, 2147, 2350, 2572, 2388, 2267, 2029, 1858, 1717, 1602, 1517, 1471, 1454, 1479, 1536, 1615, 1736, 1881, 2052, 2240, 2479, 2304, 2136, 1932, 1757, 1610, 1490, 1399, 1343, 1333, 1353, 1417, 1511, 1633, 1776, 1956, 2148, 2365, 2236, 2050, 1853, 1673, 1519, 1390, 1296, 1243, 1224, 1245, 1315, 1417, 1543, 1703, 1867, 2078, 2277, 2161, 1989, 1770, 1600, 1439, 1310, 1208, 1151, 1140, 1163, 1224, 1334, 1465, 1623, 1803, 2009, 2212, 2141, 1946, 1734, 1545, 1379, 1242, 1147, 1095, 1079, 1101, 1163, 1270, 1409, 1576, 1754, 1962, 2153, 2105, 1918, 1700, 1518, 1343, 1206, 1109, 1061, 1039, 1064, 1121, 1231, 1374, 1542, 1735, 1932, 2136, 2096, 1905, 1691, 1504, 1326, 1192, 1093, 1042, 1024, 1052, 1114, 1218, 1358, 1527, 1713, 1934, 2126, 2094, 1918, 1690, 1498, 1334, 1203, 1100, 1051, 1034, 1058, 1117, 1226, 1362, 1533, 1723, 1932, 2136, 2123, 1937, 1726, 1539, 1365, 1234, 1136, 1084, 1064, 1086, 1153, 1260, 1397, 1569, 1750, 1962, 2159, 2174, 1989, 1782, 1587, 1423, 1288, 1192, 1133, 1121, 1141, 1205, 1312, 1449, 1613, 1796, 2009, 2199, 2215, 2045, 1836, 1656, 1505, 1368, 1273, 1218, 1200, 1221, 1289, 1384, 1516, 1670, 1853, 2067, 2277, 2290, 2124, 1922, 1744, 1587, 1468, 1378, 1318, 1306, 1323, 1382, 1476, 1600, 1760, 1932, 2136, 2357, 2396, 2219, 2014, 1840, 1705, 1576, 1494, 1436, 1422, 1444, 1503, 1592, 1705, 1862, 2035, 2226, 2462, 2481, 2320, 2123, 1959, 1820, 1708, 1617, 1578, 1551, 1574, 1624, 1708, 1820, 1969, 2142, 2343, 2562, 2589, 2386, 2216, 2064, 1922, 1820, 1740, 1690, 1677, 1687, 1747, 1820, 1927, 2075, 2229, 2460, 2670]
| },
| "lsc_samples_blue": {
| "uCoeff": [2215, 2105, 1959, 1822, 1705, 1614, 1542, 1509, 1502, 1519, 1562, 1645, 1741, 1872, 2010, 2217, 2395, 2196, 2110, 1947, 1810, 1672, 1578, 1514, 1469, 1470, 1487, 1537, 1609, 1712, 1860, 2004, 2179, 2345, 2087, 2054, 1863, 1708, 1583, 1485, 1412, 1361, 1354, 1380, 1432, 1517, 1615, 1751, 1892, 2082, 2252, 2021, 1956, 1784, 1630, 1502, 1397, 1320, 1274, 1269, 1281, 1342, 1429, 1535, 1675, 1824, 2005, 2172, 1963, 1894, 1720, 1557, 1426, 1316, 1238, 1191, 1180, 1206, 1260, 1353, 1460, 1592, 1764, 1932, 2094, 1920, 1833, 1659, 1502, 1364, 1249, 1172, 1121, 1112, 1137, 1192, 1282, 1399, 1534, 1694, 1884, 2009, 1883, 1793, 1615, 1452, 1320, 1208, 1124, 1076, 1070, 1084, 1143, 1229, 1356, 1493, 1653, 1840, 1977, 1852, 1771, 1592, 1430, 1290, 1171, 1096, 1049, 1037, 1058, 1106, 1197, 1317, 1477, 1635, 1817, 1958, 1861, 1753, 1578, 1418, 1271, 1163, 1076, 1037, 1024, 1047, 1094, 1189, 1311, 1456, 1609, 1799, 1936, 1866, 1771, 1587, 1422, 1283, 1168, 1089, 1042, 1033, 1049, 1101, 1192, 1311, 1459, 1619, 1804, 1966, 1876, 1799, 1615, 1449, 1309, 1199, 1111, 1065, 1049, 1070, 1126, 1211, 1341, 1474, 1642, 1820, 1977, 1920, 1826, 1647, 1493, 1353, 1234, 1155, 1116, 1096, 1111, 1163, 1252, 1376, 1511, 1681, 1868, 2018, 1946, 1886, 1708, 1547, 1418, 1302, 1213, 1174, 1155, 1174, 1231, 1316, 1426, 1562, 1726, 1925, 2075, 2003, 1940, 1770, 1620, 1489, 1381, 1296, 1249, 1230, 1249, 1310, 1389, 1493, 1635, 1790, 1988, 2142, 2087, 2018, 1849, 1696, 1578, 1464, 1388, 1342, 1332, 1346, 1399, 1467, 1578, 1708, 1885, 2054, 2229, 2207, 2101, 1955, 1791, 1666, 1558, 1482, 1430, 1436, 1451, 1491, 1568, 1672, 1810, 1963, 2159, 2345, 2226, 2086, 1952, 1822, 1670, 1588, 1510, 1474, 1471, 1487, 1519, 1603, 1699, 1815, 1968, 2165, 2344]
| }
| }, {
| "name": "2112x1568_D75_100",
| "resolution": "2112x1568",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3546, 3195, 2748, 2464, 2233, 2069, 1936, 1888, 1857, 1896, 1961, 2098, 2266, 2505, 2817, 3312, 3914, 3386, 3024, 2652, 2361, 2108, 1920, 1812, 1729, 1716, 1742, 1834, 1961, 2138, 2373, 2683, 3086, 3632, 3173, 2852, 2450, 2158, 1920, 1749, 1629, 1540, 1525, 1562, 1647, 1783, 1961, 2189, 2491, 2870, 3312, 2965, 2652, 2278, 1996, 1763, 1584, 1475, 1398, 1380, 1411, 1485, 1635, 1812, 2032, 2324, 2699, 3086, 2817, 2491, 2148, 1872, 1623, 1456, 1336, 1265, 1251, 1286, 1364, 1490, 1684, 1912, 2189, 2547, 2926, 2715, 2386, 2023, 1749, 1525, 1356, 1237, 1167, 1149, 1182, 1261, 1402, 1578, 1812, 2069, 2437, 2799, 2667, 2313, 1970, 1690, 1456, 1283, 1167, 1091, 1083, 1109, 1188, 1316, 1510, 1729, 2005, 2349, 2715, 2591, 2278, 1912, 1629, 1398, 1234, 1120, 1055, 1038, 1070, 1143, 1268, 1451, 1684, 1970, 2301, 2652, 2561, 2244, 1904, 1618, 1380, 1217, 1104, 1038, 1024, 1045, 1120, 1247, 1428, 1659, 1936, 2278, 2606, 2576, 2255, 1904, 1629, 1393, 1220, 1109, 1043, 1026, 1055, 1129, 1254, 1442, 1665, 1953, 2289, 2636, 2606, 2313, 1970, 1671, 1433, 1258, 1134, 1070, 1050, 1080, 1161, 1286, 1466, 1696, 1970, 2324, 2683, 2667, 2361, 2032, 1736, 1495, 1324, 1198, 1126, 1112, 1140, 1210, 1348, 1530, 1756, 2041, 2398, 2732, 2817, 2491, 2127, 1834, 1589, 1415, 1283, 1210, 1191, 1224, 1297, 1428, 1612, 1849, 2148, 2505, 2852, 2945, 2606, 2244, 1953, 1716, 1535, 1398, 1316, 1309, 1332, 1411, 1540, 1716, 1961, 2244, 2621, 3044, 3129, 2799, 2411, 2118, 1880, 1696, 1540, 1466, 1447, 1475, 1556, 1684, 1864, 2098, 2424, 2799, 3218, 3386, 2965, 2591, 2289, 2050, 1849, 1716, 1635, 1618, 1641, 1709, 1857, 2032, 2301, 2621, 2984, 3491, 3574, 3107, 2715, 2398, 2168, 1978, 1857, 1756, 1736, 1756, 1849, 1953, 2168, 2373, 2732, 3173, 3632]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3239, 2863, 2548, 2288, 2071, 1920, 1815, 1752, 1741, 1757, 1815, 1949, 2111, 2309, 2573, 2963, 3459, 3045, 2691, 2388, 2147, 1939, 1773, 1683, 1619, 1602, 1626, 1698, 1806, 1969, 2165, 2426, 2779, 3212, 2831, 2573, 2235, 1995, 1794, 1640, 1528, 1469, 1444, 1478, 1553, 1668, 1819, 2027, 2281, 2582, 2974, 2682, 2388, 2099, 1859, 1668, 1513, 1397, 1340, 1319, 1347, 1428, 1537, 1702, 1901, 2135, 2442, 2810, 2573, 2288, 1985, 1748, 1562, 1407, 1295, 1236, 1213, 1244, 1322, 1439, 1595, 1798, 2038, 2337, 2663, 2506, 2190, 1910, 1672, 1478, 1322, 1207, 1142, 1125, 1157, 1234, 1357, 1516, 1709, 1949, 2241, 2573, 2434, 2129, 1846, 1602, 1417, 1265, 1147, 1085, 1074, 1099, 1166, 1295, 1455, 1657, 1896, 2183, 2506, 2388, 2105, 1815, 1569, 1374, 1216, 1115, 1052, 1035, 1064, 1135, 1254, 1423, 1619, 1859, 2153, 2473, 2373, 2071, 1798, 1559, 1359, 1207, 1098, 1042, 1024, 1049, 1123, 1246, 1404, 1612, 1855, 2129, 2457, 2366, 2088, 1802, 1562, 1367, 1213, 1104, 1048, 1032, 1055, 1133, 1250, 1415, 1619, 1868, 2135, 2481, 2419, 2111, 1837, 1598, 1399, 1252, 1137, 1070, 1058, 1081, 1163, 1278, 1444, 1650, 1891, 2183, 2514, 2457, 2183, 1891, 1650, 1452, 1304, 1190, 1128, 1107, 1135, 1213, 1333, 1492, 1698, 1935, 2228, 2565, 2539, 2261, 1969, 1737, 1540, 1379, 1263, 1201, 1186, 1218, 1295, 1410, 1569, 1769, 2016, 2316, 2663, 2682, 2366, 2082, 1828, 1636, 1481, 1364, 1308, 1293, 1313, 1387, 1501, 1672, 1873, 2117, 2419, 2790, 2821, 2506, 2202, 1954, 1769, 1605, 1492, 1433, 1412, 1439, 1516, 1622, 1789, 2000, 2261, 2565, 2974, 3009, 2682, 2359, 2111, 1906, 1757, 1643, 1579, 1556, 1588, 1657, 1773, 1925, 2141, 2411, 2749, 3199, 3212, 2800, 2498, 2254, 2043, 1887, 1777, 1717, 1694, 1729, 1794, 1920, 2060, 2281, 2548, 2918, 3428]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3205, 2901, 2552, 2292, 2115, 1968, 1862, 1801, 1792, 1814, 1885, 2009, 2126, 2341, 2596, 2946, 3483, 3064, 2715, 2423, 2156, 1958, 1805, 1712, 1664, 1649, 1664, 1735, 1840, 1973, 2169, 2415, 2745, 3152, 2847, 2596, 2238, 1993, 1805, 1660, 1558, 1503, 1483, 1512, 1578, 1675, 1827, 2020, 2265, 2561, 2969, 2696, 2400, 2097, 1858, 1671, 1527, 1422, 1359, 1347, 1369, 1441, 1549, 1697, 1880, 2126, 2415, 2775, 2578, 2272, 1988, 1751, 1562, 1412, 1308, 1250, 1230, 1252, 1328, 1441, 1588, 1784, 2004, 2306, 2631, 2462, 2181, 1880, 1660, 1469, 1324, 1214, 1154, 1142, 1166, 1230, 1349, 1497, 1686, 1918, 2206, 2527, 2423, 2120, 1831, 1594, 1401, 1250, 1150, 1096, 1079, 1102, 1166, 1279, 1433, 1628, 1853, 2138, 2438, 2370, 2080, 1788, 1562, 1361, 1212, 1110, 1061, 1039, 1064, 1122, 1238, 1394, 1588, 1827, 2097, 2408, 2356, 2063, 1776, 1546, 1342, 1197, 1094, 1042, 1024, 1052, 1115, 1224, 1376, 1571, 1801, 2097, 2393, 2356, 2080, 1776, 1540, 1352, 1209, 1101, 1051, 1034, 1058, 1118, 1232, 1381, 1578, 1814, 2097, 2408, 2400, 2109, 1822, 1588, 1386, 1242, 1138, 1085, 1064, 1087, 1156, 1269, 1420, 1621, 1849, 2138, 2446, 2478, 2181, 1894, 1646, 1452, 1301, 1197, 1135, 1123, 1143, 1210, 1326, 1480, 1675, 1909, 2206, 2510, 2552, 2265, 1968, 1731, 1546, 1389, 1284, 1224, 1205, 1228, 1301, 1406, 1558, 1747, 1988, 2292, 2631, 2677, 2385, 2086, 1844, 1646, 1503, 1399, 1333, 1319, 1338, 1404, 1512, 1660, 1862, 2097, 2400, 2765, 2858, 2535, 2219, 1973, 1792, 1632, 1533, 1466, 1449, 1474, 1543, 1649, 1792, 1998, 2245, 2544, 2946, 3027, 2706, 2385, 2138, 1943, 1796, 1682, 1632, 1601, 1628, 1689, 1796, 1943, 2150, 2408, 2735, 3139, 3260, 2847, 2544, 2299, 2091, 1948, 1840, 1776, 1759, 1772, 1849, 1948, 2097, 2313, 2561, 2946, 3375]
| },
| "lsc_samples_blue": {
| "uCoeff": [2726, 2471, 2217, 2003, 1833, 1708, 1615, 1572, 1562, 1583, 1637, 1745, 1876, 2064, 2281, 2621, 2982, 2635, 2433, 2167, 1961, 1772, 1649, 1567, 1512, 1512, 1532, 1593, 1684, 1819, 2020, 2238, 2523, 2840, 2445, 2326, 2037, 1819, 1654, 1532, 1444, 1385, 1377, 1405, 1466, 1567, 1690, 1869, 2072, 2361, 2665, 2326, 2177, 1922, 1714, 1552, 1426, 1338, 1287, 1280, 1294, 1361, 1461, 1588, 1765, 1970, 2238, 2523, 2228, 2082, 1833, 1621, 1461, 1334, 1247, 1197, 1185, 1212, 1270, 1373, 1498, 1660, 1884, 2128, 2396, 2157, 1994, 1752, 1552, 1389, 1260, 1176, 1123, 1113, 1139, 1197, 1294, 1426, 1588, 1792, 2055, 2270, 2100, 1938, 1696, 1493, 1338, 1215, 1126, 1077, 1070, 1085, 1145, 1237, 1377, 1537, 1739, 1994, 2217, 2055, 1906, 1666, 1466, 1305, 1176, 1097, 1049, 1037, 1058, 1107, 1203, 1334, 1517, 1714, 1961, 2187, 2064, 1884, 1649, 1452, 1284, 1167, 1077, 1037, 1024, 1047, 1095, 1194, 1327, 1493, 1684, 1938, 2157, 2072, 1906, 1660, 1457, 1298, 1173, 1090, 1042, 1033, 1049, 1102, 1197, 1327, 1498, 1696, 1945, 2197, 2091, 1945, 1696, 1489, 1327, 1206, 1113, 1065, 1049, 1070, 1128, 1218, 1361, 1517, 1726, 1970, 2217, 2157, 1986, 1739, 1542, 1377, 1244, 1159, 1118, 1097, 1113, 1167, 1263, 1401, 1562, 1778, 2037, 2281, 2207, 2072, 1819, 1610, 1452, 1319, 1221, 1179, 1159, 1179, 1240, 1334, 1461, 1626, 1840, 2119, 2372, 2303, 2157, 1906, 1702, 1537, 1409, 1312, 1260, 1240, 1260, 1327, 1418, 1542, 1720, 1930, 2217, 2484, 2445, 2281, 2020, 1805, 1649, 1508, 1418, 1365, 1353, 1369, 1430, 1512, 1649, 1819, 2064, 2326, 2635, 2650, 2421, 2177, 1938, 1765, 1626, 1532, 1470, 1475, 1493, 1542, 1637, 1772, 1961, 2187, 2497, 2840, 2741, 2445, 2207, 2003, 1792, 1678, 1578, 1532, 1527, 1547, 1588, 1696, 1826, 1994, 2228, 2551, 2909]
| }
| }, {
| "name": "2112x1568_HZ_30",
| "resolution": "2112x1568",
| "illumination": "HZ",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1912, 2087, 2094, 2056, 1986, 1939, 1872, 1840, 1822, 1852, 1894, 1979, 2051, 2116, 2139, 2166, 2062, 2045, 2128, 2106, 2037, 1946, 1859, 1780, 1739, 1727, 1754, 1820, 1913, 2007, 2101, 2170, 2222, 2162, 2068, 2155, 2050, 1943, 1834, 1722, 1641, 1584, 1573, 1602, 1685, 1783, 1905, 2026, 2141, 2204, 2182, 2067, 2109, 1997, 1863, 1720, 1592, 1499, 1440, 1424, 1455, 1535, 1656, 1797, 1946, 2085, 2187, 2184, 2072, 2068, 1939, 1784, 1629, 1480, 1374, 1310, 1292, 1325, 1417, 1538, 1696, 1867, 2031, 2148, 2178, 2057, 2038, 1880, 1715, 1538, 1384, 1265, 1194, 1173, 1218, 1305, 1445, 1618, 1799, 1970, 2139, 2174, 2058, 1998, 1846, 1649, 1469, 1309, 1182, 1113, 1100, 1133, 1219, 1367, 1542, 1741, 1936, 2104, 2146, 2038, 1978, 1816, 1606, 1419, 1258, 1134, 1065, 1046, 1084, 1170, 1308, 1493, 1710, 1909, 2070, 2142, 2033, 1973, 1792, 1599, 1407, 1233, 1114, 1044, 1024, 1061, 1147, 1287, 1480, 1678, 1885, 2054, 2137, 2032, 1967, 1800, 1603, 1414, 1241, 1117, 1049, 1029, 1066, 1153, 1290, 1477, 1689, 1885, 2053, 2136, 2034, 1971, 1820, 1632, 1431, 1272, 1149, 1082, 1062, 1101, 1187, 1328, 1497, 1707, 1899, 2063, 2120, 2034, 2000, 1858, 1680, 1497, 1331, 1215, 1144, 1127, 1165, 1246, 1380, 1550, 1752, 1931, 2078, 2133, 2047, 2033, 1915, 1734, 1570, 1420, 1303, 1235, 1215, 1248, 1338, 1462, 1626, 1804, 1969, 2104, 2130, 2030, 2054, 1945, 1812, 1661, 1519, 1408, 1351, 1331, 1364, 1439, 1563, 1709, 1871, 2007, 2121, 2134, 2029, 2077, 2001, 1892, 1766, 1633, 1543, 1479, 1470, 1492, 1563, 1677, 1801, 1934, 2056, 2122, 2137, 1999, 2075, 2040, 1963, 1858, 1761, 1671, 1621, 1605, 1632, 1691, 1784, 1889, 1999, 2087, 2149, 2087, 1894, 2028, 2015, 1967, 1902, 1814, 1757, 1714, 1706, 1725, 1772, 1852, 1936, 1999, 2050, 2080, 1969]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1744, 1847, 1851, 1832, 1767, 1728, 1683, 1652, 1648, 1659, 1702, 1764, 1805, 1865, 1896, 1911, 1837, 1821, 1866, 1862, 1791, 1730, 1664, 1604, 1578, 1567, 1587, 1634, 1704, 1770, 1844, 1901, 1935, 1903, 1837, 1878, 1810, 1736, 1658, 1570, 1512, 1468, 1450, 1482, 1539, 1612, 1698, 1793, 1869, 1914, 1917, 1840, 1836, 1771, 1676, 1575, 1477, 1403, 1355, 1346, 1366, 1434, 1525, 1630, 1736, 1836, 1903, 1928, 1834, 1806, 1720, 1615, 1502, 1396, 1301, 1249, 1233, 1274, 1338, 1439, 1559, 1689, 1793, 1865, 1899, 1810, 1783, 1684, 1568, 1435, 1317, 1224, 1160, 1148, 1182, 1250, 1366, 1501, 1629, 1748, 1859, 1897, 1816, 1764, 1650, 1524, 1382, 1260, 1154, 1095, 1081, 1116, 1191, 1307, 1445, 1591, 1720, 1833, 1892, 1805, 1744, 1630, 1490, 1343, 1212, 1112, 1056, 1040, 1072, 1149, 1270, 1410, 1564, 1704, 1812, 1875, 1797, 1729, 1616, 1474, 1333, 1200, 1096, 1040, 1024, 1058, 1132, 1252, 1396, 1549, 1697, 1816, 1881, 1778, 1733, 1620, 1482, 1336, 1205, 1100, 1041, 1033, 1061, 1140, 1258, 1400, 1562, 1697, 1812, 1870, 1785, 1743, 1634, 1504, 1363, 1238, 1134, 1075, 1061, 1090, 1171, 1283, 1425, 1575, 1717, 1819, 1887, 1802, 1754, 1662, 1543, 1408, 1285, 1189, 1127, 1112, 1149, 1219, 1334, 1465, 1613, 1733, 1840, 1887, 1784, 1784, 1694, 1589, 1467, 1353, 1261, 1208, 1191, 1228, 1297, 1401, 1523, 1653, 1760, 1860, 1894, 1793, 1799, 1735, 1631, 1535, 1437, 1351, 1305, 1288, 1315, 1384, 1477, 1588, 1705, 1810, 1878, 1890, 1799, 1816, 1767, 1694, 1610, 1525, 1454, 1408, 1401, 1426, 1481, 1561, 1651, 1752, 1841, 1883, 1895, 1792, 1827, 1806, 1749, 1685, 1616, 1550, 1520, 1507, 1526, 1575, 1650, 1726, 1808, 1871, 1902, 1875, 1716, 1812, 1800, 1775, 1727, 1672, 1624, 1601, 1600, 1605, 1658, 1709, 1776, 1832, 1866, 1868, 1810]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1769, 1858, 1863, 1825, 1769, 1716, 1675, 1651, 1650, 1662, 1700, 1758, 1799, 1857, 1903, 1911, 1832, 1837, 1882, 1858, 1797, 1728, 1659, 1604, 1568, 1570, 1580, 1634, 1700, 1764, 1837, 1898, 1942, 1903, 1859, 1900, 1830, 1734, 1654, 1573, 1509, 1465, 1456, 1474, 1533, 1608, 1701, 1787, 1872, 1915, 1924, 1846, 1861, 1781, 1686, 1581, 1480, 1403, 1360, 1344, 1367, 1431, 1519, 1620, 1726, 1829, 1905, 1935, 1865, 1834, 1743, 1628, 1514, 1401, 1308, 1256, 1241, 1268, 1337, 1434, 1549, 1673, 1796, 1886, 1911, 1849, 1807, 1697, 1577, 1446, 1321, 1222, 1167, 1153, 1176, 1248, 1367, 1490, 1626, 1751, 1860, 1914, 1845, 1783, 1671, 1529, 1390, 1259, 1158, 1098, 1087, 1111, 1191, 1299, 1441, 1587, 1723, 1844, 1889, 1834, 1767, 1653, 1496, 1355, 1221, 1120, 1060, 1044, 1072, 1145, 1262, 1405, 1561, 1704, 1827, 1887, 1835, 1759, 1635, 1490, 1338, 1199, 1101, 1044, 1024, 1057, 1133, 1243, 1392, 1548, 1700, 1818, 1887, 1829, 1763, 1632, 1488, 1341, 1211, 1108, 1054, 1035, 1066, 1136, 1252, 1395, 1558, 1704, 1822, 1881, 1826, 1770, 1661, 1518, 1371, 1242, 1143, 1084, 1064, 1094, 1171, 1280, 1422, 1572, 1723, 1839, 1893, 1835, 1794, 1686, 1556, 1423, 1292, 1195, 1137, 1126, 1153, 1222, 1334, 1471, 1609, 1747, 1847, 1899, 1840, 1807, 1719, 1604, 1483, 1363, 1272, 1220, 1203, 1234, 1302, 1406, 1525, 1659, 1771, 1867, 1900, 1841, 1833, 1757, 1657, 1553, 1447, 1365, 1319, 1304, 1330, 1394, 1485, 1591, 1708, 1807, 1885, 1924, 1839, 1850, 1795, 1719, 1636, 1543, 1467, 1426, 1416, 1432, 1493, 1573, 1664, 1766, 1848, 1905, 1912, 1817, 1852, 1826, 1776, 1705, 1632, 1575, 1534, 1519, 1549, 1587, 1657, 1736, 1815, 1878, 1919, 1892, 1735, 1828, 1824, 1802, 1753, 1686, 1637, 1624, 1613, 1634, 1665, 1711, 1769, 1843, 1867, 1900, 1815]
| },
| "lsc_samples_blue": {
| "uCoeff": [1607, 1729, 1740, 1679, 1619, 1549, 1538, 1481, 1485, 1509, 1531, 1588, 1645, 1726, 1772, 1796, 1708, 1710, 1824, 1808, 1733, 1654, 1594, 1541, 1503, 1500, 1525, 1572, 1627, 1710, 1795, 1855, 1900, 1840, 1703, 1843, 1763, 1679, 1603, 1521, 1457, 1416, 1406, 1435, 1485, 1567, 1655, 1737, 1817, 1867, 1839, 1707, 1799, 1720, 1637, 1531, 1441, 1376, 1325, 1311, 1337, 1400, 1490, 1586, 1681, 1781, 1857, 1852, 1705, 1767, 1679, 1565, 1467, 1370, 1280, 1230, 1222, 1245, 1318, 1413, 1524, 1640, 1757, 1845, 1824, 1701, 1747, 1632, 1524, 1408, 1300, 1208, 1152, 1136, 1165, 1232, 1350, 1462, 1577, 1705, 1800, 1818, 1677, 1719, 1607, 1485, 1362, 1243, 1143, 1095, 1084, 1112, 1174, 1284, 1418, 1543, 1667, 1780, 1789, 1672, 1712, 1591, 1465, 1321, 1202, 1111, 1057, 1042, 1072, 1136, 1246, 1373, 1521, 1642, 1762, 1794, 1659, 1688, 1594, 1453, 1311, 1184, 1099, 1046, 1024, 1057, 1119, 1226, 1356, 1494, 1636, 1756, 1777, 1682, 1693, 1575, 1451, 1315, 1197, 1098, 1046, 1035, 1061, 1127, 1231, 1361, 1507, 1650, 1752, 1782, 1668, 1719, 1599, 1472, 1339, 1223, 1130, 1076, 1064, 1087, 1155, 1263, 1393, 1536, 1649, 1780, 1789, 1711, 1737, 1632, 1509, 1390, 1283, 1184, 1130, 1114, 1139, 1198, 1305, 1428, 1554, 1686, 1789, 1806, 1686, 1757, 1670, 1565, 1441, 1340, 1244, 1202, 1175, 1206, 1275, 1363, 1481, 1598, 1727, 1823, 1812, 1687, 1788, 1710, 1603, 1503, 1415, 1334, 1287, 1273, 1287, 1351, 1435, 1539, 1655, 1760, 1833, 1815, 1703, 1785, 1732, 1661, 1587, 1493, 1418, 1373, 1370, 1384, 1444, 1514, 1595, 1707, 1795, 1867, 1839, 1679, 1800, 1764, 1713, 1646, 1562, 1497, 1475, 1452, 1475, 1519, 1586, 1663, 1753, 1831, 1874, 1801, 1590, 1698, 1690, 1643, 1571, 1542, 1488, 1455, 1439, 1448, 1509, 1557, 1619, 1670, 1750, 1762, 1665]
| }
| }, {
| "name": "2112x1568_HZ_70",
| "resolution": "2112x1568",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3097, 2962, 2714, 2502, 2309, 2188, 2067, 2009, 1981, 2024, 2095, 2239, 2396, 2588, 2787, 3106, 3446, 3065, 2854, 2609, 2385, 2187, 2030, 1909, 1846, 1827, 1863, 1956, 2096, 2263, 2470, 2704, 3011, 3300, 2916, 2770, 2443, 2197, 2000, 1831, 1717, 1643, 1628, 1663, 1767, 1901, 2085, 2302, 2568, 2846, 3124, 2787, 2611, 2309, 2053, 1833, 1659, 1541, 1470, 1450, 1486, 1580, 1730, 1921, 2154, 2426, 2725, 2985, 2705, 2490, 2192, 1928, 1707, 1521, 1396, 1323, 1303, 1339, 1441, 1584, 1784, 2027, 2309, 2602, 2876, 2621, 2405, 2088, 1828, 1593, 1409, 1275, 1199, 1176, 1223, 1317, 1474, 1681, 1925, 2201, 2543, 2801, 2582, 2324, 2028, 1739, 1509, 1324, 1187, 1114, 1100, 1135, 1225, 1385, 1589, 1844, 2139, 2466, 2714, 2529, 2282, 1982, 1684, 1451, 1268, 1136, 1066, 1046, 1085, 1173, 1320, 1531, 1802, 2094, 2404, 2685, 2515, 2271, 1950, 1675, 1437, 1241, 1116, 1044, 1024, 1061, 1149, 1298, 1515, 1764, 2062, 2377, 2669, 2521, 2268, 1963, 1681, 1446, 1251, 1119, 1049, 1029, 1067, 1156, 1302, 1514, 1778, 2066, 2382, 2675, 2547, 2288, 1997, 1720, 1467, 1285, 1152, 1082, 1063, 1102, 1192, 1344, 1540, 1806, 2093, 2411, 2675, 2585, 2354, 2061, 1787, 1547, 1351, 1223, 1148, 1129, 1169, 1255, 1404, 1606, 1871, 2152, 2460, 2739, 2665, 2441, 2161, 1869, 1641, 1455, 1320, 1245, 1223, 1258, 1358, 1501, 1704, 1952, 2229, 2540, 2799, 2724, 2531, 2241, 1990, 1764, 1577, 1442, 1374, 1352, 1389, 1476, 1626, 1820, 2063, 2322, 2628, 2900, 2846, 2650, 2374, 2131, 1917, 1728, 1607, 1527, 1515, 1542, 1630, 1778, 1960, 2185, 2451, 2719, 3042, 2973, 2767, 2512, 2285, 2076, 1912, 1781, 1711, 1688, 1723, 1804, 1940, 2115, 2333, 2582, 2889, 3149, 3055, 2854, 2590, 2375, 2197, 2028, 1925, 1858, 1843, 1871, 1945, 2076, 2242, 2421, 2645, 2950, 3230]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2704, 2524, 2331, 2181, 2017, 1920, 1835, 1782, 1772, 1791, 1858, 1965, 2067, 2228, 2402, 2641, 2921, 2618, 2420, 2252, 2054, 1914, 1795, 1703, 1661, 1645, 1672, 1738, 1844, 1964, 2125, 2309, 2534, 2781, 2499, 2343, 2111, 1932, 1788, 1655, 1573, 1515, 1493, 1531, 1602, 1703, 1836, 2006, 2193, 2399, 2644, 2403, 2211, 2011, 1823, 1664, 1530, 1437, 1378, 1367, 1391, 1470, 1584, 1728, 1897, 2097, 2310, 2552, 2324, 2121, 1913, 1727, 1564, 1428, 1318, 1259, 1242, 1285, 1358, 1476, 1628, 1815, 2006, 2205, 2428, 2239, 2058, 1844, 1657, 1479, 1337, 1233, 1163, 1151, 1187, 1260, 1389, 1552, 1728, 1925, 2161, 2374, 2217, 2011, 1790, 1596, 1415, 1273, 1157, 1096, 1082, 1117, 1195, 1322, 1483, 1673, 1875, 2104, 2332, 2184, 1974, 1757, 1553, 1369, 1221, 1114, 1056, 1040, 1073, 1151, 1281, 1441, 1637, 1847, 2063, 2287, 2166, 1950, 1738, 1533, 1357, 1207, 1097, 1040, 1024, 1058, 1134, 1262, 1425, 1618, 1835, 2065, 2290, 2144, 1959, 1744, 1544, 1361, 1213, 1102, 1041, 1033, 1061, 1142, 1268, 1430, 1634, 1838, 2063, 2280, 2171, 1984, 1769, 1573, 1394, 1249, 1137, 1075, 1062, 1091, 1175, 1297, 1461, 1655, 1871, 2085, 2325, 2226, 2019, 1817, 1628, 1448, 1303, 1196, 1130, 1114, 1152, 1227, 1354, 1512, 1709, 1905, 2136, 2358, 2243, 2091, 1879, 1697, 1524, 1382, 1276, 1217, 1198, 1237, 1313, 1434, 1588, 1772, 1964, 2198, 2420, 2323, 2158, 1963, 1768, 1618, 1486, 1379, 1325, 1306, 1336, 1415, 1530, 1679, 1859, 2062, 2274, 2488, 2429, 2247, 2051, 1879, 1730, 1603, 1507, 1449, 1439, 1468, 1538, 1644, 1779, 1953, 2154, 2350, 2604, 2559, 2355, 2170, 1998, 1857, 1738, 1640, 1594, 1576, 1602, 1669, 1779, 1909, 2077, 2265, 2480, 2725, 2640, 2461, 2250, 2100, 1963, 1848, 1762, 1721, 1716, 1726, 1804, 1895, 2028, 2181, 2355, 2562, 2857]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2761, 2544, 2349, 2171, 2019, 1903, 1825, 1781, 1775, 1794, 1856, 1958, 2059, 2217, 2413, 2642, 2908, 2650, 2447, 2247, 2062, 1911, 1790, 1702, 1650, 1648, 1663, 1737, 1839, 1956, 2115, 2304, 2545, 2782, 2538, 2377, 2138, 1931, 1783, 1658, 1569, 1512, 1499, 1521, 1596, 1699, 1839, 1998, 2196, 2400, 2655, 2413, 2248, 2025, 1836, 1671, 1533, 1437, 1384, 1365, 1392, 1467, 1577, 1717, 1886, 2088, 2313, 2564, 2373, 2162, 1941, 1742, 1577, 1434, 1326, 1267, 1250, 1280, 1357, 1470, 1617, 1796, 2009, 2235, 2447, 2299, 2090, 1861, 1667, 1491, 1341, 1230, 1171, 1156, 1180, 1257, 1390, 1540, 1724, 1928, 2164, 2400, 2261, 2037, 1815, 1602, 1423, 1272, 1162, 1099, 1088, 1112, 1195, 1313, 1479, 1669, 1879, 2118, 2327, 2226, 2003, 1785, 1559, 1382, 1229, 1122, 1060, 1044, 1073, 1147, 1273, 1436, 1633, 1846, 2083, 2305, 2222, 1989, 1761, 1551, 1363, 1206, 1102, 1044, 1024, 1057, 1135, 1252, 1420, 1617, 1839, 2067, 2300, 2220, 1998, 1759, 1550, 1367, 1220, 1110, 1054, 1035, 1067, 1138, 1262, 1425, 1630, 1846, 2077, 2297, 2233, 2020, 1802, 1589, 1402, 1253, 1146, 1084, 1065, 1095, 1175, 1294, 1458, 1652, 1879, 2112, 2334, 2277, 2073, 1847, 1642, 1465, 1310, 1203, 1140, 1128, 1156, 1230, 1355, 1518, 1705, 1923, 2145, 2376, 2334, 2124, 1911, 1714, 1542, 1393, 1288, 1229, 1210, 1244, 1319, 1440, 1590, 1779, 1977, 2208, 2430, 2404, 2207, 1992, 1800, 1639, 1497, 1395, 1340, 1322, 1352, 1427, 1539, 1682, 1863, 2058, 2283, 2544, 2501, 2300, 2089, 1911, 1761, 1624, 1522, 1468, 1456, 1475, 1551, 1658, 1795, 1971, 2163, 2384, 2635, 2610, 2397, 2199, 2034, 1883, 1757, 1669, 1611, 1590, 1628, 1683, 1787, 1922, 2086, 2275, 2508, 2759, 2683, 2490, 2289, 2139, 1998, 1865, 1778, 1749, 1731, 1760, 1812, 1898, 2019, 2197, 2357, 2622, 2870]
| },
| "lsc_samples_blue": {
| "uCoeff": [2385, 2310, 2155, 1962, 1819, 1692, 1656, 1576, 1578, 1610, 1647, 1741, 1853, 2029, 2206, 2432, 2619, 2395, 2350, 2173, 1976, 1819, 1711, 1629, 1575, 1569, 1600, 1665, 1751, 1889, 2059, 2241, 2477, 2655, 2256, 2288, 2045, 1859, 1721, 1598, 1511, 1457, 1444, 1478, 1542, 1652, 1783, 1933, 2121, 2326, 2502, 2178, 2157, 1943, 1776, 1613, 1490, 1407, 1347, 1330, 1359, 1433, 1544, 1677, 1830, 2024, 2242, 2424, 2117, 2068, 1859, 1668, 1525, 1400, 1296, 1240, 1230, 1255, 1336, 1447, 1589, 1756, 1959, 2177, 2307, 2071, 2009, 1781, 1605, 1449, 1318, 1215, 1155, 1138, 1169, 1240, 1372, 1508, 1667, 1871, 2082, 2251, 2009, 1952, 1736, 1552, 1393, 1254, 1146, 1096, 1085, 1113, 1178, 1298, 1453, 1619, 1810, 2033, 2176, 1987, 1931, 1710, 1524, 1345, 1210, 1113, 1057, 1042, 1073, 1138, 1256, 1402, 1588, 1771, 1997, 2167, 1962, 1896, 1711, 1509, 1333, 1191, 1100, 1046, 1024, 1057, 1121, 1235, 1382, 1556, 1762, 1986, 2136, 2001, 1906, 1690, 1508, 1339, 1205, 1100, 1046, 1035, 1061, 1129, 1240, 1388, 1571, 1782, 1984, 2150, 1995, 1952, 1726, 1536, 1368, 1233, 1133, 1076, 1065, 1088, 1159, 1275, 1426, 1610, 1788, 2033, 2176, 2086, 1996, 1781, 1588, 1429, 1301, 1191, 1133, 1116, 1142, 1206, 1324, 1471, 1640, 1848, 2067, 2233, 2087, 2053, 1848, 1668, 1495, 1368, 1258, 1210, 1181, 1215, 1290, 1393, 1541, 1706, 1921, 2145, 2289, 2145, 2141, 1931, 1735, 1580, 1461, 1361, 1306, 1290, 1306, 1380, 1483, 1623, 1798, 1997, 2207, 2361, 2256, 2199, 2003, 1837, 1702, 1565, 1466, 1409, 1404, 1422, 1496, 1590, 1712, 1896, 2090, 2326, 2502, 2334, 2311, 2109, 1949, 1808, 1673, 1578, 1542, 1513, 1542, 1603, 1701, 1830, 2003, 2206, 2433, 2578, 2344, 2254, 2077, 1910, 1754, 1683, 1595, 1544, 1523, 1536, 1621, 1702, 1819, 1949, 2172, 2369, 2519]
| }
| }, {
| "name": "2112x1568_HZ_100",
| "resolution": "2112x1568",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3985, 3618, 3180, 2836, 2551, 2374, 2214, 2136, 2101, 2153, 2245, 2433, 2654, 2942, 3272, 3811, 4484, 3830, 3399, 2987, 2645, 2367, 2159, 2005, 1926, 1903, 1945, 2057, 2233, 2455, 2747, 3104, 3602, 4153, 3553, 3232, 2737, 2388, 2124, 1912, 1774, 1687, 1669, 1709, 1828, 1990, 2220, 2510, 2888, 3327, 3830, 3327, 2987, 2543, 2195, 1917, 1709, 1572, 1492, 1470, 1509, 1614, 1786, 2015, 2311, 2681, 3129, 3585, 3180, 2806, 2381, 2036, 1766, 1551, 1412, 1333, 1311, 1349, 1459, 1618, 1849, 2147, 2518, 2942, 3399, 3044, 2681, 2245, 1912, 1634, 1427, 1283, 1202, 1179, 1227, 1326, 1495, 1728, 2020, 2374, 2846, 3272, 2975, 2568, 2165, 1807, 1539, 1335, 1190, 1115, 1101, 1136, 1229, 1399, 1624, 1922, 2291, 2737, 3141, 2898, 2510, 2107, 1743, 1475, 1276, 1138, 1066, 1046, 1085, 1175, 1330, 1560, 1871, 2233, 2654, 3092, 2877, 2494, 2068, 1731, 1459, 1248, 1117, 1044, 1024, 1061, 1151, 1306, 1542, 1828, 2195, 2619, 3068, 2888, 2494, 2085, 1739, 1470, 1258, 1120, 1049, 1029, 1067, 1158, 1311, 1542, 1845, 2201, 2628, 3080, 2931, 2526, 2130, 1786, 1495, 1295, 1155, 1083, 1063, 1103, 1195, 1356, 1572, 1880, 2239, 2672, 3092, 2998, 2619, 2214, 1867, 1585, 1367, 1229, 1150, 1131, 1172, 1262, 1422, 1648, 1960, 2318, 2747, 3193, 3129, 2747, 2346, 1970, 1694, 1481, 1333, 1252, 1229, 1266, 1372, 1530, 1762, 2063, 2425, 2867, 3300, 3245, 2888, 2463, 2124, 1841, 1621, 1467, 1392, 1367, 1407, 1503, 1673, 1903, 2207, 2559, 3009, 3474, 3459, 3080, 2654, 2311, 2031, 1799, 1655, 1563, 1548, 1579, 1680, 1854, 2079, 2374, 2747, 3167, 3721, 3703, 3286, 2867, 2526, 2239, 2026, 1863, 1778, 1751, 1791, 1889, 2057, 2284, 2584, 2953, 3444, 3945, 3925, 3474, 3021, 2681, 2418, 2189, 2052, 1965, 1945, 1980, 2074, 2245, 2471, 2737, 3092, 3602, 4175]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3424, 3032, 2691, 2443, 2204, 2063, 1949, 1880, 1866, 1890, 1975, 2116, 2264, 2501, 2782, 3189, 3734, 3216, 2835, 2544, 2251, 2052, 1894, 1777, 1723, 1703, 1735, 1816, 1949, 2110, 2336, 2615, 2983, 3440, 2995, 2691, 2336, 2080, 1885, 1719, 1618, 1550, 1525, 1567, 1650, 1772, 1939, 2165, 2435, 2762, 3189, 2825, 2493, 2191, 1934, 1731, 1570, 1462, 1396, 1383, 1409, 1497, 1628, 1802, 2018, 2292, 2615, 3020, 2691, 2358, 2057, 1811, 1611, 1453, 1331, 1267, 1248, 1294, 1372, 1503, 1680, 1909, 2165, 2460, 2825, 2561, 2264, 1965, 1723, 1512, 1352, 1239, 1166, 1153, 1190, 1267, 1406, 1590, 1802, 2057, 2388, 2731, 2518, 2197, 1894, 1650, 1439, 1282, 1160, 1097, 1082, 1118, 1199, 1333, 1512, 1735, 1991, 2307, 2662, 2468, 2146, 1852, 1600, 1388, 1227, 1115, 1056, 1040, 1073, 1153, 1289, 1465, 1691, 1954, 2251, 2597, 2443, 2116, 1829, 1577, 1375, 1213, 1098, 1040, 1024, 1058, 1135, 1269, 1447, 1669, 1939, 2251, 2597, 2419, 2128, 1838, 1590, 1380, 1219, 1103, 1041, 1033, 1061, 1144, 1276, 1453, 1688, 1944, 2251, 2588, 2460, 2165, 1871, 1625, 1417, 1258, 1139, 1076, 1062, 1092, 1178, 1307, 1488, 1715, 1986, 2285, 2653, 2544, 2217, 1934, 1691, 1479, 1316, 1201, 1132, 1115, 1155, 1233, 1370, 1547, 1781, 2035, 2358, 2711, 2588, 2321, 2018, 1777, 1567, 1404, 1287, 1223, 1203, 1244, 1326, 1459, 1636, 1861, 2116, 2451, 2814, 2721, 2427, 2134, 1871, 1680, 1522, 1401, 1340, 1319, 1352, 1439, 1570, 1747, 1975, 2251, 2570, 2936, 2902, 2570, 2264, 2018, 1820, 1661, 1547, 1479, 1467, 1500, 1580, 1707, 1875, 2104, 2388, 2701, 3135, 3135, 2751, 2443, 2184, 1986, 1829, 1707, 1650, 1628, 1658, 1739, 1875, 2046, 2278, 2561, 2913, 3362, 3332, 2948, 2588, 2343, 2140, 1980, 1866, 1811, 1802, 1816, 1914, 2035, 2217, 2443, 2721, 3083, 3643]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3506, 3059, 2714, 2431, 2207, 2044, 1937, 1879, 1869, 1893, 1973, 2107, 2254, 2487, 2795, 3190, 3716, 3260, 2871, 2538, 2261, 2049, 1888, 1776, 1711, 1707, 1726, 1815, 1943, 2101, 2324, 2609, 2998, 3441, 3047, 2734, 2369, 2078, 1879, 1722, 1614, 1547, 1531, 1557, 1643, 1767, 1943, 2156, 2439, 2764, 3204, 2838, 2538, 2207, 1948, 1739, 1573, 1462, 1402, 1381, 1410, 1494, 1621, 1789, 2005, 2282, 2619, 3035, 2754, 2407, 2090, 1828, 1625, 1459, 1339, 1275, 1257, 1288, 1371, 1497, 1668, 1888, 2169, 2496, 2849, 2637, 2303, 1984, 1735, 1525, 1356, 1236, 1174, 1158, 1183, 1264, 1407, 1577, 1797, 2061, 2391, 2764, 2573, 2227, 1923, 1657, 1448, 1281, 1165, 1100, 1088, 1113, 1199, 1324, 1507, 1730, 1995, 2324, 2656, 2521, 2181, 1884, 1607, 1402, 1236, 1123, 1060, 1044, 1073, 1149, 1281, 1459, 1687, 1953, 2275, 2619, 2513, 2162, 1855, 1597, 1381, 1212, 1103, 1044, 1024, 1057, 1136, 1259, 1442, 1668, 1943, 2254, 2609, 2513, 2175, 1855, 1597, 1386, 1226, 1111, 1054, 1035, 1067, 1140, 1270, 1448, 1684, 1953, 2268, 2609, 2538, 2207, 1908, 1643, 1426, 1262, 1149, 1085, 1065, 1096, 1178, 1304, 1485, 1711, 1995, 2317, 2665, 2609, 2282, 1968, 1707, 1497, 1324, 1208, 1142, 1130, 1159, 1236, 1371, 1554, 1776, 2055, 2369, 2734, 2704, 2361, 2055, 1797, 1587, 1415, 1299, 1236, 1216, 1251, 1332, 1465, 1639, 1869, 2132, 2463, 2827, 2827, 2487, 2169, 1908, 1703, 1534, 1418, 1356, 1336, 1368, 1451, 1580, 1751, 1979, 2247, 2582, 3010, 2998, 2637, 2310, 2055, 1855, 1684, 1563, 1500, 1485, 1507, 1594, 1722, 1893, 2125, 2399, 2744, 3177, 3204, 2806, 2479, 2227, 2016, 1851, 1739, 1668, 1643, 1687, 1755, 1884, 2061, 2289, 2573, 2950, 3409, 3394, 2986, 2637, 2391, 2181, 2000, 1884, 1842, 1819, 1855, 1923, 2038, 2207, 2463, 2724, 3163, 3661]
| },
| "lsc_samples_blue": {
| "uCoeff": [2968, 2745, 2467, 2174, 1969, 1799, 1745, 1647, 1647, 1685, 1735, 1856, 2009, 2257, 2531, 2909, 3303, 2909, 2745, 2447, 2158, 1942, 1799, 1695, 1629, 1620, 1656, 1735, 1844, 2023, 2257, 2531, 2909, 3266, 2670, 2622, 2257, 1995, 1810, 1656, 1551, 1488, 1473, 1511, 1585, 1715, 1880, 2081, 2348, 2670, 2999, 2531, 2426, 2111, 1880, 1675, 1527, 1430, 1363, 1344, 1376, 1458, 1585, 1745, 1942, 2206, 2531, 2852, 2426, 2293, 1995, 1745, 1568, 1423, 1308, 1247, 1236, 1263, 1350, 1473, 1638, 1844, 2111, 2426, 2670, 2348, 2206, 1892, 1666, 1480, 1332, 1221, 1158, 1140, 1172, 1247, 1389, 1543, 1735, 1995, 2293, 2576, 2257, 2126, 1833, 1602, 1416, 1263, 1149, 1097, 1085, 1114, 1181, 1308, 1480, 1675, 1917, 2223, 2467, 2223, 2096, 1799, 1568, 1363, 1216, 1114, 1057, 1042, 1073, 1140, 1263, 1423, 1638, 1868, 2174, 2447, 2190, 2052, 1799, 1551, 1350, 1196, 1101, 1046, 1024, 1057, 1122, 1241, 1402, 1602, 1856, 2158, 2406, 2240, 2066, 1777, 1551, 1357, 1211, 1101, 1046, 1035, 1061, 1131, 1247, 1409, 1620, 1880, 2158, 2426, 2240, 2126, 1822, 1585, 1389, 1241, 1135, 1077, 1065, 1089, 1162, 1285, 1451, 1666, 1892, 2223, 2467, 2367, 2190, 1892, 1647, 1458, 1314, 1196, 1135, 1118, 1144, 1211, 1338, 1503, 1705, 1969, 2275, 2553, 2387, 2275, 1982, 1745, 1535, 1389, 1268, 1216, 1186, 1221, 1302, 1416, 1585, 1788, 2066, 2387, 2646, 2488, 2406, 2096, 1833, 1638, 1495, 1382, 1320, 1302, 1320, 1402, 1519, 1685, 1905, 2174, 2488, 2771, 2670, 2509, 2206, 1969, 1788, 1620, 1503, 1437, 1430, 1451, 1535, 1647, 1799, 2037, 2311, 2670, 2999, 2825, 2694, 2367, 2126, 1930, 1756, 1638, 1593, 1559, 1593, 1666, 1788, 1955, 2190, 2488, 2852, 3160, 2909, 2670, 2367, 2111, 1892, 1788, 1675, 1611, 1585, 1602, 1705, 1810, 1969, 2158, 2488, 2825, 3160]
| }
| }, {
| "name": "2112x1568_TL84_30",
| "resolution": "2112x1568",
| "illumination": "TL84",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [1660, 1764, 1757, 1718, 1649, 1619, 1568, 1543, 1523, 1563, 1590, 1633, 1688, 1739, 1787, 1808, 1750, 1738, 1792, 1771, 1703, 1641, 1573, 1527, 1494, 1490, 1509, 1544, 1608, 1674, 1740, 1795, 1843, 1823, 1751, 1805, 1732, 1648, 1574, 1493, 1440, 1401, 1391, 1411, 1461, 1525, 1600, 1687, 1771, 1818, 1834, 1754, 1756, 1683, 1593, 1497, 1412, 1349, 1304, 1298, 1310, 1368, 1447, 1533, 1638, 1730, 1797, 1816, 1742, 1743, 1644, 1542, 1436, 1339, 1268, 1219, 1208, 1230, 1289, 1370, 1472, 1576, 1683, 1783, 1801, 1729, 1709, 1607, 1493, 1375, 1274, 1197, 1145, 1132, 1160, 1213, 1309, 1418, 1536, 1649, 1758, 1792, 1726, 1684, 1578, 1452, 1335, 1223, 1142, 1095, 1081, 1099, 1166, 1252, 1373, 1489, 1623, 1741, 1789, 1719, 1670, 1557, 1430, 1294, 1186, 1105, 1058, 1042, 1072, 1125, 1220, 1337, 1469, 1596, 1721, 1769, 1708, 1664, 1544, 1411, 1284, 1173, 1093, 1044, 1024, 1052, 1112, 1200, 1319, 1450, 1590, 1710, 1762, 1703, 1665, 1554, 1419, 1286, 1177, 1090, 1048, 1034, 1058, 1112, 1207, 1324, 1458, 1587, 1706, 1763, 1705, 1673, 1562, 1441, 1308, 1200, 1113, 1066, 1053, 1076, 1134, 1228, 1344, 1474, 1600, 1709, 1759, 1723, 1684, 1590, 1467, 1346, 1239, 1156, 1109, 1092, 1118, 1178, 1266, 1378, 1504, 1620, 1730, 1762, 1720, 1716, 1625, 1514, 1401, 1294, 1212, 1162, 1152, 1179, 1235, 1324, 1426, 1542, 1648, 1749, 1771, 1720, 1734, 1654, 1559, 1460, 1369, 1292, 1243, 1231, 1251, 1300, 1382, 1482, 1584, 1683, 1768, 1791, 1722, 1758, 1690, 1611, 1532, 1442, 1375, 1331, 1322, 1340, 1388, 1456, 1537, 1639, 1721, 1781, 1794, 1715, 1762, 1721, 1658, 1591, 1520, 1459, 1415, 1411, 1428, 1470, 1528, 1599, 1678, 1749, 1792, 1769, 1660, 1723, 1697, 1666, 1599, 1550, 1504, 1462, 1459, 1480, 1512, 1558, 1616, 1671, 1724, 1764, 1700]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1652, 1741, 1749, 1712, 1658, 1610, 1571, 1546, 1530, 1554, 1585, 1640, 1684, 1733, 1764, 1788, 1731, 1725, 1761, 1734, 1678, 1624, 1561, 1509, 1477, 1467, 1482, 1524, 1583, 1648, 1718, 1767, 1808, 1781, 1728, 1768, 1703, 1636, 1556, 1489, 1425, 1387, 1380, 1395, 1442, 1513, 1589, 1670, 1744, 1788, 1802, 1728, 1732, 1669, 1585, 1496, 1407, 1338, 1293, 1286, 1305, 1360, 1441, 1535, 1625, 1712, 1776, 1796, 1727, 1711, 1634, 1535, 1433, 1340, 1255, 1207, 1192, 1222, 1282, 1373, 1476, 1577, 1677, 1753, 1794, 1720, 1684, 1595, 1493, 1376, 1273, 1191, 1138, 1124, 1148, 1213, 1310, 1417, 1539, 1642, 1738, 1779, 1717, 1672, 1573, 1452, 1341, 1225, 1135, 1083, 1069, 1096, 1160, 1260, 1387, 1505, 1625, 1721, 1775, 1711, 1658, 1552, 1433, 1310, 1190, 1099, 1052, 1035, 1062, 1125, 1228, 1347, 1487, 1606, 1709, 1768, 1698, 1643, 1542, 1415, 1296, 1180, 1086, 1035, 1024, 1050, 1114, 1215, 1339, 1470, 1597, 1700, 1762, 1697, 1648, 1539, 1422, 1301, 1184, 1092, 1041, 1028, 1055, 1122, 1222, 1344, 1473, 1597, 1713, 1768, 1690, 1650, 1558, 1441, 1321, 1209, 1123, 1068, 1053, 1077, 1142, 1245, 1365, 1496, 1611, 1711, 1760, 1706, 1665, 1576, 1469, 1357, 1253, 1162, 1112, 1095, 1121, 1189, 1283, 1399, 1521, 1633, 1721, 1771, 1713, 1688, 1610, 1511, 1404, 1307, 1223, 1175, 1166, 1194, 1255, 1338, 1442, 1550, 1655, 1742, 1771, 1706, 1702, 1638, 1555, 1461, 1379, 1303, 1259, 1244, 1271, 1320, 1405, 1499, 1602, 1685, 1754, 1788, 1709, 1721, 1670, 1598, 1532, 1450, 1386, 1344, 1338, 1356, 1403, 1474, 1554, 1648, 1717, 1768, 1786, 1696, 1728, 1706, 1653, 1586, 1526, 1467, 1441, 1428, 1444, 1486, 1545, 1615, 1682, 1749, 1776, 1764, 1628, 1708, 1699, 1673, 1623, 1571, 1536, 1497, 1499, 1510, 1549, 1596, 1647, 1708, 1738, 1776, 1707]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1656, 1738, 1750, 1727, 1670, 1630, 1590, 1578, 1561, 1578, 1610, 1642, 1693, 1727, 1773, 1789, 1731, 1729, 1774, 1747, 1690, 1635, 1574, 1527, 1499, 1491, 1506, 1547, 1599, 1653, 1713, 1769, 1805, 1781, 1740, 1778, 1712, 1645, 1567, 1498, 1446, 1409, 1397, 1416, 1458, 1519, 1589, 1669, 1742, 1782, 1787, 1743, 1749, 1674, 1590, 1502, 1416, 1355, 1313, 1302, 1316, 1369, 1446, 1532, 1618, 1703, 1767, 1786, 1739, 1716, 1636, 1539, 1441, 1346, 1269, 1227, 1210, 1230, 1289, 1367, 1461, 1566, 1667, 1752, 1776, 1729, 1696, 1603, 1489, 1381, 1281, 1198, 1148, 1134, 1154, 1214, 1309, 1411, 1529, 1626, 1723, 1762, 1725, 1673, 1568, 1454, 1336, 1226, 1140, 1089, 1077, 1099, 1156, 1248, 1366, 1483, 1604, 1703, 1750, 1712, 1660, 1549, 1433, 1303, 1192, 1104, 1056, 1041, 1063, 1121, 1219, 1338, 1470, 1582, 1688, 1751, 1707, 1654, 1542, 1415, 1285, 1179, 1089, 1043, 1024, 1050, 1109, 1201, 1321, 1451, 1576, 1682, 1745, 1709, 1650, 1544, 1422, 1294, 1176, 1093, 1048, 1033, 1059, 1114, 1215, 1330, 1465, 1587, 1685, 1740, 1709, 1661, 1560, 1441, 1314, 1210, 1122, 1076, 1061, 1080, 1143, 1238, 1357, 1478, 1599, 1699, 1744, 1722, 1679, 1589, 1471, 1360, 1257, 1174, 1125, 1112, 1133, 1186, 1283, 1387, 1508, 1620, 1706, 1762, 1739, 1707, 1621, 1519, 1415, 1319, 1237, 1198, 1182, 1204, 1263, 1340, 1447, 1553, 1654, 1737, 1776, 1733, 1724, 1655, 1570, 1472, 1390, 1321, 1279, 1267, 1283, 1331, 1412, 1502, 1598, 1690, 1756, 1786, 1725, 1741, 1691, 1621, 1551, 1467, 1408, 1371, 1367, 1377, 1425, 1489, 1567, 1648, 1725, 1774, 1778, 1718, 1744, 1722, 1674, 1611, 1550, 1493, 1468, 1460, 1475, 1506, 1566, 1629, 1697, 1750, 1785, 1777, 1645, 1727, 1725, 1704, 1648, 1601, 1559, 1540, 1535, 1540, 1573, 1627, 1670, 1717, 1750, 1777, 1707]
| },
| "lsc_samples_blue": {
| "uCoeff": [1522, 1603, 1596, 1560, 1512, 1463, 1437, 1405, 1409, 1422, 1445, 1495, 1537, 1592, 1630, 1658, 1594, 1587, 1662, 1641, 1585, 1536, 1481, 1438, 1410, 1405, 1419, 1447, 1505, 1562, 1630, 1678, 1715, 1680, 1596, 1675, 1616, 1546, 1478, 1412, 1366, 1335, 1326, 1351, 1391, 1442, 1516, 1583, 1657, 1700, 1695, 1593, 1642, 1582, 1512, 1429, 1349, 1298, 1255, 1257, 1268, 1317, 1386, 1466, 1547, 1626, 1679, 1690, 1584, 1620, 1547, 1459, 1371, 1294, 1228, 1191, 1176, 1203, 1255, 1324, 1417, 1496, 1589, 1661, 1659, 1570, 1594, 1511, 1420, 1323, 1239, 1169, 1128, 1114, 1137, 1188, 1274, 1362, 1465, 1557, 1646, 1649, 1552, 1579, 1486, 1388, 1286, 1198, 1122, 1080, 1067, 1090, 1146, 1227, 1330, 1430, 1535, 1617, 1647, 1563, 1567, 1475, 1365, 1261, 1175, 1093, 1052, 1039, 1060, 1112, 1196, 1301, 1406, 1517, 1616, 1635, 1557, 1560, 1463, 1354, 1255, 1152, 1074, 1042, 1024, 1052, 1096, 1185, 1287, 1395, 1501, 1597, 1645, 1569, 1557, 1470, 1369, 1258, 1160, 1085, 1047, 1031, 1052, 1104, 1178, 1290, 1397, 1513, 1605, 1624, 1568, 1579, 1486, 1384, 1279, 1182, 1108, 1059, 1056, 1072, 1119, 1207, 1305, 1417, 1519, 1612, 1641, 1565, 1589, 1506, 1408, 1316, 1223, 1143, 1105, 1092, 1117, 1157, 1239, 1338, 1442, 1531, 1622, 1642, 1568, 1608, 1532, 1450, 1355, 1273, 1198, 1163, 1149, 1168, 1221, 1294, 1379, 1481, 1562, 1643, 1659, 1577, 1619, 1561, 1492, 1404, 1338, 1266, 1231, 1217, 1237, 1280, 1345, 1417, 1522, 1604, 1673, 1665, 1585, 1643, 1593, 1532, 1464, 1403, 1342, 1305, 1296, 1305, 1346, 1407, 1482, 1552, 1633, 1675, 1669, 1576, 1644, 1624, 1574, 1511, 1454, 1404, 1373, 1369, 1381, 1408, 1467, 1526, 1595, 1659, 1695, 1653, 1488, 1575, 1564, 1535, 1475, 1446, 1395, 1374, 1365, 1381, 1403, 1455, 1498, 1555, 1596, 1627, 1565]
| }
| }, {
| "name": "2112x1568_TL84_70",
| "resolution": "2112x1568",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2508, 2373, 2183, 2017, 1859, 1781, 1694, 1650, 1623, 1675, 1720, 1798, 1911, 2048, 2229, 2454, 2719, 2452, 2297, 2119, 1936, 1801, 1686, 1613, 1564, 1557, 1581, 1632, 1728, 1844, 1986, 2154, 2382, 2621, 2342, 2230, 2002, 1821, 1687, 1566, 1491, 1441, 1428, 1452, 1515, 1603, 1718, 1871, 2056, 2249, 2493, 2258, 2095, 1895, 1721, 1574, 1457, 1378, 1324, 1316, 1331, 1398, 1497, 1615, 1778, 1957, 2155, 2362, 2176, 2033, 1815, 1640, 1490, 1367, 1283, 1228, 1215, 1240, 1305, 1401, 1530, 1681, 1865, 2089, 2271, 2114, 1958, 1749, 1569, 1412, 1291, 1205, 1149, 1134, 1163, 1221, 1329, 1460, 1619, 1801, 2024, 2211, 2082, 1904, 1702, 1514, 1363, 1233, 1145, 1096, 1082, 1100, 1170, 1264, 1404, 1557, 1756, 1981, 2176, 2056, 1876, 1669, 1484, 1316, 1194, 1107, 1058, 1042, 1073, 1127, 1228, 1362, 1529, 1716, 1943, 2131, 2035, 1865, 1651, 1462, 1305, 1179, 1094, 1044, 1024, 1052, 1114, 1207, 1343, 1505, 1707, 1925, 2115, 2033, 1870, 1665, 1472, 1307, 1184, 1091, 1048, 1034, 1058, 1114, 1215, 1349, 1516, 1705, 1923, 2122, 2050, 1891, 1681, 1502, 1334, 1209, 1115, 1067, 1054, 1076, 1137, 1239, 1373, 1539, 1728, 1938, 2132, 2105, 1923, 1728, 1539, 1380, 1253, 1162, 1111, 1094, 1120, 1184, 1282, 1416, 1582, 1766, 1986, 2165, 2141, 1995, 1791, 1607, 1450, 1318, 1223, 1168, 1157, 1186, 1248, 1350, 1478, 1640, 1821, 2041, 2222, 2201, 2063, 1856, 1680, 1530, 1410, 1315, 1258, 1245, 1267, 1325, 1424, 1556, 1711, 1895, 2112, 2319, 2290, 2157, 1944, 1773, 1636, 1507, 1418, 1364, 1352, 1374, 1433, 1524, 1641, 1809, 1987, 2193, 2421, 2405, 2247, 2046, 1875, 1738, 1622, 1533, 1473, 1466, 1489, 1545, 1631, 1749, 1902, 2086, 2297, 2514, 2508, 2298, 2087, 1944, 1791, 1693, 1615, 1553, 1547, 1575, 1625, 1703, 1815, 1951, 2130, 2373, 2602]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2488, 2331, 2170, 2009, 1871, 1770, 1697, 1654, 1631, 1664, 1714, 1807, 1905, 2039, 2193, 2417, 2674, 2426, 2245, 2065, 1903, 1780, 1671, 1591, 1545, 1530, 1551, 1609, 1698, 1810, 1956, 2113, 2324, 2537, 2300, 2173, 1962, 1805, 1665, 1561, 1475, 1425, 1415, 1435, 1493, 1589, 1704, 1849, 2020, 2203, 2435, 2213, 2060, 1876, 1712, 1573, 1451, 1365, 1313, 1303, 1325, 1390, 1489, 1618, 1761, 1932, 2124, 2329, 2151, 1989, 1802, 1631, 1486, 1368, 1269, 1216, 1199, 1231, 1298, 1404, 1534, 1682, 1857, 2048, 2260, 2100, 1924, 1735, 1570, 1414, 1289, 1198, 1141, 1126, 1151, 1221, 1330, 1459, 1623, 1793, 1997, 2191, 2068, 1888, 1695, 1514, 1369, 1236, 1138, 1083, 1070, 1097, 1164, 1273, 1419, 1575, 1759, 1955, 2155, 2044, 1860, 1663, 1488, 1334, 1197, 1101, 1052, 1035, 1062, 1127, 1237, 1373, 1549, 1728, 1928, 2128, 2020, 1837, 1648, 1466, 1317, 1186, 1087, 1035, 1024, 1050, 1116, 1223, 1364, 1528, 1715, 1912, 2114, 2024, 1848, 1647, 1475, 1323, 1191, 1093, 1041, 1028, 1055, 1124, 1231, 1370, 1533, 1717, 1933, 2128, 2028, 1859, 1676, 1501, 1348, 1219, 1126, 1069, 1054, 1077, 1145, 1256, 1396, 1564, 1741, 1941, 2133, 2079, 1897, 1710, 1542, 1392, 1268, 1168, 1114, 1097, 1124, 1196, 1301, 1439, 1602, 1782, 1974, 2179, 2129, 1956, 1772, 1604, 1453, 1332, 1235, 1182, 1172, 1202, 1269, 1365, 1496, 1650, 1829, 2032, 2222, 2177, 2015, 1835, 1675, 1531, 1421, 1328, 1275, 1259, 1289, 1346, 1450, 1575, 1733, 1897, 2092, 2316, 2267, 2101, 1918, 1757, 1636, 1516, 1430, 1378, 1369, 1391, 1450, 1544, 1662, 1821, 1981, 2173, 2405, 2367, 2191, 2024, 1869, 1733, 1630, 1543, 1504, 1486, 1507, 1565, 1652, 1769, 1908, 2086, 2271, 2504, 2433, 2271, 2091, 1953, 1823, 1720, 1654, 1595, 1595, 1610, 1670, 1752, 1855, 2004, 2152, 2396, 2618]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2498, 2326, 2172, 2031, 1886, 1795, 1720, 1693, 1668, 1693, 1745, 1810, 1917, 2031, 2207, 2419, 2675, 2434, 2267, 2083, 1919, 1794, 1687, 1612, 1571, 1558, 1579, 1636, 1717, 1817, 1950, 2115, 2319, 2538, 2322, 2188, 1975, 1816, 1678, 1572, 1498, 1449, 1434, 1457, 1512, 1595, 1704, 1847, 2017, 2194, 2407, 2240, 2084, 1883, 1718, 1579, 1462, 1384, 1333, 1320, 1337, 1399, 1495, 1614, 1753, 1921, 2110, 2311, 2171, 1996, 1804, 1637, 1495, 1375, 1284, 1236, 1217, 1240, 1305, 1397, 1518, 1669, 1844, 2046, 2231, 2114, 1939, 1744, 1564, 1419, 1298, 1206, 1151, 1136, 1157, 1222, 1329, 1452, 1611, 1773, 1976, 2164, 2081, 1891, 1688, 1516, 1364, 1237, 1144, 1090, 1078, 1100, 1160, 1260, 1397, 1549, 1733, 1930, 2119, 2046, 1863, 1659, 1488, 1326, 1199, 1106, 1056, 1041, 1063, 1123, 1227, 1364, 1530, 1699, 1900, 2104, 2033, 1852, 1648, 1466, 1306, 1185, 1090, 1043, 1024, 1050, 1111, 1208, 1345, 1507, 1690, 1889, 2090, 2041, 1850, 1653, 1475, 1316, 1183, 1095, 1048, 1033, 1059, 1116, 1224, 1354, 1525, 1705, 1896, 2087, 2056, 1874, 1679, 1501, 1340, 1220, 1125, 1076, 1062, 1080, 1146, 1249, 1387, 1544, 1726, 1925, 2108, 2102, 1917, 1727, 1544, 1395, 1273, 1180, 1128, 1114, 1136, 1193, 1300, 1426, 1587, 1766, 1953, 2164, 2171, 1982, 1785, 1613, 1466, 1345, 1250, 1206, 1188, 1212, 1278, 1368, 1502, 1653, 1828, 2025, 2231, 2221, 2047, 1858, 1694, 1545, 1433, 1347, 1297, 1283, 1301, 1358, 1457, 1579, 1728, 1904, 2094, 2311, 2295, 2131, 1947, 1785, 1658, 1535, 1455, 1408, 1401, 1414, 1475, 1561, 1678, 1820, 1993, 2182, 2392, 2412, 2217, 2046, 1897, 1764, 1658, 1573, 1534, 1522, 1542, 1588, 1677, 1787, 1928, 2088, 2286, 2530, 2474, 2306, 2132, 1998, 1858, 1758, 1683, 1648, 1637, 1648, 1699, 1790, 1886, 2016, 2172, 2397, 2619]
| },
| "lsc_samples_blue": {
| "uCoeff": [2186, 2080, 1927, 1791, 1676, 1583, 1532, 1485, 1486, 1505, 1542, 1623, 1709, 1837, 1981, 2180, 2354, 2149, 2082, 1928, 1777, 1669, 1575, 1508, 1468, 1460, 1478, 1519, 1604, 1702, 1837, 1982, 2169, 2335, 2062, 2029, 1842, 1691, 1570, 1472, 1408, 1368, 1356, 1385, 1436, 1507, 1617, 1738, 1899, 2068, 2241, 1986, 1928, 1761, 1622, 1495, 1387, 1322, 1272, 1272, 1286, 1343, 1428, 1537, 1666, 1820, 1983, 2150, 1922, 1860, 1691, 1541, 1416, 1318, 1241, 1198, 1182, 1211, 1269, 1350, 1468, 1585, 1745, 1919, 2043, 1868, 1801, 1630, 1485, 1355, 1253, 1175, 1131, 1116, 1140, 1195, 1290, 1398, 1537, 1687, 1872, 1989, 1820, 1765, 1588, 1441, 1310, 1207, 1125, 1080, 1068, 1091, 1149, 1238, 1358, 1489, 1648, 1816, 1962, 1825, 1740, 1569, 1411, 1281, 1182, 1094, 1052, 1039, 1060, 1114, 1204, 1323, 1458, 1620, 1805, 1932, 1811, 1728, 1553, 1398, 1273, 1157, 1075, 1042, 1024, 1052, 1097, 1192, 1308, 1444, 1599, 1777, 1942, 1833, 1727, 1563, 1415, 1277, 1166, 1086, 1047, 1031, 1052, 1106, 1185, 1312, 1447, 1615, 1791, 1915, 1844, 1765, 1588, 1436, 1302, 1191, 1110, 1060, 1057, 1072, 1122, 1217, 1330, 1474, 1629, 1808, 1953, 1860, 1793, 1624, 1470, 1347, 1236, 1148, 1107, 1094, 1119, 1163, 1253, 1372, 1510, 1654, 1839, 1980, 1896, 1844, 1672, 1530, 1398, 1295, 1209, 1169, 1154, 1175, 1233, 1318, 1425, 1568, 1711, 1893, 2043, 1959, 1895, 1733, 1598, 1465, 1374, 1287, 1246, 1229, 1253, 1302, 1383, 1480, 1634, 1790, 1974, 2107, 2042, 1980, 1811, 1672, 1554, 1462, 1382, 1335, 1324, 1335, 1386, 1466, 1576, 1698, 1866, 2029, 2194, 2127, 2051, 1903, 1763, 1638, 1543, 1469, 1426, 1418, 1435, 1473, 1559, 1657, 1791, 1954, 2136, 2282, 2107, 2029, 1877, 1755, 1626, 1560, 1480, 1447, 1434, 1455, 1490, 1571, 1658, 1784, 1927, 2123, 2286]
| }
| }, {
| "name": "2112x1568_TL84_100",
| "resolution": "2112x1568",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3144, 2830, 2502, 2242, 2016, 1902, 1788, 1731, 1698, 1759, 1818, 1922, 2078, 2280, 2561, 2938, 3445, 2987, 2676, 2380, 2110, 1922, 1771, 1677, 1617, 1607, 1636, 1698, 1818, 1971, 2170, 2423, 2786, 3219, 2786, 2549, 2205, 1950, 1771, 1621, 1530, 1471, 1455, 1483, 1556, 1661, 1806, 2008, 2270, 2573, 2987, 2636, 2349, 2054, 1818, 1631, 1491, 1399, 1339, 1330, 1346, 1421, 1534, 1677, 1882, 2127, 2423, 2772, 2502, 2251, 1943, 1714, 1530, 1388, 1294, 1235, 1221, 1247, 1317, 1424, 1574, 1759, 2001, 2319, 2624, 2402, 2144, 1856, 1626, 1440, 1304, 1210, 1151, 1136, 1166, 1227, 1343, 1491, 1682, 1915, 2223, 2525, 2349, 2070, 1794, 1560, 1384, 1241, 1148, 1097, 1082, 1101, 1173, 1273, 1428, 1607, 1856, 2161, 2467, 2309, 2031, 1753, 1525, 1333, 1199, 1108, 1058, 1042, 1073, 1129, 1235, 1381, 1574, 1806, 2110, 2402, 2280, 2016, 1731, 1500, 1320, 1184, 1095, 1044, 1024, 1052, 1115, 1213, 1360, 1547, 1794, 2086, 2380, 2280, 2023, 1748, 1512, 1323, 1189, 1092, 1048, 1034, 1058, 1115, 1221, 1367, 1560, 1794, 2086, 2391, 2309, 2054, 1771, 1547, 1353, 1216, 1117, 1067, 1054, 1077, 1139, 1247, 1395, 1588, 1824, 2110, 2412, 2391, 2102, 1831, 1593, 1406, 1264, 1166, 1113, 1095, 1122, 1189, 1294, 1444, 1641, 1875, 2178, 2467, 2456, 2205, 1915, 1677, 1487, 1336, 1232, 1173, 1161, 1191, 1258, 1370, 1517, 1714, 1950, 2261, 2561, 2561, 2309, 2008, 1771, 1583, 1440, 1333, 1270, 1255, 1279, 1343, 1455, 1612, 1806, 2054, 2370, 2716, 2716, 2456, 2135, 1895, 1714, 1556, 1451, 1388, 1374, 1399, 1467, 1574, 1720, 1936, 2187, 2502, 2891, 2922, 2611, 2289, 2038, 1849, 1698, 1588, 1517, 1508, 1534, 1602, 1709, 1862, 2070, 2339, 2676, 3072, 3144, 2730, 2380, 2152, 1936, 1800, 1698, 1621, 1612, 1646, 1709, 1812, 1964, 2161, 2434, 2830, 3278]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3116, 2774, 2485, 2232, 2031, 1889, 1791, 1735, 1707, 1746, 1811, 1932, 2071, 2269, 2515, 2889, 3381, 2951, 2609, 2313, 2071, 1897, 1754, 1653, 1596, 1578, 1602, 1673, 1784, 1932, 2135, 2372, 2711, 3104, 2729, 2477, 2157, 1932, 1746, 1615, 1512, 1454, 1442, 1464, 1532, 1646, 1791, 1983, 2226, 2515, 2910, 2577, 2306, 2031, 1807, 1630, 1485, 1386, 1327, 1316, 1340, 1412, 1526, 1680, 1863, 2098, 2385, 2729, 2470, 2197, 1928, 1704, 1526, 1389, 1280, 1222, 1204, 1238, 1310, 1427, 1578, 1761, 1992, 2269, 2609, 2385, 2103, 1839, 1627, 1442, 1302, 1203, 1143, 1128, 1154, 1227, 1344, 1490, 1686, 1906, 2191, 2500, 2332, 2051, 1787, 1560, 1391, 1244, 1140, 1084, 1070, 1098, 1167, 1282, 1444, 1627, 1859, 2130, 2441, 2294, 2012, 1746, 1529, 1351, 1203, 1102, 1052, 1035, 1062, 1129, 1244, 1393, 1596, 1819, 2092, 2399, 2262, 1983, 1728, 1504, 1333, 1191, 1088, 1035, 1024, 1050, 1117, 1229, 1382, 1572, 1803, 2071, 2379, 2269, 1997, 1728, 1515, 1340, 1196, 1094, 1041, 1028, 1055, 1126, 1238, 1389, 1578, 1807, 2098, 2399, 2281, 2016, 1765, 1546, 1368, 1226, 1128, 1069, 1054, 1078, 1148, 1265, 1419, 1615, 1839, 2114, 2413, 2358, 2071, 1811, 1596, 1419, 1280, 1172, 1116, 1098, 1126, 1201, 1314, 1469, 1663, 1893, 2163, 2485, 2441, 2157, 1893, 1673, 1490, 1351, 1244, 1187, 1176, 1208, 1280, 1386, 1537, 1725, 1960, 2250, 2561, 2530, 2250, 1983, 1765, 1584, 1452, 1346, 1288, 1270, 1302, 1366, 1483, 1633, 1831, 2056, 2345, 2711, 2685, 2385, 2103, 1876, 1714, 1566, 1464, 1403, 1393, 1417, 1485, 1596, 1743, 1950, 2180, 2477, 2870, 2870, 2538, 2262, 2031, 1843, 1707, 1599, 1551, 1529, 1554, 1624, 1732, 1884, 2077, 2339, 2642, 3059, 3037, 2693, 2385, 2163, 1974, 1831, 1743, 1669, 1666, 1686, 1761, 1868, 2012, 2226, 2463, 2860, 3301]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3129, 2767, 2488, 2259, 2049, 1918, 1818, 1779, 1749, 1779, 1846, 1936, 2085, 2259, 2533, 2892, 3382, 2963, 2637, 2335, 2090, 1913, 1772, 1676, 1624, 1608, 1633, 1703, 1806, 1940, 2127, 2375, 2705, 3106, 2758, 2495, 2172, 1945, 1761, 1627, 1537, 1480, 1462, 1488, 1552, 1653, 1791, 1981, 2223, 2503, 2872, 2612, 2335, 2039, 1814, 1637, 1496, 1406, 1349, 1334, 1353, 1422, 1532, 1676, 1854, 2085, 2368, 2705, 2495, 2206, 1931, 1710, 1535, 1396, 1295, 1243, 1223, 1247, 1317, 1420, 1560, 1746, 1977, 2266, 2572, 2402, 2122, 1850, 1621, 1447, 1311, 1211, 1154, 1138, 1160, 1228, 1343, 1483, 1673, 1883, 2166, 2466, 2348, 2054, 1779, 1563, 1385, 1245, 1146, 1091, 1078, 1101, 1163, 1269, 1420, 1599, 1830, 2101, 2395, 2297, 2015, 1742, 1529, 1343, 1205, 1107, 1056, 1041, 1063, 1124, 1234, 1383, 1575, 1787, 2059, 2368, 2278, 2000, 1728, 1504, 1321, 1190, 1091, 1043, 1024, 1050, 1112, 1214, 1362, 1549, 1775, 2044, 2348, 2290, 2000, 1735, 1515, 1332, 1188, 1096, 1048, 1033, 1059, 1117, 1230, 1373, 1569, 1794, 2054, 2348, 2316, 2034, 1768, 1546, 1360, 1227, 1127, 1077, 1062, 1081, 1149, 1258, 1410, 1593, 1822, 2095, 2382, 2388, 2095, 1830, 1599, 1422, 1285, 1185, 1130, 1115, 1138, 1198, 1313, 1455, 1646, 1875, 2138, 2466, 2495, 2189, 1909, 1683, 1504, 1365, 1260, 1212, 1193, 1218, 1289, 1389, 1543, 1728, 1958, 2241, 2572, 2588, 2290, 2010, 1787, 1599, 1465, 1367, 1311, 1295, 1315, 1378, 1491, 1637, 1826, 2064, 2348, 2705, 2722, 2423, 2138, 1909, 1739, 1587, 1491, 1435, 1427, 1442, 1512, 1615, 1761, 1949, 2194, 2488, 2852, 2932, 2572, 2290, 2064, 1879, 1739, 1633, 1584, 1569, 1593, 1649, 1761, 1905, 2101, 2342, 2662, 3095, 3095, 2740, 2437, 2218, 2015, 1875, 1775, 1728, 1714, 1728, 1794, 1913, 2049, 2241, 2488, 2862, 3302]
| },
| "lsc_samples_blue": {
| "uCoeff": [2684, 2438, 2176, 1965, 1799, 1672, 1603, 1544, 1544, 1567, 1615, 1719, 1838, 2021, 2245, 2571, 2924, 2571, 2397, 2143, 1921, 1769, 1646, 1561, 1511, 1501, 1522, 1573, 1678, 1807, 1993, 2210, 2510, 2827, 2411, 2294, 2012, 1799, 1640, 1517, 1440, 1393, 1379, 1411, 1470, 1556, 1692, 1854, 2081, 2344, 2651, 2281, 2143, 1895, 1705, 1544, 1416, 1340, 1284, 1284, 1299, 1362, 1460, 1591, 1755, 1965, 2210, 2495, 2176, 2041, 1799, 1603, 1450, 1336, 1250, 1204, 1187, 1217, 1280, 1370, 1506, 1652, 1862, 2112, 2331, 2091, 1956, 1719, 1533, 1379, 1264, 1180, 1133, 1118, 1142, 1200, 1303, 1425, 1591, 1784, 2041, 2245, 2021, 1904, 1665, 1480, 1328, 1214, 1127, 1081, 1068, 1092, 1152, 1246, 1379, 1533, 1733, 1965, 2199, 2021, 1870, 1640, 1445, 1295, 1187, 1095, 1052, 1039, 1060, 1115, 1210, 1340, 1496, 1698, 1947, 2154, 2002, 1854, 1621, 1430, 1287, 1161, 1076, 1042, 1024, 1052, 1098, 1197, 1323, 1480, 1672, 1912, 2165, 2031, 1854, 1633, 1450, 1291, 1171, 1087, 1047, 1031, 1052, 1107, 1190, 1328, 1485, 1692, 1930, 2133, 2051, 1904, 1665, 1475, 1319, 1197, 1112, 1060, 1057, 1073, 1124, 1224, 1349, 1517, 1712, 1956, 2188, 2081, 1947, 1712, 1517, 1370, 1246, 1152, 1109, 1095, 1121, 1167, 1264, 1397, 1561, 1747, 2002, 2233, 2143, 2021, 1777, 1591, 1430, 1311, 1217, 1174, 1158, 1180, 1242, 1336, 1460, 1633, 1822, 2081, 2331, 2245, 2101, 1862, 1678, 1511, 1402, 1303, 1257, 1239, 1264, 1319, 1411, 1528, 1719, 1930, 2199, 2438, 2384, 2233, 1974, 1777, 1621, 1506, 1411, 1357, 1344, 1357, 1416, 1511, 1646, 1807, 2041, 2294, 2587, 2540, 2357, 2112, 1904, 1733, 1609, 1517, 1465, 1455, 1475, 1522, 1627, 1755, 1938, 2176, 2467, 2754, 2571, 2370, 2112, 1921, 1740, 1646, 1544, 1501, 1485, 1511, 1556, 1659, 1777, 1956, 2176, 2495, 2827]
| }
| }],
| "tableAll_len": 21
| }
| },
| "bayer2dnr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [99, 102, 104, 105, 107, 107, 107, 106, 104, 101, 99, 96, 94, 94, 94, 94]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [99, 102, 104, 105, 107, 107, 107, 106, 104, 101, 99, 96, 94, 94, 94, 94]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [124, 127, 129, 130, 132, 132, 131, 130, 128, 126, 124, 123, 121, 119, 118, 116]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [179, 181, 183, 184, 185, 185, 184, 182, 179, 177, 174, 171, 169, 166, 164, 162]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1255, 1216]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "hdrdgain_ctrl_en": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.7,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.9,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 1.3,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 1.5,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.8,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 1,
| "ratio": 0.01,
| "weight": 0.92,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1,
| "hdr_dgain_scale_s": 1,
| "hdr_dgain_scale_m": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "bayertnr_v2": {
| "Version": "V2",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [99, 102, 104, 105, 107, 107, 107, 106, 104, 101, 99, 96, 94, 94, 94, 94],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
| "hi_sigma": [167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [99, 102, 104, 105, 107, 107, 107, 106, 104, 101, 99, 96, 94, 94, 94, 94],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
| "hi_sigma": [167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [124, 127, 129, 130, 132, 132, 131, 130, 128, 126, 124, 123, 121, 119, 118, 116],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
| "hi_sigma": [167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [179, 181, 183, 184, 185, 185, 184, 182, 179, 177, 174, 171, 169, 166, 164, 162],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [24, 25, 25, 25, 26, 26, 25, 25, 24, 24, 23, 22, 22, 22, 22, 22],
| "hi_sigma": [196, 200, 204, 206, 208, 208, 205, 202, 197, 192, 187, 183, 183, 183, 183, 183]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247],
| "lumapoint2": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [35, 34, 34, 34, 34, 33, 33, 33, 33, 32, 32, 32, 31, 31, 31, 30],
| "hi_sigma": [280, 278, 277, 275, 273, 270, 268, 266, 264, 262, 260, 257, 255, 253, 250, 247]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "hi_sigma": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [32, 32, 32, 32, 51, 61, 65, 66, 64, 59, 52, 43, 32, 32, 32, 32],
| "hi_sigma": [378, 356, 336, 320, 295, 280, 271, 266, 261, 256, 256, 256, 256, 256, 256, 256]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [36, 36, 36, 45, 63, 70, 72, 71, 67, 63, 58, 53, 50, 47, 45, 43],
| "hi_sigma": [499, 476, 457, 440, 415, 398, 387, 379, 370, 361, 348, 332, 311, 287, 269, 269]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [34, 38, 47, 53, 61, 66, 69, 70, 71, 71, 71, 70, 68, 65, 61, 53],
| "hi_sigma": [663, 641, 621, 603, 576, 558, 546, 539, 533, 527, 519, 508, 493, 475, 454, 433]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [75, 78, 80, 81, 80, 78, 77, 78, 82, 88, 95, 102, 108, 111, 111, 103],
| "hi_sigma": [973, 945, 919, 897, 862, 840, 828, 824, 822, 821, 817, 810, 799, 783, 763, 743]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [81, 95, 103, 109, 115, 118, 118, 117, 114, 110, 106, 102, 97, 93, 88, 83],
| "hi_sigma": [1438, 1418, 1402, 1389, 1374, 1369, 1369, 1370, 1369, 1363, 1352, 1333, 1307, 1273, 1227, 1208]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1055, 1016],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [228, 232, 235, 237, 237, 236, 233, 229, 225, 221, 218, 216, 213, 211, 207, 200],
| "hi_sigma": [1586, 1615, 1642, 1666, 1706, 1737, 1758, 1770, 1772, 1765, 1749, 1724, 1690, 1647, 1596, 1542]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
| "lumapoint2": [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
| "lo_sigma": [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
| "hi_sigma": [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0.09
| }, {
| "iso": 100,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0.09
| }, {
| "iso": 200,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.2,
| "hi_filter_strength": 1.2,
| "soft_threshold_ratio": 0.09
| }, {
| "iso": 400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.4,
| "hi_filter_strength": 1.4,
| "soft_threshold_ratio": 0.08
| }, {
| "iso": 800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0.07
| }, {
| "iso": 1600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 3200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 6400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 12800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 25600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 51200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 102400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 204800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 100,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 0.8,
| "soft_threshold_ratio": 0
| }, {
| "iso": 200,
| "thumbds": 8,
| "lo_enable": 0,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1,
| "hi_filter_strength": 1,
| "soft_threshold_ratio": 0
| }, {
| "iso": 800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.3,
| "hi_filter_strength": 1.3,
| "soft_threshold_ratio": 0
| }, {
| "iso": 1600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 3200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 1.5,
| "hi_filter_strength": 1.5,
| "soft_threshold_ratio": 0
| }, {
| "iso": 6400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 1,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 12800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 25600,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 51200,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 102400,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }, {
| "iso": 204800,
| "thumbds": 8,
| "lo_enable": 1,
| "hi_enable": 0,
| "lo_med_en": 1,
| "lo_gsbay_en": 1,
| "lo_gslum_en": 1,
| "hi_med_en": 1,
| "hi_gslum_en": 1,
| "hi_wgt_comp": 0.16,
| "clipwgt": 0.03215,
| "global_pk_en": 0,
| "global_pksq": 1024,
| "hidif_th": 32767,
| "lo_filter_strength": 2,
| "hi_filter_strength": 2,
| "soft_threshold_ratio": 0
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v3": {
| "Version": "V3",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [3.3013485e-013, -3.86666965113e-009, 1.51778758663568e-005, -0.0238264072686434, 31.5782051086426],
| "ynr_lci": 0.321,
| "ynr_hci": 0.254
| }, {
| "iso": 100,
| "sigma_curve": [3.380154e-013, -3.99158350817e-009, 1.58157254190883e-005, -0.0252213906496763, 32.2372436523438],
| "ynr_lci": 0.309,
| "ynr_hci": 0.252
| }, {
| "iso": 200,
| "sigma_curve": [-2.8199104e-013, 1.24755350495e-009, 1.55672944401886e-006, -0.0125336684286594, 35.7661247253418],
| "ynr_lci": 0.269,
| "ynr_hci": 0.232
| }, {
| "iso": 400,
| "sigma_curve": [-2.78561e-013, 7.2292644093e-010, 5.36130028194748e-006, -0.0220157038420439, 51.6262817382813],
| "ynr_lci": 0.269,
| "ynr_hci": 0.222
| }, {
| "iso": 800,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 1600,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 3200,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 6400,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 12800,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 25600,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 51200,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 102400,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }, {
| "iso": 204800,
| "sigma_curve": [-7.0266687e-013, 3.93920496222e-009, -1.39853307246085e-006, -0.021515803411603, 69.560661315918],
| "ynr_lci": 0.27,
| "ynr_hci": 0.214
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 100,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 200,
| "sigma_curve": [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
| "ynr_lci": 0.255305,
| "ynr_hci": 0.225106
| }, {
| "iso": 400,
| "sigma_curve": [-1.65677e-012, 1.3799e-008, -3.89045e-005, 0.0398789, 31.7414],
| "ynr_lci": 0.261701,
| "ynr_hci": 0.217753
| }, {
| "iso": 800,
| "sigma_curve": [-2.7329e-012, 2.22519e-008, -6.04135e-005, 0.0580665, 46.058],
| "ynr_lci": 0.263882,
| "ynr_hci": 0.21407
| }, {
| "iso": 1600,
| "sigma_curve": [-3.68924e-012, 2.8985e-008, -7.35895e-005, 0.0593183, 78.7866],
| "ynr_lci": 0.253759,
| "ynr_hci": 0.207854
| }, {
| "iso": 3200,
| "sigma_curve": [-6.79955e-012, 5.35954e-008, -0.000136877, 0.113719, 106.702],
| "ynr_lci": 0.261677,
| "ynr_hci": 0.206287
| }, {
| "iso": 6400,
| "sigma_curve": [-1.04235e-011, 8.30699e-008, -0.000214992, 0.174099, 165.13],
| "ynr_lci": 0.238196,
| "ynr_hci": 0.189897
| }, {
| "iso": 12800,
| "sigma_curve": [-1.56028e-011, 1.28796e-007, -0.000360655, 0.360025, 166.39],
| "ynr_lci": 0.248733,
| "ynr_hci": 0.18978
| }, {
| "iso": 25600,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 51200,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 102400,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }, {
| "iso": 204800,
| "sigma_curve": [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
| "ynr_lci": 0.257712,
| "ynr_hci": 0.186272
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.6,
| "low_bf2": 0.7,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.2,
| "low_bf2": 1.2,
| "low_thred_adj": 0.7,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 2.3,
| "low_bf2": 2.3,
| "low_thred_adj": 0.9,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.75,
| "low_filt2_strength": 0.8,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 2.5,
| "low_bf2": 2.5,
| "low_thred_adj": 1.3,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.2,
| "low_center_weight": 0.25,
| "low_dist_adj": 8,
| "low_weight": 0.55,
| "low_filt1_strength": 0.82,
| "low_filt2_strength": 0.7,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 2.6,
| "low_bf2": 2.7,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.25,
| "low_dist_adj": 8,
| "low_weight": 0.58,
| "low_filt1_strength": 0.75,
| "low_filt2_strength": 0.8,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.65,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.65,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.3,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.75,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.5,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.5,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.7,
| "low_bf2": 0.7,
| "low_thred_adj": 0.7,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1,
| "low_bf2": 1,
| "low_thred_adj": 1,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.3,
| "high_weight": 0.6,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.45,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 1.5,
| "low_bf2": 1.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.2,
| "low_dist_adj": 8,
| "low_weight": 0.78,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.6,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "ynr_global_gain_alpha": 0,
| "ynr_global_gain": 1,
| "ynr_adjust_thresh": 1,
| "ynr_adjust_scale": 1,
| "lumaPara": {
| "lo_lumaPoint": [0, 32, 64, 128, 192, 256],
| "lo_ratio": [1, 1, 1, 1, 1, 1],
| "hi_lumaPoint": [0, 32, 64, 128, 192, 256],
| "hi_ratio": [1, 1, 1, 1, 1, 1]
| },
| "low_bf1": 0.5,
| "low_bf2": 0.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_lbf_weight_thresh": 0.25,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt1_strength": 0.7,
| "low_filt2_strength": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight1": 0.28,
| "base_filter_weight2": 0.46,
| "base_filter_weight3": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v2": {
| "Version": "V2",
| "TuningPara": {
| "enable": 1,
| "Kernel_Coeff": {
| "kernel_5x5": [1, 0.8825, 0.7788, 0.6065, 0.3679]
| },
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 15,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 15,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 15,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 20,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 25,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 25,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.8
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.6
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 20,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "global_gain": 1,
| "global_gain_alpha": 0,
| "local_gain_scale": 1,
| "gain_adj_strength_ratio": [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 24,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.5,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 24,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 0.5
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "sharp_v4": {
| "Version": "V4",
| "TuningPara": {
| "enable": 1,
| "kernel_sigma_enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 9,
| "bf_gain": 0.3,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [80, 96, 128, 256, 512, 640, 256, 96],
| "local_sharp_strength": [256, 280, 512, 1023, 1023, 1023, 512, 350]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 8,
| "bf_gain": 0.35,
| "bf_ratio": 0.4,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 16, 16],
| "hf_clip": [80, 96, 128, 256, 512, 640, 256, 96],
| "local_sharp_strength": [220, 280, 350, 512, 700, 800, 512, 350]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 7,
| "bf_gain": 0.4,
| "bf_ratio": 0.45,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [80, 96, 128, 256, 512, 640, 256, 96],
| "local_sharp_strength": [220, 280, 350, 512, 700, 800, 512, 350]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.6,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 6.5,
| "bf_gain": 0.5,
| "bf_ratio": 0.55,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 56, 48, 32, 32],
| "hf_clip": [80, 96, 128, 256, 512, 640, 256, 96],
| "local_sharp_strength": [220, 280, 350, 512, 700, 800, 512, 350]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.7,
| "pbf_add": 0,
| "gaus_ratio": 0.2,
| "sharp_ratio": 5,
| "bf_gain": 0.55,
| "bf_ratio": 0.7,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [80, 96, 128, 256, 512, 640, 256, 96],
| "local_sharp_strength": [220, 280, 350, 512, 700, 800, 512, 350]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.7,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.4,
| "sharp_ratio": 4,
| "bf_gain": 0.7,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 36, 32],
| "hf_clip": [48, 80, 120, 140, 160, 140, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 3200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 0.8,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 140, 120, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 160, 120, 100, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 86, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.6,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 48, 64, 80, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 1,
| "gaus_ratio": 0.7,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 56, 48, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.3,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 16, 16],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.5,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.5,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [80, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.6,
| "pbf_add": 0,
| "gaus_ratio": 0,
| "sharp_ratio": 5,
| "bf_gain": 0.4,
| "bf_ratio": 0.6,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 56, 48, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 80],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 800,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.7,
| "pbf_add": 0,
| "gaus_ratio": 0.2,
| "sharp_ratio": 5,
| "bf_gain": 0.5,
| "bf_ratio": 0.7,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [80, 96, 128, 160, 192, 160, 100, 0],
| "local_sharp_strength": [320, 320, 320, 320, 320, 320, 320, 320]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 1600,
| "pbf_gain": 0.7,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.4,
| "sharp_ratio": 4,
| "bf_gain": 0.7,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 36, 32],
| "hf_clip": [48, 80, 120, 140, 160, 140, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 3200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 0.8,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 140, 120, 100, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1,
| "pbf_ratio": 0.8,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.8,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 100, 120, 160, 120, 100, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.5,
| "sharp_ratio": 4,
| "bf_gain": 1,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 86, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 0,
| "gaus_ratio": 0.6,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 0,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 48, 64, 80, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.9,
| "pbf_add": 1,
| "gaus_ratio": 0.7,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 0.9,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 56, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 56, 48, 48, 40, 32, 32],
| "hf_clip": [32, 64, 80, 100, 120, 100, 80, 0],
| "local_sharp_strength": [200, 200, 200, 200, 200, 200, 200, 200]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| },
| "kernel_sigma": {
| "prefilter_sigma": 1,
| "hfBilateralFilter_sigma": 1,
| "GaussianFilter_sigma": 1,
| "GaussianFilter_radius": 2
| }
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cac_calib": {
| "SettingPara": {
| "enable": 0,
| "psf_path": "/etc/iqfiles/cac/cac_map_64x48x34_br0.bin",
| "psf_shift_bits": 2,
| "center_en": 0,
| "center_x": 0,
| "center_y": 0
| },
| "TuningPara": {
| "SettingByIso": [{
| "iso": 50,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 422400,
| "bypass": 0,
| "strength_table": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "SettingByIso_len": 14
| }
| },
| "af_v30": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_CONTINUOUS_PICTURE",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "win_v_size": 0,
| "video_win_h_offs": 0,
| "video_win_v_offs": 0,
| "video_win_h_size": 0,
| "video_win_v_size": 0,
| "fixed_mode": {
| "code": 8
| },
| "macro_mode": {
| "code": 32
| },
| "infinity_mode": {
| "code": 32
| },
| "contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "FullRangeTbl_len": 9,
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "AdaptRangeTbl_len": 9,
| "TrigThers": [0.075],
| "TrigThers_len": 1,
| "TrigThersFv": [0],
| "TrigThersFv_len": 1,
| "LumaTrigThers": 1,
| "ExpTrigThers": 1,
| "StableThers": 0.02,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 200,
| "OutFocusPos": 64,
| "WeightEnable": 0,
| "Weight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "SearchPauseLumaEnable": 0,
| "SearchPauseLumaThers": 0,
| "SearchLumaStableFrames": 0,
| "SearchLumaStableThers": 0,
| "Stage1QuickFoundThers": 0.04,
| "Stage2QuickFoundThers": 0.2,
| "FlatValue": 0,
| "PointLightLumaTh": 3000,
| "PointLightCntTh": 300,
| "ZoomCfg": {
| "QuickFoundThersZoomIdx": [0],
| "QuickFoundThersZoomIdx_len": 1,
| "QuickFoundThers": [0],
| "QuickFoundThers_len": 1,
| "SearchStepZoomIdx": [0],
| "SearchStepZoomIdx_len": 1,
| "SearchStep": [0],
| "SearchStep_len": 1,
| "StopStepZoomIdx": [0],
| "StopStepZoomIdx_len": 1,
| "StopStep": [0],
| "StopStep_len": 1,
| "SkipHighPassZoomIdx": 0,
| "SkipHighPassGain": 0,
| "SwitchDirZoomIdx": 0,
| "SpotlightHighlightRatio": 0.014,
| "SpotlightLumaRatio": [0.3, 0.5, 0.8],
| "SpotlightBlkCnt": [0.2, 0.5, 0.25]
| }
| },
| "video_contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "FullRangeTbl_len": 9,
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64],
| "AdaptRangeTbl_len": 9,
| "TrigThers": [0.15],
| "TrigThers_len": 1,
| "TrigThersFv": [0],
| "TrigThersFv_len": 1,
| "LumaTrigThers": 1,
| "ExpTrigThers": 1,
| "StableThers": 0.02,
| "StableFrames": 20,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 200,
| "OutFocusPos": 64,
| "WeightEnable": 0,
| "Weight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "SearchPauseLumaEnable": 0,
| "SearchPauseLumaThers": 0,
| "SearchLumaStableFrames": 0,
| "SearchLumaStableThers": 0,
| "Stage1QuickFoundThers": 0.04,
| "Stage2QuickFoundThers": 0.2,
| "FlatValue": 0,
| "PointLightLumaTh": 3000,
| "PointLightCntTh": 300,
| "ZoomCfg": {
| "QuickFoundThersZoomIdx": [0],
| "QuickFoundThersZoomIdx_len": 1,
| "QuickFoundThers": [0],
| "QuickFoundThers_len": 1,
| "SearchStepZoomIdx": [0],
| "SearchStepZoomIdx_len": 1,
| "SearchStep": [0],
| "SearchStep_len": 1,
| "StopStepZoomIdx": [0],
| "StopStepZoomIdx_len": 1,
| "StopStep": [0],
| "StopStep_len": 1,
| "SkipHighPassZoomIdx": 0,
| "SkipHighPassGain": 0,
| "SwitchDirZoomIdx": 0,
| "SpotlightHighlightRatio": 0.014,
| "SpotlightLumaRatio": [0.3, 0.5, 0.8],
| "SpotlightBlkCnt": [0.2, 0.5, 0.25]
| }
| },
| "laser_af": {
| "enable": 0,
| "vcmDot": [0, 16, 32, 40, 48, 56, 64],
| "distanceDot": [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
| },
| "pdaf": {
| "enable": 0,
| "pdVsCdDebug": 0,
| "pdDumpDebug": 0,
| "pdDataBit": 10,
| "pdBlkLevel": 64,
| "pdSearchRadius": 3,
| "pdMirrorInCalib": 1,
| "pdVsImgoutMirror": 0,
| "pdWidth": 508,
| "pdHeight": 760,
| "pdConfdMwinFactor": 0,
| "pdStepRatio": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
| "pdStepDefocus": [0, 0, 0, 0, 0, 0, 0],
| "pdIsoPara": [{
| "iso": 50,
| "pdNoiseFactor": 0.15,
| "pdConfdRatio1": 1,
| "pdConfdRatio2": 1,
| "pdNoiseBias": 0,
| "pdConfdThresh": 0.4,
| "defocusPdThresh": 18,
| "stablePdRatio": 0.125,
| "stablePdOffset": 8,
| "stableCntRatio": 1.5,
| "noconfCntThresh": 4,
| "fineSearchTbl": [{
| "confidence": 512,
| "range": 4,
| "stepPos": 1
| }, {
| "confidence": 256,
| "range": 8,
| "stepPos": 2
| }],
| "fineSearchTbl_len": 2
| }],
| "pdIsoPara_len": 1
| },
| "vcmcfg": {
| "start_current": -1,
| "rated_current": -1,
| "step_mode": -1,
| "extra_delay": 0,
| "posture_diff": 0.1
| },
| "zoomfocus_tbl": {
| "widemod_deviate": 10,
| "telemod_deviate": 10,
| "focus_backval": 0,
| "zoom_move_dot": [0],
| "zoom_move_dot_len": 1,
| "zoom_move_step": [16],
| "zoom_move_step_len": 1,
| "focal_length": [0],
| "focal_length_len": 1,
| "zoomcode": [0],
| "zoomcode_len": 1,
| "focuscode": [{
| "pos": 0.5,
| "code": [0],
| "code_len": 1
| }, {
| "pos": -1,
| "code": [0],
| "code_len": 1
| }],
| "focuscode_len": 2,
| "ZoomSearchTbl": [0],
| "ZoomSearchTbl_len": 1,
| "ZoomSearchRefCurveIdx": 0,
| "FocusSearchMargin": 50,
| "FocusSearchPlusRange": [0],
| "FocusSearchPlusRange_len": 1,
| "FocusStage1Step": 1,
| "QuickFndRate": 0,
| "QuickFndMinFv": 0,
| "searchZoomRange": 100,
| "searchFocusRange": 100,
| "searchEmax": 100,
| "searchEavg": 100,
| "IsZoomFocusRec": 0,
| "ZoomInfoDir": "/userdata"
| },
| "zoom_meas": [{
| "zoom_idx": 0,
| "measiso": [{
| "iso": 50,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 100,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 200,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 400,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 800,
| "idx": 0,
| "spotlt_scene_idx": 0
| }, {
| "iso": 1600,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 3200,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 6400,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 12800,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 25600,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 51200,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 102400,
| "idx": 1,
| "spotlt_scene_idx": 0
| }, {
| "iso": 204800,
| "idx": 1,
| "spotlt_scene_idx": 0
| }]
| }],
| "zoom_meas_len": 1,
| "meascfg_tbl": [{
| "tbl_idx": 0,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "v1fv_reliable": 0,
| "v2fv_reliable": 0,
| "v1_fir_sel": 1,
| "v1_band": [0, 0],
| "v1_iir_coe": [0, 503, 0, 0, 8, 0, 0, 9, 0],
| "v1_fir_coe": [-1997, 0, 1997],
| "v2_band": [0, 0],
| "v2_iir_coe": [476, 33, 34],
| "v2_fir_coe": [-985, 0, 985],
| "h1_band": [0, 0],
| "h1_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h1_iir2_coe": [512, 870, -399, 37, 0, -37],
| "h2_band": [0, 0],
| "h2_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h2_iir2_coe": [512, 870, -399, 37, 0, -37],
| "ldg_en": 0,
| "ve_ldg_lumth_l": 64,
| "ve_ldg_gain_l": 28,
| "ve_ldg_gslp_l": 1286,
| "ve_ldg_lumth_h": 185,
| "ve_ldg_gain_h": 8,
| "ve_ldg_gslp_h": 1400,
| "ho_ldg_lumth_l": 64,
| "ho_ldg_gain_l": 28,
| "ho_ldg_gslp_l": 1286,
| "ho_ldg_lumth_h": 185,
| "ho_ldg_gain_h": 8,
| "ho_ldg_gslp_h": 1400,
| "v_fv_thresh": 4,
| "h_fv_thresh": 4,
| "highlit_thresh": 912,
| "v_fv_ratio": 0.5
| }, {
| "tbl_idx": 1,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "v1fv_reliable": 0,
| "v2fv_reliable": 0,
| "v1_fir_sel": 1,
| "v1_band": [0, 0],
| "v1_iir_coe": [0, 503, 0, 0, 8, 0, 0, 9, 0],
| "v1_fir_coe": [-1997, 0, 1997],
| "v2_band": [0, 0],
| "v2_iir_coe": [476, 33, 34],
| "v2_fir_coe": [-985, 0, 985],
| "h1_band": [0, 0],
| "h1_iir1_coe": [512, 811, -375, 266, 0, -266],
| "h1_iir2_coe": [250, 945, -448, 41, 0, -41],
| "h2_band": [0, 0],
| "h2_iir1_coe": [512, 557, -276, 460, 0, -460],
| "h2_iir2_coe": [512, 870, -399, 37, 0, -37],
| "ldg_en": 0,
| "ve_ldg_lumth_l": 64,
| "ve_ldg_gain_l": 28,
| "ve_ldg_gslp_l": 1286,
| "ve_ldg_lumth_h": 185,
| "ve_ldg_gain_h": 8,
| "ve_ldg_gslp_h": 1400,
| "ho_ldg_lumth_l": 64,
| "ho_ldg_gain_l": 28,
| "ho_ldg_gslp_l": 1286,
| "ho_ldg_lumth_h": 185,
| "ho_ldg_gain_h": 8,
| "ho_ldg_gslp_h": 1400,
| "v_fv_thresh": 4,
| "h_fv_thresh": 4,
| "highlit_thresh": 912,
| "v_fv_ratio": 0.5
| }],
| "meascfg_tbl_len": 2
| }
| },
| "gain_v2": {
| "Version": "V2",
| "TuningPara": {
| "hdrgain_ctrl_enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hdr_gain_scale_s": 1,
| "hdr_gain_scale_m": 1
| }],
| "Tuning_ISO_len": 1
| }],
| "Setting_len": 1
| }
| }
| }
| }],
| "sub_scene_len": 1
| }],
| "main_scene_len": 1,
| "uapi": [],
| "uapi_len": 0,
| "sys_static_cfg": {
| "algoSwitch": {
| "enable": 0,
| "enable_algos": ["ENABLE_AE"],
| "enable_algos_len": 1
| }
| }
| }
|
|