1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
| {
| "sensor_calib": {
| "resolution": {
| "width": 2592,
| "height": 1944
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 16, 64, 0, 1, 64, 1024],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 16
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 0,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 3.5,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 2
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 1.6,
| "EFL": 5.2,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp21": {
| "ae_calib": {
| "CommCtrl": {
| "Enable": 1,
| "AecRunInterval": 0,
| "AecOpType": "RK_AIQ_OP_MODE_AUTO",
| "HistStatsMode": "CAM_HISTV2_MODE_Y",
| "RawStatsMode": "CAM_RAWSTATSV2_MODE_Y",
| "YRangeMode": "CAM_YRANGEV2_MODE_FULL",
| "AecGridWeight": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.03,
| "GainValue": 1,
| "IspDGainValue": 1
| },
| "HdrAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1]
| }
| },
| "AecSpeed": {
| "DampOver": 0.35,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.35,
| "DampBright2Dark": 0.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 4,
| "WhiteDelay": 4
| },
| "AecFrameRateMode": {
| "isFpsFix": 0,
| "FpsValue": 15
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.02859, 0.5972]
| },
| "AecWinScale": {
| "InRawWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| },
| "TmoRawWinScale": {
| "h_offs": 0.1,
| "v_offs": 0.1,
| "h_size": 0.9,
| "v_size": 0.9
| },
| "YuvWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| }
| }
| },
| "LinearAeCtrl": {
| "RawStatsEn": 1,
| "ToleranceIn": 10,
| "ToleranceOut": 10,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.03,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.03, 0.03, 0.06, 0.06, 0.1],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 4, 4, 16, 16],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 1],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.048, 0.144, 0.32, 0.64, 1.28],
| "ExpLevel_len": 6,
| "DySetpoint": [65, 65, 65, 65, 65, 65],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.1, 0.2, 0.4, 0.64, 0.96, 1.28],
| "ExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
| "LowLightPdfTh_len": 6,
| "TargetLLLuma": [35, 35, 30, 25, 20, 15],
| "TargetLLLuma_len": 6
| }
| },
| "OverExpCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MaxWeight": 8,
| "HighLightTh": 150,
| "LowLightTh": 30,
| "OverExpSetPoint": {
| "OEpdf": [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
| "OEpdf_len": 6,
| "LowLightWeight": [1, 1, 1, 1, 1, 1],
| "LowLightWeight_len": 6,
| "HighLightWeight": [4, 3, 3, 3, 2, 2],
| "HighLightWeight_len": 6
| }
| }
| },
| "HdrAeCtrl": {
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "LumaDistTh": 10,
| "InitExp": {
| "InitTimeValue": [0.0005, 0.003, 0.003],
| "InitGainValue": [1, 1, 1],
| "InitIspDGainValue": [1, 1, 1],
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "Frm0TimeDot": [0, 0.003, 0.003, 0.003, 0.003, 0.003],
| "Frm0TimeDot_len": 6,
| "Frm0GainDot": [1, 1, 4, 8, 12, 16],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 4, 8, 12, 16],
| "Frm1GainDot_len": 6,
| "Frm1IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm1IspDGainDot_len": 6,
| "Frm2TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm2TimeDot_len": 6,
| "Frm2GainDot": [1, 1, 4, 8, 12, 16],
| "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.0048, 0.0144, 0.024, 0.048, 0.096],
| "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.024, 0.048, 0.096, 0.24, 0.336, 0.48],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0024, 0.0072, 0.012, 0.0192, 0.0288],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [0.886705, 1, 1, 2.43053],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_4X4",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [3],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [3],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [3],
| "minB_len": 1,
| "maxY": [230],
| "maxY_len": 1,
| "minY": [5],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333323, 0.333672, 0.333005],
| "rotationMat": [-0.60598, 0.79548, -0.0715796, 0.79548, 0.60598, 0.309187, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0449219, 0.138672, 0.015625, 27.8125, -0.0898438, 0.015625, 0.0625, 133.5, 0.0371094, -0.0644531, 0.0585938, 115.062, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-566, -456, 35, -49]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [243, 248, 268, 250]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [239, 243, 273, 243]
| }, {
| "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": 1,
| "wpDiffWeiEnableTh": {
| "wpDiffWeiNoTh": 0.004,
| "wpDiffWeiLvValueTh": 64
| },
| "wpDiffwei_y": [0, 16, 32, 64, 96, 128, 192, 224, 240],
| "perfectBin": [0, 0, 0, 1, 1, 1, 1, 0],
| "wpDiffWeightLvSet": [{
| "LvValue": 256,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 8192,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0.1, 0.4, 0.8, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 1,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.886705, 1, 1, 2.43053],
| "uvRegion": {
| "u": [123, 63.5, 62.5, 123],
| "v": [130.5, 161.5, 121, 129.5]
| },
| "xyRegion": {
| "normal": [-1.31652, -0.71179, 0.0336992, -0.0297724],
| "big": [-1.31521, -0.712078, 0.042838, -0.0342704]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 139.75, 115, 182.25, 84, 115.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.37639, 1, 1, 2.05971],
| "uvRegion": {
| "u": [63.5, 66, 124.5, 124],
| "v": [104, 79, 125.5, 128]
| },
| "xyRegion": {
| "normal": [-0.615658, -0.482654, -0.046158, -0.0998483],
| "big": [-0.614739, -0.482654, -0.046158, -0.0995389]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 136, 116.375, 189.5, 114.812, 106.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.55977, 1, 1, 1.63099],
| "uvRegion": {
| "u": [65, 76.5, 125.5, 124.5],
| "v": [84.5, 20, 125, 127]
| },
| "xyRegion": {
| "normal": [-0.482942, -0.143848, 0.00799643, -0.0902454],
| "big": [-0.482654, -0.143848, 0.0359839, -0.107274]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 133.875, 115.812, 190.875, 129.25, 110.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.55543, 1, 1, 1.38797],
| "uvRegion": {
| "u": [71, 84.5, 126.5, 125],
| "v": [56, -23, 124.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.143189, 0.0885803, 0.0605444, -0.0588309],
| "big": [-0.144506, 0.0901852, 0.0783579, -0.0811066]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 133.438, 115.125, 191, 135, 115.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.65758, 1, 1, 1.28353],
| "uvRegion": {
| "u": [127, 126.5, 82, 92],
| "v": [124, 124.5, -6, -67]
| },
| "xyRegion": {
| "normal": [0.0895268, 0.173148, 0.0503704, -0.0752878],
| "big": [0.0901852, 0.173148, 0.0726461, -0.0901383]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 132.938, 115.062, 190.812, 141.312, 117.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.734778, 1, 1, 2.81554],
| "uvRegion": {
| "u": [123, 66.5, 63, 123],
| "v": [132, 177, 157, 130.5]
| },
| "xyRegion": {
| "normal": [-1.57331, -1.31586, 0.0125658, -0.0731102],
| "big": [-1.57796, -1.31652, 0.0245605, -0.0828916]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 141.125, 114.5, 176.875, 71.125, 119.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.2724, 1, 1, 2.04813],
| "uvRegion": {
| "u": [123, 62.5, 64.5, 124],
| "v": [129.5, 120.5, 96.5, 127.5]
| },
| "xyRegion": {
| "normal": [-0.713107, -0.482654, 0.0086747, -0.0455868],
| "big": [-0.710473, -0.483313, 0.0143864, -0.046158]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 64, 80, 96, 112, 144],
| "thcure_th": [1, 2, 2.5, 3, 3.5, 4],
| "lineVector": [10, 136.188, 115.938, 189, 110.5, 108.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.37639, 1, 1, 2.05971],
| "defaultDayGainHigh": [1.55977, 1, 1, 1.63099],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0, 0, 0, 0],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [0, 0, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.1,
| "dFMin": 0.4,
| "dFMax": 0.7,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500],
| "cct_len": 5,
| "cri_bound_up": [0.091, 0.091, 0.18, 0.12, 0.12],
| "cri_bound_up_len": 5,
| "cri_bound_low": [0.07, 0.07, 0.16, 0.16, 0.16],
| "cri_bound_low_len": 5
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [50],
| "low_len": 1,
| "high": [100],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.5567, 1, 1, 1.68053],
| "lumaValueMatrix": [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 4.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.001,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [100],
| "forBigType_len": 1,
| "forExtraType": [100],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 21.2149,
| "meanH": 31.9282
| }, {
| "index": 13,
| "meanC": 22.1756,
| "meanH": -73.6078
| }, {
| "index": 5,
| "meanC": 10.3568,
| "meanH": -63.3565
| }, {
| "index": 10,
| "meanC": 10.6581,
| "meanH": -39.8885
| }, {
| "index": 14,
| "meanC": 16.6245,
| "meanH": 145.565
| }, {
| "index": 16,
| "meanC": 26.2525,
| "meanH": 92.0938
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 0.8388,
| "BGain": 2.5211
| }, {
| "name": "TL84",
| "RGain": 1.2061,
| "BGain": 2.1603
| }, {
| "name": "D50",
| "RGain": 1.624,
| "BGain": 1.6285
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [1.5567, 1, 1, 1.68053],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_segnum": "GAMMATYPE_LOG",
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
| }
| },
| "ablc_calib": {
| "BlcTuningPara": {
| "enable": 1,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [256, 256.188, 255.938, 256.312, 255.5, 256, 256, 256, 256, 256, 256, 256, 256],
| "R_Channel_len": 13,
| "Gr_Channel": [256, 256.25, 256.312, 256.375, 256.375, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gr_Channel_len": 13,
| "Gb_Channel": [256, 256.25, 256.312, 256.125, 256.312, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gb_Channel_len": 13,
| "B_Channel": [256, 256.375, 256.375, 256.812, 256.625, 256, 256, 256, 256, 256, 256, 256, 256],
| "B_Channel_len": 13
| }
| }
| },
| "adegamma_calib": {
| "DegammaTuningPara": {
| "degamma_en": 0,
| "X_axis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_R": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_G": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_B": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "agic_calib_v21": {
| "GicTuningPara": {
| "enable": 0,
| "gr_ration": 0,
| "GicData": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "ISO_len": 9,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 9,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 9,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 9,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 9,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 9,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 9,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 9,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 9,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 9,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 9,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 9,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 9,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 9,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 9,
| "noiseCurve_0": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_0_len": 9,
| "noiseCurve_1": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_1_len": 9,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 9,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 9,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 9,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 9
| }
| }
| },
| "adehaze_calib_v21": {
| "DehazeTuningPara": {
| "Enable": 1,
| "cfg_alpha": 0,
| "ByPassThr": 0,
| "dehaze_setting": {
| "en": 0,
| "air_lc_en": 1,
| "stab_fnum": 8,
| "sigma": 6,
| "wt_sigma": 8,
| "air_sigma": 120,
| "tmax_sigma": 0.01,
| "pre_wet": 0.01,
| "DehazeData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "dc_min_th": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "dc_min_th_len": 9,
| "dc_max_th": [192, 192, 192, 192, 192, 192, 192, 192, 192],
| "dc_max_th_len": 9,
| "yhist_th": [249, 249, 249, 249, 249, 249, 249, 249, 249],
| "yhist_th_len": 9,
| "yblk_th": [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
| "yblk_th_len": 9,
| "dark_th": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "dark_th_len": 9,
| "bright_min": [180, 180, 180, 180, 180, 180, 180, 180, 180],
| "bright_min_len": 9,
| "bright_max": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "bright_max_len": 9,
| "wt_max": [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
| "wt_max_len": 9,
| "air_min": [200, 200, 200, 200, 200, 200, 200, 200, 200],
| "air_min_len": 9,
| "air_max": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "air_max_len": 9,
| "tmax_base": [125, 125, 125, 125, 125, 125, 125, 125, 125],
| "tmax_base_len": 9,
| "tmax_off": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
| "tmax_off_len": 9,
| "tmax_max": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "tmax_max_len": 9,
| "cfg_wt": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "cfg_wt_len": 9,
| "cfg_air": [210, 210, 210, 210, 210, 210, 210, 210, 210],
| "cfg_air_len": 9,
| "cfg_tmax": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "cfg_tmax_len": 9,
| "dc_weitcur": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "dc_weitcur_len": 9,
| "bf_weight": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
| "bf_weight_len": 9,
| "range_sigma": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "range_sigma_len": 9,
| "space_sigma_pre": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_pre_len": 9,
| "space_sigma_cur": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_cur_len": 9
| }
| },
| "enhance_setting": {
| "en": 1,
| "enhance_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
| "EnhanceData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "enhance_value": [1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.3, 1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1],
| "enhance_chroma_len": 9
| }
| },
| "hist_setting": {
| "en": 0,
| "hist_para_en": 1,
| "HistData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "hist_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_gratio_len": 9,
| "hist_th_off": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "hist_th_off_len": 9,
| "hist_k": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_k_len": 9,
| "hist_min": [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
| "hist_min_len": 9,
| "hist_scale": [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
| "hist_scale_len": 9,
| "cfg_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "cfg_gratio_len": 9
| }
| }
| }
| },
| "adpcc_calib": {
| "DpccTuningPara": {
| "Enable": 1,
| "Fast_Mode": {
| "Fast_mode_en": 0,
| "Single_enable": 0,
| "Double_enable": 0,
| "Triple_enable": 0,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Triple_level_len": 13
| }
| },
| "Expert_Mode": {
| "stage1_Enable": 1,
| "grayscale_mode": 0,
| "dpcc_out_sel": 1,
| "stage1_g_3x3": 0,
| "stage1_rb_3x3": 0,
| "stage1_inc_rb_center": 1,
| "stage1_inc_g_center": 1,
| "rk_out_sel": 1,
| "SetEnable": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "fix_set": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "set1": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "sw_dis_scale_max": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_pg_fac": [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "amerge_calib": {
| "MergeTuningPara": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "ByPassThr": 0,
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| }
| },
| "adrc_calib": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalTMOSetting": {
| "LocalTMOData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
| },
| "Scale_y": [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
| "ByPassThr": 0,
| "Edge_Weit": 0.0627451,
| "OutPutLongFrame": 0,
| "IIR_frame": 16,
| "Tolerance": 0,
| "damp": 0.9
| }
| },
| "cpsl": {
| "param": {
| "enable": 0,
| "mode": "RK_AIQ_OP_MODE_AUTO",
| "force_gray": 1,
| "light_src": "LED",
| "auto_adjust_sens": 50,
| "auto_on2off_th": 3000,
| "auto_off2on_th": 100,
| "auto_sw_interval": 0,
| "manual_on": 0,
| "manual_strength": 100
| }
| },
| "orb": {
| "param": {
| "orb_en": 0
| }
| },
| "debayer": {
| "param": {
| "debayer_en": 1,
| "debayer_filter1": [2, -6, 0, 6, -2],
| "debayer_filter2": [2, -4, 4, -4, 2],
| "debayer_gain_offset": 4,
| "debayer_offset": 1,
| "debayer_clip_en": 1,
| "debayer_filter_g_en": 1,
| "debayer_filter_c_en": 1,
| "debayer_thed0": 3,
| "debayer_thed1": 6,
| "debayer_dist_scale": 8,
| "debayer_cnr_strength": 5,
| "debayer_shift_num": 2,
| "array": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "sharp_strength": [4, 4, 4, 4, 4, 4, 4, 4, 4],
| "debayer_hf_offset": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| }
| },
| "cproc": {
| "param": {
| "enable": 1,
| "brightness": 128,
| "contrast": 128,
| "saturation": 128,
| "hue": 128
| }
| },
| "ie": {
| "param": {
| "enable": 0,
| "mode": 0
| }
| },
| "lsc_v2": {
| "common": {
| "enable": 1,
| "resolutionAll": [{
| "name": "2592x1944",
| "lsc_sect_size_x": [162, 162, 162, 162, 162, 162, 162, 162],
| "lsc_sect_size_y": [121, 122, 121, 122, 121, 122, 121, 122]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [0.8388, 2.5211],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.3376, 2.2421],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.624, 1.6285],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.4431, 1.4686],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.5401, 1.3559],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.6977, 2.909],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.2061, 2.1603],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [0, 0, 0, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "2592x1944_A_100",
| "resolution": "2592x1944",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4100, 3546, 3058, 2696, 2452, 2276, 2147, 2084, 2066, 2136, 2241, 2375, 2582, 2886, 3264, 3756, 4447, 3834, 3137, 2736, 2452, 2193, 2003, 1881, 1807, 1804, 1845, 1913, 2115, 2334, 2580, 2928, 3402, 3979, 3528, 2853, 2514, 2205, 1989, 1811, 1664, 1593, 1560, 1606, 1719, 1876, 2067, 2341, 2682, 3077, 3720, 3245, 2663, 2333, 2044, 1796, 1619, 1476, 1412, 1395, 1429, 1538, 1688, 1894, 2215, 2497, 2910, 3493, 2997, 2506, 2192, 1889, 1651, 1449, 1343, 1268, 1265, 1281, 1384, 1521, 1747, 2021, 2334, 2726, 3254, 2917, 2422, 2058, 1778, 1542, 1345, 1239, 1165, 1150, 1197, 1265, 1411, 1629, 1909, 2220, 2623, 3113, 2812, 2299, 1980, 1710, 1465, 1278, 1162, 1106, 1082, 1121, 1206, 1341, 1537, 1824, 2135, 2507, 3021, 2733, 2288, 1943, 1643, 1404, 1235, 1125, 1056, 1040, 1080, 1152, 1272, 1497, 1756, 2042, 2447, 2998, 2739, 2255, 1932, 1630, 1394, 1210, 1093, 1043, 1024, 1056, 1146, 1278, 1453, 1743, 2051, 2423, 2874, 2700, 2274, 1915, 1644, 1406, 1216, 1108, 1050, 1037, 1068, 1158, 1285, 1484, 1757, 2055, 2477, 2965, 2814, 2280, 1966, 1669, 1441, 1260, 1143, 1085, 1066, 1098, 1199, 1320, 1544, 1818, 2111, 2512, 3014, 2858, 2360, 2047, 1752, 1516, 1335, 1204, 1146, 1131, 1159, 1242, 1384, 1596, 1862, 2188, 2566, 3117, 3026, 2481, 2156, 1861, 1626, 1435, 1299, 1237, 1222, 1253, 1343, 1487, 1712, 1951, 2277, 2704, 3275, 3166, 2592, 2255, 1987, 1752, 1579, 1445, 1368, 1359, 1379, 1481, 1623, 1842, 2124, 2423, 2799, 3427, 3467, 2811, 2419, 2128, 1935, 1732, 1616, 1539, 1516, 1560, 1642, 1805, 2005, 2276, 2590, 2996, 3681, 3783, 3045, 2632, 2355, 2120, 1965, 1817, 1760, 1711, 1754, 1866, 2035, 2246, 2443, 2762, 3238, 3871, 4209, 3500, 2938, 2601, 2355, 2220, 2081, 1989, 1973, 2014, 2135, 2273, 2484, 2775, 3126, 3717, 4330]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3420, 2824, 2481, 2237, 2076, 1940, 1858, 1822, 1789, 1830, 1876, 2002, 2119, 2280, 2557, 2958, 3440, 3065, 2554, 2246, 2030, 1888, 1765, 1676, 1640, 1620, 1644, 1719, 1801, 1918, 2118, 2305, 2674, 3128, 2794, 2330, 2095, 1882, 1750, 1633, 1523, 1479, 1454, 1474, 1541, 1649, 1759, 1958, 2173, 2440, 2931, 2552, 2161, 1950, 1757, 1606, 1472, 1393, 1321, 1319, 1347, 1411, 1503, 1628, 1823, 1994, 2256, 2689, 2436, 2087, 1857, 1656, 1470, 1360, 1270, 1229, 1210, 1244, 1304, 1397, 1528, 1692, 1908, 2123, 2485, 2374, 1971, 1763, 1570, 1404, 1274, 1199, 1135, 1116, 1148, 1210, 1305, 1470, 1613, 1828, 2034, 2392, 2253, 1924, 1705, 1508, 1342, 1230, 1134, 1088, 1082, 1096, 1149, 1246, 1381, 1558, 1753, 1979, 2319, 2199, 1870, 1666, 1471, 1308, 1173, 1094, 1054, 1031, 1067, 1119, 1205, 1331, 1510, 1726, 1942, 2309, 2237, 1876, 1647, 1455, 1282, 1162, 1095, 1038, 1024, 1049, 1093, 1189, 1328, 1496, 1694, 1943, 2226, 2172, 1879, 1634, 1461, 1322, 1182, 1092, 1047, 1038, 1050, 1112, 1195, 1331, 1496, 1716, 1948, 2287, 2255, 1895, 1666, 1499, 1333, 1209, 1126, 1079, 1067, 1080, 1146, 1218, 1371, 1529, 1753, 1963, 2289, 2306, 1954, 1717, 1555, 1390, 1267, 1166, 1135, 1116, 1141, 1178, 1271, 1402, 1608, 1773, 2027, 2368, 2399, 2016, 1791, 1626, 1460, 1331, 1253, 1194, 1183, 1191, 1264, 1354, 1502, 1663, 1868, 2087, 2446, 2568, 2096, 1907, 1704, 1570, 1428, 1360, 1273, 1264, 1303, 1359, 1467, 1594, 1747, 1910, 2199, 2574, 2718, 2302, 1990, 1805, 1677, 1544, 1473, 1406, 1404, 1428, 1476, 1587, 1713, 1862, 2053, 2309, 2761, 2978, 2465, 2158, 1951, 1790, 1685, 1620, 1545, 1552, 1550, 1612, 1725, 1837, 2000, 2197, 2525, 3067, 3314, 2745, 2419, 2138, 1978, 1863, 1780, 1736, 1732, 1749, 1815, 1893, 2039, 2199, 2440, 2850, 3312]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3395, 2781, 2434, 2170, 2016, 1879, 1786, 1733, 1719, 1752, 1824, 1940, 2068, 2247, 2531, 2902, 3480, 3086, 2580, 2221, 2040, 1842, 1715, 1625, 1580, 1572, 1580, 1681, 1759, 1885, 2077, 2308, 2665, 3135, 2846, 2370, 2059, 1849, 1700, 1571, 1485, 1405, 1411, 1430, 1508, 1615, 1768, 1938, 2142, 2485, 2961, 2634, 2214, 1945, 1764, 1599, 1439, 1390, 1300, 1273, 1318, 1391, 1499, 1657, 1824, 2018, 2306, 2733, 2485, 2102, 1862, 1673, 1487, 1345, 1252, 1205, 1188, 1216, 1286, 1399, 1531, 1746, 1944, 2229, 2607, 2352, 2022, 1796, 1569, 1414, 1263, 1175, 1123, 1121, 1149, 1205, 1328, 1459, 1663, 1875, 2148, 2446, 2333, 1964, 1739, 1538, 1345, 1214, 1126, 1068, 1063, 1089, 1152, 1247, 1392, 1603, 1835, 2035, 2402, 2298, 1936, 1706, 1492, 1321, 1184, 1097, 1046, 1031, 1065, 1115, 1222, 1367, 1553, 1790, 2006, 2402, 2258, 1926, 1711, 1464, 1321, 1171, 1094, 1034, 1024, 1053, 1127, 1208, 1343, 1566, 1763, 2023, 2329, 2236, 1941, 1707, 1474, 1324, 1176, 1084, 1047, 1034, 1059, 1115, 1223, 1375, 1572, 1773, 2042, 2343, 2309, 1940, 1722, 1539, 1345, 1211, 1108, 1059, 1060, 1085, 1147, 1253, 1408, 1590, 1821, 2071, 2405, 2347, 1989, 1772, 1580, 1406, 1256, 1166, 1125, 1105, 1135, 1195, 1298, 1467, 1638, 1853, 2117, 2482, 2473, 2079, 1861, 1633, 1468, 1344, 1215, 1190, 1178, 1186, 1280, 1375, 1520, 1712, 1913, 2167, 2557, 2645, 2166, 1907, 1726, 1562, 1436, 1316, 1272, 1256, 1300, 1371, 1468, 1637, 1788, 1990, 2269, 2745, 2798, 2328, 2037, 1828, 1659, 1535, 1454, 1389, 1370, 1422, 1484, 1569, 1720, 1895, 2105, 2403, 2888, 3097, 2517, 2160, 1962, 1778, 1644, 1582, 1502, 1518, 1527, 1612, 1684, 1832, 2028, 2255, 2616, 3103, 3368, 2734, 2444, 2172, 1962, 1835, 1725, 1722, 1687, 1687, 1777, 1892, 2011, 2196, 2518, 2927, 3526]
| },
| "lsc_samples_blue": {
| "uCoeff": [2850, 2437, 2170, 1938, 1785, 1707, 1634, 1621, 1603, 1648, 1712, 1795, 1893, 2052, 2287, 2616, 3175, 2634, 2285, 2036, 1814, 1720, 1625, 1568, 1518, 1502, 1520, 1598, 1665, 1775, 1938, 2130, 2445, 2887, 2470, 2102, 1899, 1723, 1598, 1511, 1426, 1373, 1377, 1425, 1466, 1541, 1676, 1801, 1971, 2256, 2758, 2343, 2012, 1770, 1632, 1496, 1407, 1322, 1268, 1265, 1295, 1347, 1464, 1543, 1726, 1934, 2114, 2527, 2157, 1891, 1702, 1547, 1399, 1307, 1242, 1190, 1187, 1214, 1266, 1376, 1502, 1645, 1816, 2026, 2402, 2082, 1822, 1638, 1476, 1337, 1220, 1143, 1123, 1107, 1161, 1184, 1295, 1403, 1616, 1781, 1974, 2269, 2016, 1816, 1584, 1445, 1293, 1187, 1093, 1074, 1065, 1087, 1146, 1244, 1384, 1562, 1764, 1924, 2202, 1993, 1742, 1585, 1424, 1302, 1138, 1083, 1051, 1058, 1077, 1136, 1223, 1335, 1531, 1712, 1902, 2228, 1972, 1738, 1562, 1422, 1273, 1160, 1076, 1031, 1024, 1059, 1122, 1195, 1348, 1501, 1732, 1930, 2159, 1985, 1741, 1587, 1427, 1274, 1166, 1063, 1039, 1032, 1061, 1113, 1210, 1342, 1488, 1685, 1910, 2169, 2069, 1803, 1582, 1431, 1296, 1208, 1103, 1079, 1053, 1064, 1143, 1275, 1382, 1542, 1719, 1890, 2220, 2116, 1836, 1635, 1536, 1344, 1246, 1142, 1110, 1108, 1136, 1188, 1288, 1413, 1597, 1773, 2011, 2266, 2175, 1903, 1684, 1576, 1413, 1306, 1228, 1176, 1180, 1194, 1260, 1340, 1493, 1625, 1807, 2039, 2367, 2342, 1954, 1785, 1621, 1515, 1399, 1332, 1271, 1271, 1292, 1349, 1427, 1570, 1711, 1903, 2151, 2559, 2527, 2101, 1887, 1720, 1597, 1510, 1415, 1393, 1345, 1420, 1455, 1523, 1645, 1802, 1956, 2290, 2752, 2651, 2271, 2042, 1818, 1673, 1590, 1525, 1449, 1481, 1509, 1566, 1641, 1789, 1862, 2040, 2405, 2922, 2972, 2562, 2188, 2010, 1832, 1757, 1695, 1698, 1638, 1686, 1746, 1792, 1886, 2067, 2275, 2659, 3134]
| }
| }, {
| "name": "2592x1944_A_70",
| "resolution": "2592x1944",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3177, 2907, 2618, 2386, 2224, 2102, 2007, 1962, 1949, 2008, 2090, 2187, 2333, 2541, 2779, 3064, 3420, 3069, 2652, 2406, 2222, 2035, 1891, 1796, 1736, 1736, 1771, 1825, 1990, 2157, 2329, 2561, 2857, 3174, 2899, 2471, 2258, 2040, 1880, 1738, 1615, 1554, 1525, 1567, 1666, 1797, 1949, 2157, 2397, 2648, 3043, 2726, 2350, 2131, 1920, 1723, 1575, 1450, 1393, 1378, 1409, 1508, 1639, 1812, 2070, 2270, 2549, 2916, 2564, 2244, 2029, 1797, 1601, 1425, 1330, 1260, 1258, 1273, 1369, 1492, 1690, 1915, 2152, 2425, 2765, 2523, 2191, 1926, 1707, 1507, 1330, 1233, 1162, 1148, 1194, 1258, 1394, 1588, 1825, 2067, 2358, 2678, 2454, 2098, 1866, 1651, 1439, 1269, 1159, 1105, 1082, 1120, 1202, 1329, 1507, 1755, 2003, 2274, 2621, 2399, 2095, 1838, 1593, 1384, 1228, 1123, 1056, 1040, 1080, 1150, 1264, 1472, 1697, 1926, 2230, 2612, 2406, 2069, 1830, 1582, 1375, 1205, 1092, 1043, 1024, 1056, 1144, 1271, 1431, 1686, 1935, 2212, 2515, 2372, 2083, 1813, 1594, 1386, 1210, 1107, 1050, 1037, 1068, 1156, 1277, 1460, 1698, 1937, 2255, 2586, 2456, 2082, 1854, 1613, 1417, 1251, 1141, 1084, 1066, 1097, 1195, 1309, 1514, 1750, 1981, 2278, 2615, 2476, 2139, 1916, 1683, 1483, 1321, 1199, 1144, 1129, 1156, 1236, 1368, 1558, 1783, 2039, 2311, 2681, 2587, 2223, 1998, 1772, 1578, 1411, 1287, 1230, 1216, 1246, 1330, 1460, 1657, 1852, 2103, 2407, 2781, 2666, 2292, 2065, 1870, 1683, 1538, 1421, 1351, 1344, 1362, 1455, 1579, 1765, 1990, 2208, 2460, 2866, 2853, 2438, 2179, 1974, 1832, 1667, 1570, 1504, 1484, 1524, 1594, 1733, 1894, 2101, 2321, 2584, 3014, 3032, 2581, 2322, 2140, 1972, 1858, 1738, 1694, 1651, 1688, 1782, 1920, 2081, 2214, 2427, 2730, 3096, 3254, 2873, 2524, 2309, 2143, 2054, 1949, 1878, 1866, 1900, 1997, 2099, 2251, 2450, 2671, 3035, 3338]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2701, 2368, 2166, 2012, 1908, 1813, 1754, 1730, 1703, 1737, 1770, 1866, 1944, 2047, 2225, 2468, 2715, 2509, 2203, 2011, 1868, 1771, 1680, 1611, 1584, 1568, 1588, 1650, 1712, 1797, 1942, 2058, 2296, 2555, 2349, 2057, 1911, 1762, 1668, 1577, 1485, 1448, 1426, 1444, 1501, 1591, 1676, 1827, 1976, 2144, 2452, 2195, 1944, 1807, 1668, 1551, 1439, 1372, 1307, 1306, 1331, 1389, 1468, 1571, 1726, 1845, 2020, 2300, 2126, 1899, 1741, 1589, 1435, 1341, 1260, 1222, 1205, 1237, 1292, 1376, 1488, 1621, 1785, 1929, 2165, 2093, 1814, 1669, 1518, 1379, 1263, 1194, 1133, 1114, 1146, 1205, 1292, 1440, 1557, 1725, 1867, 2107, 2007, 1782, 1624, 1466, 1323, 1223, 1132, 1087, 1082, 1095, 1146, 1238, 1360, 1512, 1666, 1829, 2060, 1969, 1741, 1593, 1435, 1293, 1168, 1093, 1054, 1031, 1067, 1118, 1199, 1315, 1471, 1646, 1802, 2058, 2002, 1747, 1577, 1421, 1269, 1158, 1094, 1038, 1024, 1049, 1092, 1184, 1312, 1459, 1619, 1804, 1993, 1948, 1749, 1564, 1426, 1306, 1177, 1091, 1047, 1038, 1050, 1111, 1190, 1315, 1458, 1637, 1807, 2040, 2008, 1758, 1589, 1458, 1315, 1202, 1124, 1078, 1067, 1079, 1144, 1211, 1351, 1486, 1666, 1815, 2036, 2039, 1800, 1629, 1505, 1365, 1256, 1162, 1133, 1114, 1139, 1173, 1260, 1377, 1553, 1677, 1861, 2088, 2097, 1841, 1684, 1562, 1425, 1313, 1243, 1189, 1178, 1186, 1254, 1335, 1464, 1595, 1751, 1899, 2134, 2207, 1891, 1771, 1621, 1518, 1398, 1341, 1261, 1253, 1290, 1340, 1435, 1540, 1659, 1774, 1974, 2212, 2293, 2035, 1824, 1696, 1603, 1496, 1438, 1380, 1379, 1401, 1441, 1535, 1635, 1745, 1876, 2041, 2325, 2446, 2134, 1940, 1802, 1687, 1609, 1561, 1498, 1506, 1503, 1554, 1645, 1727, 1843, 1971, 2181, 2511, 2627, 2309, 2117, 1932, 1826, 1746, 1686, 1654, 1652, 1665, 1717, 1772, 1877, 1981, 2133, 2388, 2626]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2684, 2336, 2129, 1958, 1858, 1760, 1691, 1651, 1641, 1668, 1724, 1813, 1901, 2020, 2205, 2426, 2743, 2524, 2223, 1990, 1876, 1732, 1636, 1565, 1530, 1524, 1530, 1616, 1675, 1769, 1907, 2061, 2289, 2560, 2388, 2089, 1881, 1734, 1623, 1521, 1450, 1379, 1386, 1403, 1471, 1560, 1684, 1810, 1950, 2180, 2475, 2258, 1986, 1803, 1674, 1545, 1409, 1369, 1287, 1262, 1304, 1370, 1464, 1597, 1727, 1865, 2061, 2334, 2165, 1911, 1745, 1604, 1450, 1327, 1242, 1199, 1183, 1210, 1275, 1377, 1491, 1669, 1816, 2016, 2260, 2075, 1857, 1697, 1517, 1388, 1252, 1171, 1121, 1119, 1147, 1200, 1314, 1430, 1602, 1766, 1962, 2150, 2071, 1816, 1654, 1494, 1326, 1207, 1124, 1068, 1063, 1088, 1149, 1239, 1371, 1553, 1738, 1876, 2126, 2049, 1797, 1628, 1454, 1305, 1179, 1096, 1046, 1031, 1065, 1114, 1216, 1349, 1510, 1702, 1856, 2133, 2019, 1790, 1634, 1429, 1306, 1167, 1093, 1034, 1024, 1053, 1126, 1203, 1327, 1523, 1680, 1872, 2076, 1999, 1801, 1629, 1438, 1308, 1171, 1083, 1047, 1034, 1059, 1114, 1217, 1356, 1528, 1687, 1887, 2085, 2052, 1796, 1639, 1495, 1326, 1204, 1106, 1059, 1060, 1084, 1145, 1245, 1386, 1541, 1726, 1906, 2128, 2072, 1829, 1677, 1527, 1380, 1246, 1162, 1123, 1104, 1133, 1190, 1286, 1437, 1580, 1747, 1936, 2178, 2155, 1892, 1745, 1568, 1433, 1326, 1207, 1185, 1174, 1181, 1269, 1355, 1481, 1639, 1789, 1965, 2221, 2266, 1948, 1771, 1641, 1511, 1406, 1299, 1260, 1246, 1287, 1351, 1435, 1579, 1695, 1841, 2031, 2343, 2352, 2056, 1863, 1716, 1587, 1488, 1421, 1364, 1348, 1395, 1449, 1519, 1641, 1773, 1919, 2115, 2420, 2532, 2175, 1941, 1811, 1676, 1573, 1527, 1459, 1475, 1482, 1554, 1609, 1723, 1866, 2018, 2251, 2537, 2665, 2301, 2137, 1959, 1812, 1722, 1638, 1641, 1612, 1610, 1683, 1771, 1854, 1979, 2195, 2445, 2775]
| },
| "lsc_samples_blue": {
| "uCoeff": [2302, 2079, 1922, 1769, 1664, 1612, 1558, 1552, 1538, 1576, 1626, 1688, 1754, 1861, 2014, 2213, 2530, 2196, 1996, 1841, 1687, 1626, 1556, 1514, 1473, 1460, 1475, 1541, 1592, 1674, 1791, 1917, 2119, 2380, 2107, 1877, 1749, 1625, 1533, 1466, 1395, 1349, 1354, 1398, 1432, 1493, 1602, 1692, 1808, 1999, 2323, 2035, 1823, 1655, 1558, 1451, 1379, 1305, 1256, 1254, 1282, 1328, 1432, 1494, 1641, 1794, 1906, 2176, 1909, 1738, 1608, 1491, 1369, 1291, 1233, 1185, 1182, 1208, 1256, 1356, 1464, 1579, 1706, 1849, 2100, 1862, 1690, 1560, 1433, 1316, 1211, 1140, 1121, 1106, 1158, 1179, 1283, 1378, 1560, 1684, 1817, 2010, 1817, 1691, 1517, 1409, 1277, 1181, 1092, 1073, 1065, 1086, 1144, 1236, 1363, 1516, 1676, 1782, 1966, 1804, 1633, 1521, 1392, 1287, 1134, 1082, 1051, 1058, 1077, 1134, 1217, 1318, 1490, 1633, 1768, 1993, 1788, 1630, 1501, 1390, 1260, 1156, 1075, 1031, 1024, 1059, 1121, 1190, 1331, 1463, 1652, 1793, 1939, 1797, 1632, 1523, 1394, 1261, 1162, 1062, 1039, 1032, 1061, 1112, 1204, 1325, 1450, 1609, 1775, 1945, 1860, 1680, 1515, 1396, 1280, 1201, 1101, 1078, 1053, 1064, 1141, 1266, 1361, 1497, 1636, 1754, 1980, 1889, 1702, 1557, 1488, 1323, 1236, 1139, 1108, 1107, 1134, 1183, 1276, 1387, 1543, 1677, 1848, 2007, 1923, 1748, 1592, 1517, 1382, 1290, 1219, 1171, 1175, 1189, 1250, 1322, 1456, 1561, 1698, 1860, 2072, 2034, 1776, 1668, 1548, 1469, 1372, 1314, 1259, 1260, 1279, 1330, 1397, 1518, 1627, 1768, 1935, 2200, 2150, 1876, 1739, 1623, 1532, 1465, 1385, 1368, 1324, 1393, 1422, 1477, 1575, 1693, 1796, 2026, 2318, 2208, 1985, 1846, 1690, 1585, 1525, 1475, 1411, 1441, 1465, 1512, 1571, 1686, 1727, 1844, 2088, 2405, 2388, 2172, 1936, 1827, 1703, 1655, 1611, 1620, 1569, 1610, 1656, 1685, 1748, 1874, 2004, 2245, 2501]
| }
| }, {
| "name": "2592x1944_CWF_100",
| "resolution": "2592x1944",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3284, 2765, 2360, 2117, 1938, 1801, 1742, 1700, 1689, 1711, 1790, 1899, 2046, 2236, 2520, 2876, 3517, 2984, 2405, 2159, 1924, 1776, 1693, 1595, 1529, 1551, 1584, 1608, 1744, 1880, 2042, 2278, 2655, 3167, 2713, 2237, 1993, 1768, 1653, 1527, 1451, 1396, 1390, 1406, 1492, 1616, 1736, 1919, 2125, 2396, 2944, 2511, 2095, 1874, 1673, 1538, 1422, 1337, 1287, 1287, 1310, 1357, 1474, 1613, 1767, 2002, 2252, 2669, 2347, 1959, 1752, 1580, 1427, 1331, 1233, 1194, 1184, 1210, 1268, 1369, 1526, 1709, 1860, 2175, 2568, 2204, 1910, 1685, 1537, 1366, 1257, 1170, 1129, 1114, 1136, 1212, 1300, 1436, 1620, 1811, 2057, 2452, 2207, 1825, 1618, 1466, 1319, 1189, 1113, 1074, 1051, 1091, 1144, 1244, 1376, 1551, 1748, 2016, 2367, 2113, 1798, 1596, 1428, 1285, 1158, 1093, 1048, 1043, 1065, 1123, 1205, 1349, 1522, 1721, 1950, 2348, 2126, 1817, 1625, 1417, 1262, 1149, 1070, 1044, 1024, 1051, 1113, 1196, 1321, 1509, 1714, 1951, 2271, 2106, 1805, 1607, 1438, 1270, 1147, 1082, 1044, 1028, 1063, 1114, 1195, 1342, 1519, 1745, 1949, 2272, 2157, 1830, 1632, 1440, 1289, 1194, 1103, 1061, 1061, 1086, 1142, 1227, 1367, 1537, 1746, 1968, 2329, 2209, 1891, 1674, 1487, 1349, 1232, 1136, 1110, 1094, 1129, 1176, 1265, 1429, 1583, 1797, 2066, 2469, 2329, 1935, 1755, 1576, 1410, 1300, 1211, 1167, 1154, 1188, 1238, 1342, 1474, 1637, 1873, 2133, 2555, 2495, 2040, 1813, 1639, 1511, 1389, 1315, 1253, 1246, 1269, 1344, 1448, 1587, 1751, 1969, 2251, 2675, 2676, 2189, 1939, 1738, 1600, 1500, 1426, 1360, 1344, 1392, 1450, 1550, 1680, 1852, 2043, 2420, 2857, 2918, 2379, 2074, 1864, 1732, 1627, 1522, 1482, 1466, 1518, 1575, 1679, 1819, 1965, 2189, 2561, 3074, 3226, 2689, 2341, 2062, 1900, 1788, 1707, 1650, 1632, 1667, 1744, 1839, 1954, 2207, 2437, 2835, 3368]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3132, 2660, 2252, 2026, 1876, 1776, 1685, 1680, 1641, 1688, 1721, 1809, 1924, 2115, 2323, 2700, 3203, 2829, 2362, 2073, 1875, 1775, 1647, 1578, 1546, 1515, 1553, 1619, 1674, 1808, 1944, 2151, 2447, 2868, 2535, 2156, 1924, 1755, 1623, 1524, 1446, 1408, 1384, 1422, 1479, 1551, 1644, 1832, 1986, 2226, 2684, 2377, 2032, 1819, 1671, 1500, 1399, 1345, 1275, 1278, 1295, 1360, 1444, 1560, 1700, 1875, 2080, 2479, 2250, 1927, 1723, 1549, 1421, 1302, 1246, 1196, 1185, 1209, 1259, 1350, 1454, 1628, 1771, 1988, 2329, 2157, 1841, 1651, 1483, 1351, 1232, 1169, 1124, 1107, 1139, 1193, 1257, 1389, 1530, 1728, 1913, 2165, 2082, 1795, 1613, 1425, 1296, 1191, 1126, 1071, 1078, 1082, 1131, 1215, 1335, 1490, 1651, 1844, 2160, 2017, 1753, 1581, 1414, 1266, 1146, 1079, 1044, 1037, 1068, 1107, 1184, 1301, 1440, 1616, 1824, 2094, 2041, 1749, 1549, 1392, 1256, 1141, 1076, 1036, 1024, 1046, 1091, 1175, 1291, 1430, 1610, 1806, 2099, 2043, 1746, 1556, 1386, 1257, 1140, 1075, 1046, 1034, 1048, 1109, 1180, 1298, 1440, 1610, 1800, 2101, 2045, 1775, 1573, 1409, 1277, 1160, 1093, 1076, 1062, 1074, 1124, 1193, 1333, 1476, 1649, 1838, 2103, 2113, 1809, 1608, 1456, 1323, 1214, 1150, 1102, 1092, 1106, 1152, 1247, 1353, 1491, 1686, 1898, 2231, 2203, 1875, 1677, 1527, 1362, 1264, 1211, 1172, 1155, 1164, 1222, 1301, 1419, 1556, 1722, 1953, 2273, 2330, 1957, 1749, 1609, 1473, 1347, 1287, 1239, 1224, 1253, 1305, 1394, 1501, 1629, 1802, 2010, 2398, 2510, 2103, 1843, 1689, 1563, 1457, 1394, 1341, 1321, 1348, 1395, 1492, 1609, 1713, 1907, 2131, 2575, 2727, 2302, 1984, 1809, 1666, 1564, 1508, 1456, 1446, 1458, 1519, 1601, 1701, 1826, 2035, 2349, 2730, 3047, 2530, 2216, 1963, 1843, 1713, 1659, 1602, 1586, 1598, 1673, 1749, 1880, 1987, 2251, 2641, 3051]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3092, 2565, 2257, 1994, 1853, 1744, 1657, 1625, 1616, 1626, 1682, 1784, 1903, 2090, 2271, 2671, 3111, 2838, 2364, 2050, 1884, 1717, 1622, 1539, 1494, 1491, 1493, 1563, 1659, 1773, 1917, 2106, 2450, 2942, 2599, 2198, 1900, 1745, 1613, 1507, 1410, 1363, 1354, 1370, 1441, 1526, 1651, 1809, 1984, 2264, 2647, 2427, 2043, 1813, 1669, 1504, 1394, 1316, 1260, 1242, 1281, 1341, 1433, 1557, 1700, 1875, 2121, 2496, 2251, 1928, 1738, 1568, 1421, 1299, 1219, 1185, 1168, 1190, 1237, 1348, 1460, 1630, 1793, 1995, 2328, 2157, 1867, 1669, 1510, 1361, 1229, 1148, 1105, 1105, 1135, 1172, 1266, 1400, 1536, 1750, 1966, 2244, 2096, 1811, 1633, 1447, 1309, 1184, 1106, 1078, 1070, 1070, 1135, 1218, 1346, 1508, 1714, 1914, 2186, 2067, 1814, 1583, 1410, 1268, 1160, 1093, 1052, 1031, 1072, 1104, 1198, 1307, 1482, 1657, 1878, 2164, 2054, 1770, 1584, 1419, 1266, 1148, 1070, 1035, 1024, 1056, 1112, 1183, 1304, 1458, 1645, 1867, 2124, 2059, 1809, 1587, 1410, 1262, 1154, 1076, 1051, 1036, 1061, 1095, 1190, 1323, 1485, 1655, 1876, 2137, 2092, 1795, 1618, 1438, 1306, 1187, 1099, 1049, 1062, 1072, 1129, 1213, 1345, 1505, 1678, 1883, 2163, 2175, 1849, 1662, 1476, 1337, 1225, 1139, 1104, 1092, 1119, 1165, 1260, 1389, 1549, 1718, 1904, 2232, 2268, 1923, 1731, 1554, 1392, 1299, 1191, 1155, 1154, 1181, 1241, 1320, 1434, 1596, 1768, 2006, 2364, 2401, 2013, 1794, 1617, 1501, 1371, 1274, 1238, 1212, 1257, 1316, 1398, 1516, 1665, 1853, 2088, 2488, 2554, 2149, 1877, 1717, 1577, 1467, 1385, 1344, 1311, 1340, 1401, 1484, 1615, 1765, 1935, 2221, 2603, 2855, 2353, 1991, 1835, 1685, 1577, 1501, 1437, 1433, 1443, 1524, 1601, 1728, 1883, 2051, 2417, 2825, 3149, 2619, 2264, 1987, 1813, 1715, 1635, 1610, 1581, 1605, 1664, 1734, 1847, 2058, 2299, 2664, 3127]
| },
| "lsc_samples_blue": {
| "uCoeff": [2643, 2215, 1956, 1750, 1651, 1565, 1513, 1483, 1490, 1517, 1581, 1618, 1757, 1880, 2057, 2364, 2891, 2450, 2073, 1875, 1695, 1570, 1495, 1444, 1429, 1411, 1444, 1496, 1557, 1671, 1755, 1924, 2219, 2711, 2255, 1931, 1729, 1574, 1476, 1427, 1320, 1320, 1294, 1320, 1363, 1443, 1554, 1677, 1790, 2062, 2448, 2124, 1812, 1631, 1492, 1411, 1308, 1244, 1228, 1211, 1228, 1290, 1377, 1479, 1577, 1752, 1945, 2233, 1985, 1762, 1558, 1453, 1330, 1250, 1161, 1143, 1147, 1165, 1200, 1284, 1390, 1526, 1676, 1861, 2112, 1910, 1657, 1506, 1398, 1261, 1161, 1118, 1102, 1093, 1116, 1153, 1221, 1333, 1478, 1605, 1812, 2081, 1868, 1641, 1449, 1367, 1216, 1134, 1090, 1059, 1057, 1079, 1106, 1190, 1299, 1424, 1564, 1724, 1995, 1789, 1593, 1487, 1328, 1207, 1111, 1058, 1037, 1045, 1061, 1095, 1157, 1276, 1407, 1558, 1737, 1983, 1828, 1607, 1442, 1328, 1199, 1111, 1067, 1024, 1032, 1060, 1094, 1171, 1244, 1387, 1526, 1711, 1920, 1806, 1588, 1451, 1303, 1219, 1121, 1073, 1037, 1033, 1045, 1096, 1163, 1260, 1425, 1531, 1726, 1916, 1880, 1639, 1461, 1329, 1240, 1148, 1078, 1065, 1047, 1081, 1108, 1187, 1298, 1417, 1563, 1734, 2005, 1873, 1672, 1516, 1400, 1286, 1179, 1121, 1098, 1074, 1089, 1147, 1232, 1329, 1462, 1618, 1779, 2028, 1967, 1732, 1549, 1437, 1315, 1228, 1183, 1139, 1132, 1153, 1191, 1263, 1381, 1502, 1640, 1829, 2141, 2065, 1811, 1649, 1493, 1400, 1307, 1226, 1208, 1197, 1224, 1289, 1326, 1472, 1562, 1693, 1914, 2199, 2304, 1932, 1703, 1571, 1478, 1385, 1318, 1305, 1296, 1313, 1361, 1411, 1498, 1618, 1775, 2080, 2444, 2482, 2112, 1833, 1672, 1568, 1487, 1417, 1381, 1373, 1392, 1443, 1510, 1603, 1703, 1914, 2217, 2606, 2776, 2332, 1989, 1810, 1710, 1631, 1532, 1521, 1489, 1525, 1588, 1627, 1734, 1922, 2075, 2419, 2900]
| }
| }, {
| "name": "2592x1944_CWF_70",
| "resolution": "2592x1944",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2606, 2324, 2071, 1914, 1792, 1693, 1653, 1622, 1614, 1632, 1695, 1777, 1883, 2011, 2196, 2407, 2769, 2450, 2088, 1940, 1779, 1675, 1617, 1538, 1483, 1505, 1534, 1550, 1662, 1764, 1878, 2036, 2281, 2583, 2289, 1984, 1827, 1664, 1582, 1481, 1418, 1371, 1366, 1380, 1456, 1561, 1655, 1794, 1936, 2110, 2462, 2164, 1890, 1743, 1594, 1489, 1393, 1319, 1274, 1275, 1296, 1338, 1441, 1557, 1677, 1851, 2017, 2285, 2057, 1794, 1651, 1521, 1395, 1313, 1224, 1189, 1179, 1204, 1258, 1349, 1486, 1636, 1744, 1972, 2229, 1958, 1763, 1601, 1488, 1343, 1246, 1166, 1127, 1113, 1134, 1206, 1288, 1408, 1564, 1711, 1886, 2155, 1970, 1699, 1547, 1428, 1302, 1183, 1111, 1073, 1051, 1090, 1142, 1236, 1355, 1506, 1662, 1860, 2098, 1900, 1680, 1531, 1395, 1271, 1154, 1092, 1048, 1043, 1065, 1122, 1199, 1332, 1482, 1641, 1809, 2089, 1912, 1697, 1557, 1386, 1250, 1145, 1069, 1044, 1024, 1051, 1112, 1191, 1306, 1471, 1636, 1811, 2029, 1894, 1686, 1540, 1404, 1257, 1143, 1081, 1044, 1028, 1063, 1113, 1190, 1325, 1479, 1663, 1808, 2028, 1930, 1703, 1559, 1404, 1274, 1188, 1101, 1061, 1061, 1085, 1140, 1220, 1347, 1493, 1660, 1819, 2068, 1962, 1748, 1591, 1443, 1327, 1223, 1133, 1108, 1093, 1127, 1172, 1254, 1402, 1530, 1698, 1894, 2168, 2043, 1774, 1653, 1517, 1379, 1284, 1203, 1162, 1150, 1183, 1229, 1324, 1438, 1572, 1755, 1937, 2219, 2151, 1846, 1692, 1564, 1465, 1362, 1298, 1242, 1236, 1257, 1326, 1417, 1534, 1663, 1824, 2016, 2289, 2261, 1946, 1782, 1638, 1535, 1456, 1395, 1337, 1323, 1367, 1417, 1501, 1606, 1736, 1868, 2129, 2397, 2402, 2068, 1872, 1729, 1636, 1558, 1473, 1441, 1428, 1473, 1520, 1604, 1712, 1813, 1965, 2208, 2516, 2565, 2267, 2056, 1870, 1760, 1682, 1622, 1578, 1564, 1593, 1654, 1726, 1806, 1988, 2131, 2376, 2665]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2500, 2246, 1986, 1840, 1740, 1671, 1603, 1604, 1572, 1611, 1634, 1700, 1780, 1913, 2042, 2275, 2549, 2337, 2055, 1871, 1738, 1674, 1576, 1523, 1499, 1472, 1505, 1560, 1600, 1702, 1796, 1934, 2121, 2366, 2156, 1920, 1769, 1653, 1555, 1478, 1414, 1382, 1361, 1395, 1444, 1502, 1574, 1719, 1821, 1975, 2267, 2061, 1839, 1697, 1592, 1455, 1372, 1326, 1263, 1267, 1282, 1341, 1413, 1509, 1618, 1744, 1878, 2139, 1981, 1767, 1626, 1493, 1390, 1286, 1237, 1190, 1180, 1203, 1249, 1331, 1420, 1564, 1667, 1818, 2043, 1921, 1706, 1571, 1440, 1329, 1223, 1165, 1122, 1106, 1137, 1188, 1246, 1365, 1482, 1638, 1766, 1927, 1870, 1674, 1543, 1390, 1280, 1185, 1124, 1071, 1078, 1081, 1129, 1208, 1317, 1450, 1576, 1715, 1932, 1823, 1642, 1517, 1382, 1253, 1142, 1078, 1044, 1037, 1068, 1106, 1179, 1286, 1406, 1548, 1702, 1885, 1844, 1640, 1490, 1363, 1244, 1138, 1075, 1036, 1024, 1046, 1090, 1171, 1277, 1398, 1544, 1688, 1891, 1844, 1636, 1495, 1357, 1245, 1136, 1074, 1046, 1034, 1048, 1108, 1175, 1283, 1406, 1543, 1682, 1890, 1841, 1657, 1508, 1376, 1262, 1155, 1092, 1075, 1062, 1073, 1122, 1187, 1315, 1437, 1574, 1710, 1887, 1886, 1679, 1533, 1415, 1303, 1205, 1146, 1100, 1091, 1104, 1148, 1237, 1331, 1447, 1602, 1753, 1980, 1944, 1725, 1586, 1473, 1335, 1250, 1203, 1167, 1151, 1159, 1214, 1285, 1388, 1499, 1625, 1789, 1999, 2025, 1779, 1637, 1538, 1430, 1323, 1272, 1229, 1215, 1242, 1289, 1367, 1456, 1555, 1682, 1821, 2077, 2137, 1878, 1702, 1596, 1502, 1417, 1366, 1320, 1302, 1326, 1366, 1449, 1543, 1617, 1755, 1900, 2185, 2263, 2009, 1799, 1682, 1579, 1502, 1460, 1417, 1409, 1419, 1470, 1535, 1610, 1697, 1840, 2045, 2265, 2440, 2149, 1958, 1789, 1712, 1617, 1580, 1535, 1523, 1532, 1592, 1648, 1743, 1808, 1985, 2231, 2443]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2472, 2175, 1990, 1814, 1721, 1644, 1578, 1556, 1549, 1556, 1600, 1678, 1763, 1892, 2001, 2254, 2485, 2344, 2057, 1852, 1745, 1623, 1554, 1488, 1452, 1450, 1451, 1510, 1586, 1672, 1773, 1898, 2123, 2420, 2203, 1953, 1750, 1644, 1546, 1462, 1380, 1340, 1333, 1347, 1409, 1480, 1580, 1699, 1819, 2005, 2239, 2099, 1848, 1692, 1591, 1459, 1367, 1299, 1249, 1232, 1269, 1323, 1403, 1507, 1618, 1744, 1911, 2152, 1982, 1768, 1639, 1510, 1390, 1283, 1211, 1180, 1164, 1185, 1228, 1329, 1425, 1565, 1686, 1823, 2042, 1921, 1727, 1587, 1464, 1338, 1220, 1144, 1103, 1104, 1133, 1168, 1255, 1375, 1488, 1657, 1810, 1990, 1881, 1687, 1560, 1411, 1292, 1178, 1104, 1077, 1070, 1070, 1133, 1211, 1327, 1466, 1632, 1774, 1953, 1863, 1694, 1519, 1379, 1255, 1156, 1092, 1052, 1031, 1072, 1103, 1193, 1292, 1445, 1585, 1748, 1941, 1854, 1657, 1521, 1388, 1254, 1144, 1069, 1035, 1024, 1056, 1111, 1178, 1290, 1424, 1575, 1740, 1911, 1857, 1689, 1523, 1379, 1249, 1150, 1075, 1051, 1036, 1061, 1094, 1185, 1307, 1448, 1583, 1746, 1919, 1878, 1674, 1547, 1402, 1290, 1181, 1097, 1049, 1062, 1071, 1127, 1206, 1326, 1464, 1600, 1748, 1935, 1935, 1712, 1581, 1433, 1316, 1216, 1136, 1102, 1091, 1117, 1161, 1249, 1365, 1499, 1629, 1758, 1980, 1995, 1764, 1633, 1498, 1363, 1283, 1184, 1151, 1150, 1176, 1232, 1303, 1402, 1535, 1664, 1832, 2070, 2079, 1824, 1675, 1545, 1456, 1346, 1260, 1228, 1204, 1246, 1299, 1371, 1469, 1587, 1725, 1885, 2146, 2170, 1914, 1730, 1620, 1514, 1426, 1357, 1322, 1292, 1319, 1372, 1442, 1548, 1661, 1779, 1971, 2206, 2356, 2048, 1805, 1704, 1596, 1514, 1454, 1400, 1397, 1405, 1474, 1535, 1633, 1745, 1853, 2097, 2335, 2512, 2215, 1996, 1808, 1687, 1619, 1559, 1542, 1518, 1538, 1584, 1635, 1716, 1866, 2023, 2249, 2496]
| },
| "lsc_samples_blue": {
| "uCoeff": [2157, 1913, 1754, 1615, 1551, 1490, 1452, 1430, 1438, 1460, 1512, 1535, 1640, 1721, 1833, 2025, 2331, 2062, 1832, 1711, 1587, 1496, 1441, 1402, 1392, 1377, 1406, 1449, 1496, 1584, 1637, 1751, 1945, 2252, 1946, 1742, 1608, 1497, 1425, 1390, 1297, 1300, 1277, 1300, 1337, 1404, 1494, 1586, 1658, 1845, 2090, 1867, 1661, 1538, 1435, 1374, 1287, 1231, 1218, 1203, 1218, 1275, 1351, 1436, 1510, 1640, 1769, 1951, 1774, 1632, 1484, 1407, 1306, 1237, 1155, 1139, 1143, 1160, 1193, 1269, 1361, 1473, 1585, 1713, 1873, 1726, 1552, 1444, 1363, 1245, 1155, 1115, 1100, 1092, 1114, 1149, 1212, 1312, 1435, 1531, 1682, 1861, 1699, 1544, 1398, 1337, 1205, 1130, 1089, 1059, 1057, 1078, 1104, 1184, 1283, 1390, 1500, 1614, 1801, 1639, 1506, 1434, 1303, 1197, 1108, 1057, 1037, 1045, 1061, 1094, 1153, 1263, 1376, 1497, 1628, 1796, 1672, 1519, 1395, 1304, 1190, 1108, 1066, 1024, 1032, 1060, 1093, 1167, 1233, 1358, 1469, 1607, 1746, 1653, 1502, 1402, 1280, 1209, 1118, 1072, 1037, 1033, 1045, 1095, 1159, 1247, 1393, 1473, 1619, 1742, 1709, 1542, 1409, 1303, 1227, 1143, 1077, 1065, 1047, 1080, 1106, 1181, 1282, 1383, 1499, 1622, 1809, 1696, 1565, 1453, 1364, 1268, 1172, 1118, 1097, 1073, 1088, 1143, 1223, 1309, 1421, 1542, 1654, 1819, 1760, 1607, 1476, 1393, 1292, 1216, 1176, 1135, 1129, 1149, 1184, 1249, 1353, 1451, 1554, 1687, 1896, 1822, 1661, 1553, 1436, 1364, 1286, 1214, 1199, 1189, 1214, 1274, 1304, 1430, 1497, 1590, 1744, 1925, 1983, 1742, 1586, 1494, 1427, 1352, 1295, 1286, 1278, 1293, 1335, 1375, 1444, 1535, 1646, 1860, 2087, 2085, 1862, 1677, 1568, 1495, 1434, 1378, 1349, 1343, 1359, 1401, 1454, 1525, 1594, 1743, 1943, 2175, 2250, 2001, 1780, 1664, 1601, 1547, 1469, 1464, 1437, 1467, 1518, 1543, 1621, 1756, 1847, 2066, 2337]
| }
| }, {
| "name": "2592x1944_D50_100",
| "resolution": "2592x1944",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3183, 2667, 2370, 2104, 1925, 1826, 1721, 1681, 1687, 1733, 1820, 1880, 2056, 2200, 2503, 2941, 3412, 3013, 2414, 2127, 1907, 1768, 1680, 1616, 1548, 1540, 1570, 1642, 1727, 1882, 2051, 2254, 2646, 3110, 2759, 2212, 2017, 1779, 1655, 1543, 1451, 1401, 1401, 1410, 1479, 1587, 1752, 1904, 2115, 2402, 2943, 2505, 2133, 1874, 1704, 1521, 1412, 1348, 1278, 1267, 1292, 1372, 1489, 1600, 1805, 1996, 2235, 2648, 2363, 2017, 1786, 1592, 1473, 1324, 1246, 1199, 1180, 1200, 1272, 1378, 1511, 1704, 1923, 2158, 2603, 2282, 1907, 1692, 1526, 1363, 1257, 1172, 1125, 1101, 1136, 1195, 1305, 1439, 1606, 1831, 2042, 2477, 2179, 1847, 1656, 1482, 1303, 1192, 1114, 1078, 1050, 1100, 1145, 1231, 1374, 1593, 1775, 2027, 2397, 2134, 1797, 1634, 1429, 1279, 1166, 1072, 1041, 1037, 1075, 1097, 1204, 1350, 1537, 1734, 1958, 2316, 2148, 1798, 1615, 1418, 1281, 1160, 1065, 1049, 1026, 1034, 1107, 1216, 1312, 1527, 1712, 1938, 2253, 2098, 1799, 1612, 1422, 1265, 1163, 1081, 1047, 1024, 1046, 1101, 1191, 1359, 1514, 1712, 1952, 2303, 2157, 1845, 1646, 1474, 1313, 1185, 1095, 1062, 1051, 1058, 1149, 1228, 1379, 1554, 1744, 1987, 2355, 2205, 1905, 1680, 1518, 1350, 1242, 1137, 1099, 1081, 1106, 1185, 1276, 1429, 1617, 1826, 2033, 2413, 2331, 1979, 1752, 1559, 1419, 1315, 1205, 1181, 1159, 1167, 1250, 1324, 1492, 1655, 1857, 2128, 2571, 2504, 2057, 1835, 1652, 1510, 1389, 1302, 1257, 1238, 1261, 1333, 1433, 1585, 1764, 1948, 2213, 2685, 2716, 2205, 1956, 1744, 1628, 1499, 1405, 1397, 1345, 1386, 1471, 1555, 1697, 1869, 2051, 2313, 2864, 2919, 2359, 2124, 1918, 1767, 1624, 1535, 1524, 1497, 1539, 1593, 1699, 1858, 1996, 2207, 2632, 2994, 3271, 2742, 2302, 2116, 1918, 1791, 1711, 1667, 1670, 1701, 1748, 1832, 1984, 2187, 2460, 2901, 3591]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3065, 2603, 2230, 2015, 1881, 1775, 1671, 1691, 1654, 1663, 1722, 1801, 1943, 2071, 2336, 2700, 3189, 2880, 2383, 2098, 1904, 1743, 1654, 1566, 1535, 1528, 1547, 1598, 1653, 1808, 1942, 2117, 2457, 2829, 2595, 2196, 1930, 1734, 1631, 1510, 1450, 1395, 1378, 1403, 1479, 1555, 1657, 1818, 1999, 2219, 2668, 2410, 2084, 1841, 1657, 1507, 1408, 1317, 1264, 1261, 1288, 1349, 1431, 1565, 1715, 1884, 2051, 2452, 2246, 1931, 1745, 1537, 1403, 1306, 1242, 1188, 1171, 1195, 1247, 1348, 1466, 1608, 1795, 2019, 2348, 2190, 1868, 1641, 1487, 1353, 1249, 1171, 1117, 1115, 1134, 1186, 1261, 1387, 1525, 1751, 1949, 2213, 2093, 1789, 1613, 1430, 1306, 1189, 1114, 1076, 1075, 1078, 1125, 1202, 1345, 1478, 1654, 1846, 2184, 2062, 1761, 1590, 1401, 1271, 1158, 1083, 1034, 1024, 1062, 1105, 1182, 1287, 1444, 1636, 1816, 2084, 2025, 1773, 1575, 1386, 1249, 1139, 1069, 1034, 1039, 1042, 1094, 1174, 1286, 1420, 1620, 1795, 2103, 2044, 1737, 1575, 1406, 1269, 1151, 1076, 1039, 1024, 1050, 1094, 1176, 1296, 1469, 1632, 1839, 2103, 2067, 1785, 1582, 1416, 1282, 1179, 1102, 1069, 1056, 1068, 1125, 1200, 1315, 1468, 1680, 1844, 2114, 2105, 1829, 1635, 1478, 1320, 1222, 1145, 1109, 1092, 1120, 1153, 1230, 1356, 1499, 1682, 1901, 2168, 2250, 1884, 1693, 1550, 1387, 1281, 1215, 1160, 1145, 1178, 1229, 1298, 1423, 1580, 1725, 1944, 2257, 2373, 2007, 1763, 1610, 1481, 1368, 1284, 1251, 1222, 1261, 1303, 1392, 1520, 1655, 1783, 2010, 2430, 2531, 2092, 1844, 1712, 1570, 1483, 1396, 1352, 1333, 1367, 1416, 1476, 1585, 1751, 1926, 2181, 2633, 2780, 2314, 2008, 1820, 1686, 1554, 1524, 1464, 1455, 1460, 1535, 1602, 1709, 1846, 2052, 2356, 2834, 3022, 2566, 2216, 1982, 1833, 1734, 1660, 1595, 1589, 1627, 1659, 1743, 1866, 2008, 2221, 2589, 3064]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3087, 2628, 2248, 1996, 1848, 1751, 1665, 1641, 1627, 1646, 1700, 1802, 1885, 2057, 2261, 2668, 3164, 2866, 2379, 2058, 1867, 1733, 1662, 1547, 1506, 1477, 1485, 1571, 1638, 1771, 1944, 2120, 2432, 2912, 2587, 2183, 1924, 1752, 1604, 1507, 1415, 1377, 1355, 1386, 1432, 1532, 1651, 1809, 1956, 2247, 2674, 2417, 2075, 1829, 1642, 1528, 1393, 1326, 1259, 1251, 1262, 1336, 1435, 1553, 1719, 1881, 2131, 2452, 2245, 1953, 1723, 1574, 1419, 1298, 1213, 1179, 1159, 1183, 1234, 1329, 1454, 1630, 1794, 2034, 2320, 2182, 1887, 1660, 1503, 1369, 1234, 1152, 1120, 1101, 1140, 1182, 1282, 1391, 1544, 1740, 1972, 2232, 2121, 1812, 1634, 1457, 1301, 1182, 1108, 1074, 1062, 1084, 1132, 1214, 1335, 1507, 1687, 1887, 2204, 2048, 1796, 1591, 1412, 1287, 1160, 1081, 1048, 1038, 1054, 1112, 1197, 1320, 1484, 1668, 1861, 2158, 2068, 1775, 1581, 1416, 1274, 1146, 1072, 1037, 1024, 1046, 1100, 1186, 1302, 1480, 1638, 1831, 2109, 2035, 1769, 1601, 1427, 1254, 1155, 1072, 1046, 1029, 1045, 1102, 1184, 1309, 1486, 1670, 1859, 2153, 2135, 1831, 1632, 1441, 1306, 1184, 1107, 1059, 1054, 1072, 1115, 1220, 1364, 1504, 1691, 1872, 2150, 2179, 1835, 1657, 1492, 1348, 1240, 1140, 1116, 1096, 1107, 1164, 1251, 1384, 1549, 1707, 1924, 2264, 2268, 1920, 1732, 1560, 1382, 1289, 1203, 1173, 1156, 1169, 1235, 1321, 1438, 1603, 1779, 1981, 2344, 2434, 2021, 1806, 1627, 1488, 1360, 1285, 1241, 1218, 1276, 1321, 1412, 1543, 1661, 1815, 2077, 2477, 2622, 2168, 1899, 1732, 1581, 1485, 1397, 1364, 1329, 1362, 1401, 1503, 1607, 1770, 1964, 2211, 2638, 2868, 2323, 2003, 1834, 1686, 1600, 1509, 1444, 1456, 1456, 1538, 1616, 1705, 1859, 2074, 2414, 2792, 3196, 2630, 2260, 2004, 1854, 1699, 1634, 1637, 1614, 1625, 1691, 1798, 1881, 2077, 2291, 2688, 3141]
| },
| "lsc_samples_blue": {
| "uCoeff": [2693, 2300, 2046, 1797, 1671, 1632, 1576, 1511, 1507, 1543, 1604, 1651, 1741, 1883, 2078, 2379, 2815, 2521, 2163, 1880, 1726, 1623, 1544, 1444, 1445, 1419, 1435, 1496, 1550, 1680, 1785, 1968, 2234, 2683, 2265, 1995, 1788, 1629, 1509, 1431, 1359, 1320, 1314, 1339, 1389, 1457, 1571, 1691, 1817, 2050, 2463, 2180, 1876, 1677, 1541, 1423, 1337, 1263, 1222, 1209, 1245, 1301, 1384, 1462, 1590, 1762, 1950, 2337, 2034, 1748, 1589, 1459, 1333, 1255, 1193, 1146, 1163, 1157, 1218, 1278, 1386, 1531, 1701, 1877, 2204, 1970, 1692, 1548, 1416, 1271, 1183, 1135, 1087, 1101, 1118, 1146, 1230, 1345, 1481, 1637, 1813, 2081, 1860, 1675, 1491, 1359, 1244, 1145, 1086, 1063, 1055, 1070, 1108, 1185, 1305, 1433, 1594, 1762, 2031, 1846, 1641, 1479, 1347, 1204, 1134, 1060, 1037, 1027, 1067, 1096, 1159, 1269, 1407, 1545, 1717, 2000, 1848, 1641, 1487, 1339, 1231, 1113, 1062, 1024, 1031, 1046, 1081, 1166, 1278, 1394, 1529, 1722, 1997, 1874, 1648, 1485, 1325, 1238, 1131, 1069, 1029, 1032, 1051, 1096, 1174, 1261, 1397, 1563, 1756, 1996, 1864, 1650, 1508, 1355, 1228, 1169, 1085, 1064, 1045, 1062, 1106, 1169, 1285, 1424, 1591, 1760, 1999, 1971, 1704, 1547, 1412, 1280, 1203, 1126, 1097, 1094, 1104, 1151, 1221, 1336, 1457, 1611, 1796, 2034, 2045, 1730, 1584, 1487, 1349, 1251, 1189, 1149, 1135, 1151, 1205, 1264, 1384, 1517, 1660, 1840, 2168, 2083, 1827, 1648, 1532, 1403, 1306, 1257, 1209, 1200, 1234, 1275, 1341, 1463, 1581, 1697, 1921, 2266, 2240, 1971, 1722, 1575, 1492, 1417, 1346, 1322, 1304, 1307, 1345, 1428, 1516, 1635, 1767, 2039, 2405, 2564, 2166, 1832, 1680, 1575, 1488, 1423, 1378, 1381, 1400, 1436, 1520, 1624, 1700, 1913, 2170, 2594, 2791, 2425, 2037, 1861, 1719, 1622, 1535, 1535, 1511, 1547, 1571, 1659, 1748, 1900, 2102, 2446, 2974]
| }
| }, {
| "name": "2592x1944_D50_70",
| "resolution": "2592x1944",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2535, 2251, 2079, 1904, 1781, 1714, 1634, 1605, 1612, 1651, 1721, 1761, 1891, 1982, 2183, 2455, 2696, 2471, 2095, 1915, 1765, 1668, 1605, 1557, 1501, 1495, 1521, 1581, 1647, 1766, 1885, 2017, 2274, 2542, 2323, 1964, 1846, 1673, 1584, 1495, 1418, 1375, 1377, 1384, 1444, 1535, 1670, 1781, 1928, 2114, 2461, 2159, 1921, 1743, 1621, 1474, 1384, 1329, 1266, 1256, 1279, 1352, 1455, 1545, 1710, 1846, 2003, 2269, 2069, 1841, 1680, 1531, 1437, 1307, 1237, 1193, 1175, 1194, 1262, 1358, 1472, 1632, 1798, 1958, 2257, 2020, 1761, 1607, 1478, 1340, 1246, 1168, 1123, 1100, 1134, 1190, 1292, 1411, 1551, 1728, 1874, 2174, 1948, 1717, 1581, 1443, 1287, 1186, 1112, 1077, 1050, 1099, 1143, 1223, 1354, 1544, 1685, 1869, 2122, 1917, 1679, 1564, 1396, 1265, 1162, 1071, 1041, 1037, 1075, 1096, 1198, 1333, 1495, 1653, 1816, 2063, 1930, 1681, 1548, 1387, 1268, 1156, 1064, 1049, 1026, 1034, 1106, 1210, 1297, 1487, 1635, 1800, 2015, 1888, 1681, 1545, 1390, 1252, 1159, 1080, 1047, 1024, 1046, 1100, 1186, 1341, 1474, 1633, 1810, 2053, 1930, 1716, 1572, 1435, 1296, 1179, 1094, 1062, 1051, 1058, 1146, 1221, 1358, 1508, 1658, 1835, 2088, 1959, 1759, 1596, 1471, 1328, 1232, 1134, 1098, 1080, 1104, 1180, 1265, 1402, 1561, 1724, 1866, 2124, 2044, 1810, 1651, 1502, 1388, 1298, 1197, 1176, 1155, 1162, 1241, 1307, 1455, 1588, 1741, 1933, 2232, 2158, 1859, 1710, 1576, 1464, 1362, 1286, 1246, 1228, 1250, 1315, 1403, 1532, 1674, 1806, 1986, 2297, 2291, 1958, 1796, 1643, 1560, 1455, 1376, 1372, 1324, 1361, 1437, 1506, 1621, 1751, 1875, 2044, 2402, 2403, 2053, 1912, 1774, 1667, 1555, 1484, 1479, 1456, 1493, 1537, 1622, 1745, 1839, 1979, 2263, 2458, 2597, 2307, 2025, 1914, 1775, 1684, 1626, 1593, 1597, 1623, 1658, 1720, 1831, 1971, 2149, 2426, 2821]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2453, 2203, 1969, 1831, 1744, 1670, 1590, 1614, 1583, 1589, 1635, 1693, 1796, 1877, 2052, 2275, 2540, 2375, 2071, 1891, 1762, 1646, 1582, 1512, 1489, 1484, 1500, 1541, 1581, 1702, 1794, 1906, 2128, 2337, 2200, 1951, 1774, 1635, 1562, 1465, 1417, 1370, 1355, 1377, 1444, 1506, 1585, 1707, 1832, 1970, 2255, 2086, 1881, 1715, 1580, 1461, 1380, 1300, 1252, 1250, 1275, 1330, 1401, 1514, 1631, 1752, 1855, 2118, 1978, 1771, 1645, 1482, 1373, 1290, 1233, 1183, 1167, 1189, 1238, 1329, 1431, 1546, 1688, 1843, 2058, 1947, 1728, 1562, 1443, 1331, 1239, 1167, 1115, 1114, 1132, 1181, 1250, 1363, 1478, 1658, 1796, 1965, 1879, 1669, 1543, 1395, 1290, 1183, 1112, 1075, 1075, 1077, 1123, 1196, 1326, 1439, 1579, 1717, 1952, 1859, 1649, 1525, 1370, 1258, 1154, 1082, 1034, 1024, 1062, 1104, 1177, 1273, 1410, 1566, 1695, 1877, 1831, 1660, 1513, 1357, 1237, 1136, 1068, 1034, 1039, 1042, 1093, 1170, 1273, 1389, 1553, 1679, 1894, 1845, 1628, 1512, 1375, 1256, 1147, 1075, 1039, 1024, 1050, 1093, 1171, 1282, 1433, 1563, 1715, 1892, 1858, 1665, 1515, 1382, 1267, 1173, 1100, 1069, 1056, 1068, 1123, 1194, 1298, 1430, 1602, 1715, 1896, 1880, 1696, 1557, 1435, 1300, 1213, 1141, 1107, 1091, 1118, 1149, 1221, 1334, 1454, 1598, 1756, 1930, 1981, 1732, 1600, 1494, 1358, 1266, 1207, 1156, 1141, 1173, 1220, 1282, 1391, 1521, 1627, 1781, 1987, 2058, 1819, 1649, 1539, 1438, 1343, 1269, 1240, 1213, 1250, 1287, 1365, 1473, 1578, 1666, 1821, 2102, 2153, 1869, 1703, 1616, 1508, 1441, 1367, 1330, 1313, 1344, 1386, 1434, 1521, 1649, 1771, 1939, 2229, 2302, 2018, 1818, 1692, 1597, 1493, 1474, 1424, 1417, 1421, 1484, 1536, 1617, 1714, 1854, 2050, 2341, 2423, 2175, 1958, 1804, 1704, 1635, 1581, 1529, 1525, 1557, 1580, 1643, 1732, 1826, 1962, 2193, 2452]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2468, 2222, 1983, 1816, 1717, 1650, 1585, 1570, 1559, 1574, 1616, 1694, 1748, 1866, 1993, 2252, 2522, 2364, 2068, 1859, 1731, 1637, 1589, 1495, 1463, 1438, 1443, 1517, 1568, 1670, 1796, 1909, 2109, 2398, 2194, 1941, 1769, 1650, 1538, 1462, 1385, 1353, 1334, 1361, 1401, 1485, 1580, 1699, 1796, 1992, 2260, 2092, 1874, 1705, 1567, 1480, 1366, 1309, 1248, 1241, 1250, 1318, 1405, 1503, 1634, 1749, 1919, 2118, 1977, 1789, 1626, 1515, 1388, 1282, 1205, 1174, 1155, 1178, 1225, 1311, 1420, 1565, 1687, 1855, 2036, 1941, 1744, 1579, 1458, 1346, 1225, 1148, 1118, 1100, 1138, 1177, 1270, 1366, 1495, 1649, 1815, 1980, 1901, 1688, 1561, 1420, 1285, 1176, 1106, 1073, 1062, 1083, 1130, 1207, 1317, 1465, 1608, 1751, 1968, 1848, 1678, 1526, 1381, 1273, 1156, 1080, 1048, 1038, 1054, 1111, 1192, 1304, 1447, 1594, 1733, 1936, 1866, 1662, 1518, 1385, 1261, 1142, 1071, 1037, 1024, 1046, 1099, 1181, 1288, 1444, 1569, 1709, 1899, 1837, 1655, 1535, 1394, 1242, 1151, 1071, 1046, 1029, 1045, 1101, 1179, 1294, 1449, 1596, 1732, 1932, 1913, 1704, 1559, 1405, 1290, 1178, 1105, 1059, 1054, 1071, 1113, 1213, 1344, 1463, 1611, 1739, 1924, 1939, 1701, 1576, 1448, 1326, 1230, 1137, 1114, 1095, 1105, 1160, 1241, 1360, 1499, 1620, 1775, 2006, 1995, 1762, 1633, 1503, 1354, 1274, 1196, 1168, 1152, 1164, 1226, 1304, 1405, 1541, 1674, 1812, 2054, 2105, 1830, 1686, 1554, 1444, 1335, 1270, 1231, 1209, 1264, 1304, 1384, 1494, 1583, 1693, 1876, 2138, 2221, 1929, 1749, 1633, 1518, 1442, 1368, 1341, 1309, 1339, 1372, 1459, 1541, 1666, 1803, 1963, 2233, 2366, 2025, 1814, 1703, 1597, 1534, 1461, 1406, 1418, 1417, 1487, 1548, 1613, 1724, 1872, 2095, 2311, 2544, 2223, 1992, 1822, 1722, 1605, 1558, 1566, 1548, 1556, 1608, 1690, 1744, 1882, 2017, 2267, 2506]
| },
| "lsc_samples_blue": {
| "uCoeff": [2192, 1977, 1825, 1654, 1568, 1547, 1507, 1455, 1453, 1483, 1532, 1564, 1627, 1724, 1850, 2036, 2278, 2113, 1902, 1715, 1613, 1542, 1485, 1402, 1407, 1385, 1398, 1449, 1490, 1591, 1662, 1786, 1956, 2231, 1953, 1792, 1657, 1544, 1454, 1393, 1333, 1300, 1295, 1318, 1361, 1417, 1509, 1598, 1681, 1836, 2102, 1910, 1713, 1576, 1478, 1385, 1314, 1249, 1212, 1201, 1234, 1285, 1358, 1421, 1521, 1648, 1773, 2030, 1812, 1620, 1510, 1413, 1309, 1242, 1186, 1142, 1159, 1153, 1210, 1263, 1357, 1477, 1607, 1726, 1945, 1773, 1581, 1481, 1379, 1254, 1176, 1132, 1086, 1100, 1116, 1142, 1221, 1323, 1438, 1559, 1682, 1861, 1693, 1573, 1435, 1330, 1231, 1141, 1085, 1063, 1055, 1070, 1106, 1179, 1289, 1398, 1526, 1646, 1829, 1685, 1547, 1427, 1321, 1194, 1131, 1059, 1037, 1027, 1067, 1095, 1155, 1256, 1376, 1485, 1611, 1809, 1688, 1548, 1435, 1314, 1220, 1110, 1062, 1024, 1031, 1046, 1080, 1162, 1265, 1365, 1472, 1617, 1808, 1708, 1553, 1432, 1301, 1227, 1128, 1068, 1029, 1032, 1051, 1095, 1169, 1248, 1367, 1501, 1644, 1806, 1696, 1551, 1450, 1326, 1216, 1164, 1084, 1064, 1045, 1062, 1104, 1164, 1270, 1390, 1523, 1644, 1804, 1774, 1591, 1480, 1375, 1263, 1195, 1123, 1096, 1093, 1102, 1147, 1212, 1315, 1416, 1536, 1668, 1824, 1821, 1605, 1506, 1438, 1323, 1238, 1182, 1145, 1132, 1147, 1197, 1250, 1355, 1464, 1571, 1696, 1917, 1836, 1673, 1552, 1470, 1367, 1285, 1244, 1200, 1192, 1224, 1261, 1318, 1421, 1513, 1593, 1749, 1976, 1935, 1773, 1602, 1498, 1439, 1381, 1321, 1302, 1286, 1288, 1320, 1391, 1460, 1550, 1639, 1827, 2058, 2145, 1904, 1676, 1574, 1501, 1435, 1383, 1346, 1350, 1366, 1395, 1463, 1543, 1591, 1742, 1907, 2166, 2261, 2070, 1818, 1706, 1608, 1539, 1471, 1476, 1456, 1487, 1503, 1571, 1632, 1738, 1869, 2086, 2389]
| }
| }, {
| "name": "2592x1944_D65_100",
| "resolution": "2592x1944",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3670, 3082, 2623, 2370, 2169, 2039, 1933, 1877, 1890, 1908, 2007, 2135, 2296, 2514, 2856, 3319, 3896, 3401, 2765, 2402, 2142, 1976, 1846, 1724, 1677, 1655, 1686, 1782, 1913, 2063, 2287, 2579, 3060, 3510, 3093, 2497, 2212, 1998, 1808, 1660, 1567, 1500, 1470, 1518, 1617, 1736, 1906, 2114, 2387, 2730, 3317, 2826, 2363, 2108, 1875, 1662, 1515, 1398, 1342, 1332, 1362, 1452, 1582, 1760, 1991, 2246, 2520, 3046, 2703, 2220, 1993, 1738, 1537, 1396, 1291, 1237, 1215, 1239, 1325, 1440, 1629, 1880, 2095, 2470, 2867, 2558, 2173, 1852, 1676, 1445, 1303, 1192, 1134, 1115, 1177, 1246, 1379, 1529, 1770, 2027, 2338, 2768, 2504, 2084, 1809, 1572, 1367, 1233, 1128, 1074, 1067, 1099, 1177, 1291, 1473, 1697, 1950, 2266, 2705, 2431, 2064, 1772, 1526, 1343, 1200, 1092, 1048, 1030, 1076, 1134, 1234, 1419, 1661, 1922, 2222, 2615, 2404, 2031, 1743, 1530, 1341, 1166, 1076, 1041, 1030, 1050, 1118, 1240, 1385, 1631, 1892, 2207, 2597, 2415, 2014, 1770, 1528, 1341, 1185, 1086, 1039, 1024, 1063, 1130, 1227, 1404, 1668, 1934, 2207, 2624, 2463, 2053, 1802, 1573, 1360, 1219, 1119, 1066, 1055, 1071, 1164, 1263, 1450, 1715, 1947, 2230, 2678, 2530, 2105, 1884, 1633, 1422, 1278, 1168, 1117, 1116, 1142, 1201, 1335, 1515, 1749, 2013, 2330, 2801, 2641, 2210, 1968, 1696, 1532, 1366, 1262, 1208, 1196, 1212, 1294, 1411, 1607, 1846, 2079, 2426, 2884, 2836, 2303, 2043, 1827, 1643, 1482, 1372, 1322, 1287, 1337, 1395, 1537, 1729, 1923, 2191, 2518, 3020, 3067, 2473, 2151, 1931, 1751, 1619, 1522, 1442, 1454, 1475, 1538, 1682, 1861, 2070, 2363, 2730, 3274, 3301, 2732, 2344, 2122, 1935, 1807, 1688, 1626, 1618, 1656, 1746, 1837, 2016, 2251, 2531, 2913, 3476, 3656, 3057, 2702, 2301, 2138, 2010, 1891, 1835, 1821, 1843, 1950, 2090, 2248, 2432, 2781, 3256, 3792]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3200, 2678, 2312, 2082, 1944, 1824, 1759, 1694, 1688, 1732, 1784, 1868, 1982, 2157, 2408, 2784, 3265, 2937, 2411, 2134, 1939, 1814, 1675, 1586, 1574, 1556, 1579, 1664, 1700, 1840, 2016, 2213, 2544, 2947, 2664, 2229, 1988, 1797, 1667, 1562, 1468, 1415, 1404, 1429, 1477, 1597, 1703, 1871, 2061, 2316, 2712, 2462, 2089, 1887, 1693, 1548, 1439, 1350, 1299, 1275, 1312, 1364, 1455, 1582, 1753, 1929, 2183, 2533, 2311, 1975, 1784, 1588, 1462, 1324, 1265, 1197, 1178, 1214, 1269, 1369, 1497, 1661, 1822, 2062, 2382, 2254, 1887, 1689, 1515, 1377, 1255, 1179, 1123, 1101, 1141, 1200, 1302, 1412, 1568, 1758, 1974, 2275, 2164, 1847, 1650, 1458, 1319, 1195, 1119, 1082, 1066, 1090, 1146, 1229, 1351, 1501, 1707, 1917, 2226, 2117, 1812, 1616, 1449, 1296, 1165, 1095, 1054, 1034, 1068, 1108, 1188, 1317, 1494, 1675, 1874, 2195, 2082, 1805, 1606, 1421, 1266, 1142, 1079, 1038, 1027, 1049, 1094, 1199, 1320, 1474, 1663, 1871, 2185, 2124, 1816, 1594, 1424, 1278, 1155, 1075, 1048, 1024, 1058, 1099, 1184, 1309, 1483, 1652, 1886, 2178, 2145, 1829, 1631, 1455, 1312, 1185, 1111, 1074, 1060, 1075, 1133, 1215, 1353, 1523, 1717, 1908, 2235, 2188, 1892, 1673, 1501, 1347, 1243, 1162, 1122, 1094, 1125, 1188, 1263, 1380, 1556, 1737, 1961, 2261, 2298, 1949, 1727, 1586, 1407, 1291, 1219, 1176, 1168, 1179, 1244, 1323, 1462, 1608, 1794, 2023, 2360, 2434, 2055, 1831, 1661, 1522, 1388, 1302, 1258, 1244, 1281, 1308, 1422, 1556, 1704, 1879, 2100, 2459, 2566, 2184, 1913, 1754, 1607, 1494, 1441, 1379, 1355, 1381, 1434, 1529, 1666, 1798, 1984, 2219, 2719, 2829, 2365, 2043, 1870, 1741, 1633, 1536, 1484, 1494, 1504, 1564, 1661, 1769, 1894, 2091, 2439, 2893, 3156, 2671, 2295, 2053, 1884, 1774, 1689, 1657, 1646, 1658, 1720, 1808, 1927, 2097, 2340, 2767, 3263]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3185, 2667, 2327, 2078, 1873, 1795, 1690, 1676, 1658, 1676, 1773, 1868, 1995, 2165, 2376, 2764, 3289, 2932, 2425, 2127, 1909, 1764, 1659, 1576, 1521, 1508, 1530, 1619, 1682, 1808, 1993, 2193, 2520, 3018, 2709, 2222, 1983, 1774, 1642, 1525, 1435, 1397, 1377, 1399, 1461, 1565, 1693, 1872, 2066, 2304, 2781, 2462, 2110, 1867, 1675, 1547, 1408, 1331, 1268, 1263, 1292, 1346, 1461, 1577, 1750, 1919, 2160, 2605, 2341, 1972, 1777, 1599, 1448, 1308, 1235, 1184, 1170, 1201, 1250, 1343, 1475, 1645, 1824, 2039, 2421, 2264, 1906, 1717, 1518, 1368, 1228, 1161, 1113, 1096, 1139, 1186, 1280, 1408, 1585, 1788, 2019, 2319, 2163, 1861, 1670, 1475, 1323, 1190, 1106, 1066, 1064, 1083, 1133, 1238, 1362, 1529, 1737, 1950, 2235, 2145, 1821, 1628, 1428, 1287, 1162, 1086, 1039, 1039, 1054, 1107, 1202, 1323, 1496, 1692, 1919, 2262, 2124, 1816, 1627, 1442, 1286, 1160, 1073, 1028, 1024, 1052, 1095, 1184, 1336, 1491, 1692, 1904, 2197, 2110, 1835, 1635, 1442, 1267, 1155, 1081, 1038, 1030, 1051, 1109, 1199, 1335, 1506, 1707, 1896, 2216, 2165, 1835, 1652, 1477, 1324, 1184, 1116, 1059, 1058, 1070, 1133, 1218, 1358, 1529, 1711, 1950, 2204, 2229, 1907, 1704, 1506, 1346, 1239, 1149, 1109, 1098, 1122, 1169, 1276, 1387, 1580, 1757, 1985, 2295, 2361, 1982, 1766, 1584, 1427, 1298, 1211, 1159, 1169, 1176, 1255, 1337, 1470, 1638, 1819, 2070, 2429, 2474, 2065, 1826, 1674, 1504, 1399, 1312, 1243, 1242, 1287, 1336, 1430, 1562, 1748, 1897, 2137, 2508, 2673, 2215, 1972, 1753, 1610, 1500, 1409, 1366, 1336, 1374, 1415, 1513, 1656, 1807, 1977, 2249, 2650, 2873, 2385, 2062, 1874, 1734, 1604, 1534, 1472, 1467, 1487, 1558, 1636, 1780, 1949, 2143, 2477, 2875, 3201, 2673, 2347, 2030, 1896, 1793, 1700, 1653, 1625, 1666, 1715, 1798, 1936, 2119, 2368, 2751, 3222]
| },
| "lsc_samples_blue": {
| "uCoeff": [2696, 2396, 2085, 1854, 1720, 1636, 1607, 1580, 1553, 1571, 1644, 1722, 1799, 1931, 2127, 2513, 2973, 2604, 2196, 1957, 1776, 1666, 1553, 1500, 1456, 1446, 1475, 1532, 1602, 1692, 1849, 2054, 2336, 2801, 2363, 2038, 1815, 1653, 1548, 1473, 1414, 1363, 1332, 1351, 1402, 1477, 1622, 1755, 1924, 2165, 2609, 2253, 1908, 1714, 1565, 1473, 1366, 1276, 1242, 1235, 1252, 1305, 1400, 1506, 1636, 1831, 2040, 2374, 2102, 1868, 1655, 1493, 1372, 1298, 1210, 1175, 1154, 1175, 1233, 1295, 1428, 1573, 1726, 1926, 2268, 2043, 1772, 1582, 1453, 1310, 1209, 1138, 1117, 1102, 1134, 1171, 1267, 1369, 1511, 1665, 1867, 2156, 1979, 1723, 1546, 1405, 1278, 1181, 1091, 1073, 1065, 1079, 1130, 1201, 1336, 1493, 1632, 1823, 2079, 1930, 1688, 1530, 1361, 1228, 1132, 1078, 1049, 1045, 1059, 1111, 1170, 1292, 1433, 1603, 1783, 2084, 1914, 1705, 1546, 1370, 1233, 1129, 1072, 1036, 1024, 1053, 1097, 1180, 1295, 1418, 1597, 1795, 2054, 1911, 1686, 1515, 1362, 1242, 1146, 1083, 1037, 1046, 1055, 1105, 1182, 1293, 1437, 1586, 1794, 2026, 1948, 1677, 1543, 1387, 1269, 1171, 1096, 1063, 1060, 1074, 1122, 1192, 1314, 1456, 1623, 1796, 2091, 2029, 1743, 1572, 1434, 1320, 1219, 1135, 1096, 1080, 1112, 1159, 1242, 1364, 1482, 1680, 1870, 2131, 2094, 1815, 1615, 1490, 1387, 1247, 1194, 1156, 1163, 1166, 1210, 1298, 1419, 1546, 1711, 1899, 2240, 2200, 1899, 1707, 1543, 1460, 1349, 1268, 1235, 1217, 1246, 1294, 1380, 1487, 1628, 1769, 2006, 2361, 2399, 2012, 1793, 1644, 1515, 1434, 1370, 1324, 1322, 1343, 1394, 1445, 1540, 1668, 1849, 2125, 2530, 2641, 2187, 1917, 1743, 1625, 1520, 1457, 1413, 1411, 1430, 1489, 1559, 1696, 1783, 1957, 2245, 2731, 2860, 2482, 2129, 1886, 1764, 1686, 1616, 1605, 1575, 1570, 1634, 1682, 1840, 1973, 2185, 2547, 3089]
| }
| }, {
| "name": "2592x1944_D65_70",
| "resolution": "2592x1944",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2876, 2561, 2277, 2121, 1986, 1898, 1820, 1778, 1793, 1806, 1885, 1980, 2093, 2238, 2459, 2738, 3034, 2754, 2366, 2137, 1962, 1848, 1752, 1655, 1618, 1600, 1626, 1707, 1811, 1923, 2083, 2279, 2593, 2833, 2573, 2190, 2008, 1862, 1719, 1601, 1525, 1468, 1441, 1485, 1571, 1670, 1806, 1961, 2153, 2374, 2741, 2405, 2107, 1941, 1771, 1602, 1479, 1376, 1327, 1318, 1346, 1427, 1541, 1690, 1873, 2058, 2234, 2574, 2335, 2009, 1858, 1662, 1496, 1375, 1280, 1230, 1209, 1232, 1312, 1416, 1581, 1789, 1946, 2214, 2463, 2239, 1983, 1746, 1614, 1417, 1290, 1187, 1132, 1114, 1174, 1239, 1363, 1495, 1699, 1899, 2121, 2405, 2208, 1917, 1715, 1525, 1347, 1225, 1126, 1073, 1067, 1098, 1174, 1281, 1447, 1639, 1840, 2071, 2368, 2156, 1905, 1687, 1485, 1326, 1195, 1091, 1048, 1030, 1076, 1132, 1228, 1398, 1609, 1819, 2039, 2304, 2136, 1879, 1662, 1490, 1325, 1162, 1075, 1041, 1030, 1050, 1117, 1234, 1366, 1583, 1794, 2029, 2292, 2143, 1863, 1685, 1487, 1324, 1180, 1085, 1039, 1024, 1063, 1128, 1221, 1384, 1616, 1830, 2027, 2311, 2175, 1891, 1709, 1526, 1340, 1212, 1117, 1066, 1055, 1071, 1161, 1254, 1425, 1655, 1837, 2040, 2347, 2216, 1926, 1774, 1575, 1395, 1267, 1164, 1115, 1114, 1140, 1196, 1321, 1482, 1680, 1887, 2114, 2431, 2286, 2000, 1837, 1624, 1492, 1346, 1252, 1202, 1191, 1206, 1283, 1389, 1561, 1758, 1932, 2178, 2476, 2413, 2058, 1886, 1729, 1584, 1448, 1352, 1308, 1275, 1322, 1374, 1499, 1662, 1814, 2011, 2232, 2554, 2554, 2171, 1957, 1804, 1669, 1564, 1484, 1414, 1426, 1444, 1498, 1621, 1766, 1924, 2133, 2374, 2709, 2681, 2340, 2090, 1945, 1812, 1718, 1622, 1572, 1566, 1599, 1674, 1744, 1882, 2053, 2241, 2480, 2808, 2866, 2542, 2339, 2064, 1960, 1873, 1783, 1741, 1731, 1748, 1835, 1942, 2053, 2171, 2401, 2691, 2962]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2547, 2259, 2033, 1886, 1797, 1713, 1668, 1617, 1613, 1650, 1689, 1751, 1829, 1947, 2108, 2338, 2593, 2416, 2093, 1920, 1792, 1707, 1601, 1530, 1524, 1510, 1529, 1600, 1623, 1730, 1856, 1984, 2195, 2423, 2252, 1977, 1822, 1689, 1594, 1512, 1434, 1389, 1379, 1402, 1442, 1544, 1626, 1752, 1883, 2046, 2288, 2126, 1885, 1754, 1612, 1498, 1409, 1331, 1286, 1264, 1298, 1344, 1423, 1529, 1664, 1790, 1961, 2180, 2029, 1807, 1678, 1528, 1427, 1307, 1255, 1191, 1174, 1208, 1259, 1349, 1460, 1593, 1711, 1878, 2084, 1998, 1744, 1604, 1469, 1353, 1245, 1174, 1121, 1100, 1139, 1195, 1289, 1386, 1516, 1664, 1817, 2015, 1936, 1717, 1575, 1421, 1302, 1189, 1117, 1081, 1066, 1089, 1144, 1222, 1332, 1460, 1626, 1776, 1985, 1903, 1692, 1548, 1415, 1282, 1161, 1094, 1054, 1034, 1068, 1107, 1183, 1301, 1456, 1601, 1744, 1966, 1877, 1687, 1540, 1390, 1254, 1139, 1078, 1038, 1027, 1049, 1093, 1194, 1305, 1438, 1591, 1743, 1960, 1909, 1695, 1529, 1392, 1265, 1151, 1074, 1048, 1024, 1058, 1098, 1179, 1294, 1446, 1580, 1755, 1952, 1921, 1702, 1559, 1418, 1295, 1179, 1109, 1073, 1060, 1074, 1131, 1208, 1334, 1480, 1634, 1769, 1992, 1946, 1748, 1590, 1456, 1325, 1233, 1158, 1120, 1093, 1123, 1183, 1252, 1356, 1506, 1646, 1806, 2003, 2019, 1785, 1629, 1526, 1377, 1276, 1211, 1171, 1164, 1174, 1235, 1306, 1427, 1546, 1687, 1846, 2067, 2105, 1858, 1707, 1583, 1475, 1361, 1286, 1247, 1234, 1269, 1292, 1393, 1506, 1621, 1747, 1894, 2124, 2179, 1942, 1760, 1652, 1541, 1451, 1409, 1355, 1334, 1357, 1402, 1482, 1593, 1690, 1819, 1970, 2293, 2337, 2057, 1847, 1734, 1644, 1563, 1485, 1443, 1453, 1461, 1510, 1588, 1668, 1754, 1885, 2114, 2384, 2516, 2254, 2020, 1862, 1747, 1670, 1606, 1584, 1576, 1585, 1633, 1699, 1783, 1898, 2055, 2326, 2591]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2537, 2251, 2045, 1883, 1738, 1688, 1607, 1601, 1587, 1601, 1680, 1751, 1840, 1954, 2083, 2323, 2610, 2412, 2104, 1915, 1766, 1664, 1586, 1521, 1476, 1466, 1484, 1560, 1607, 1702, 1837, 1968, 2177, 2475, 2286, 1972, 1818, 1669, 1572, 1479, 1403, 1372, 1354, 1374, 1427, 1515, 1617, 1753, 1887, 2037, 2340, 2126, 1902, 1737, 1596, 1497, 1380, 1313, 1256, 1252, 1279, 1327, 1429, 1525, 1662, 1781, 1943, 2236, 2052, 1804, 1672, 1538, 1414, 1292, 1226, 1179, 1166, 1195, 1241, 1325, 1439, 1579, 1713, 1860, 2115, 2006, 1760, 1629, 1471, 1345, 1219, 1157, 1111, 1095, 1137, 1181, 1268, 1382, 1532, 1691, 1854, 2049, 1935, 1729, 1593, 1436, 1306, 1184, 1104, 1066, 1064, 1082, 1131, 1230, 1342, 1486, 1652, 1804, 1992, 1926, 1699, 1559, 1395, 1273, 1158, 1085, 1039, 1039, 1054, 1106, 1196, 1307, 1458, 1616, 1783, 2020, 1911, 1697, 1559, 1409, 1273, 1156, 1072, 1028, 1024, 1052, 1094, 1179, 1320, 1454, 1617, 1771, 1970, 1898, 1711, 1565, 1408, 1254, 1151, 1080, 1038, 1030, 1051, 1108, 1194, 1318, 1467, 1629, 1763, 1983, 1936, 1707, 1577, 1438, 1306, 1178, 1114, 1059, 1058, 1070, 1131, 1211, 1339, 1486, 1629, 1804, 1968, 1978, 1761, 1617, 1460, 1324, 1229, 1145, 1107, 1097, 1120, 1165, 1265, 1363, 1527, 1663, 1826, 2030, 2068, 1813, 1663, 1524, 1395, 1282, 1203, 1155, 1165, 1171, 1245, 1319, 1435, 1573, 1708, 1885, 2121, 2135, 1866, 1703, 1595, 1459, 1372, 1295, 1232, 1232, 1274, 1318, 1400, 1511, 1660, 1763, 1924, 2161, 2259, 1966, 1809, 1651, 1544, 1456, 1379, 1343, 1316, 1350, 1385, 1468, 1584, 1697, 1813, 1993, 2242, 2369, 2073, 1862, 1737, 1638, 1538, 1483, 1432, 1428, 1445, 1505, 1566, 1678, 1800, 1927, 2144, 2371, 2548, 2255, 2061, 1844, 1757, 1686, 1616, 1580, 1557, 1592, 1629, 1690, 1790, 1916, 2077, 2314, 2563]
| },
| "lsc_samples_blue": {
| "uCoeff": [2194, 2048, 1855, 1700, 1609, 1551, 1534, 1516, 1493, 1508, 1567, 1625, 1675, 1763, 1888, 2136, 2388, 2174, 1927, 1777, 1655, 1579, 1493, 1453, 1417, 1409, 1434, 1482, 1536, 1602, 1716, 1856, 2035, 2317, 2027, 1826, 1679, 1565, 1489, 1432, 1384, 1340, 1312, 1329, 1373, 1435, 1554, 1653, 1769, 1927, 2211, 1966, 1739, 1608, 1499, 1430, 1341, 1261, 1231, 1225, 1241, 1289, 1372, 1460, 1562, 1707, 1846, 2059, 1866, 1719, 1567, 1443, 1344, 1282, 1202, 1170, 1150, 1170, 1224, 1279, 1396, 1514, 1628, 1767, 1995, 1831, 1648, 1511, 1412, 1291, 1201, 1135, 1115, 1101, 1132, 1167, 1256, 1346, 1465, 1583, 1727, 1920, 1788, 1613, 1484, 1372, 1263, 1175, 1090, 1072, 1065, 1078, 1128, 1195, 1318, 1453, 1559, 1697, 1868, 1753, 1587, 1472, 1334, 1217, 1129, 1077, 1049, 1045, 1059, 1110, 1165, 1278, 1400, 1537, 1667, 1877, 1741, 1602, 1487, 1343, 1222, 1126, 1071, 1036, 1024, 1053, 1096, 1175, 1281, 1387, 1533, 1679, 1854, 1738, 1585, 1459, 1335, 1230, 1142, 1082, 1037, 1046, 1055, 1104, 1177, 1279, 1404, 1522, 1677, 1830, 1763, 1574, 1481, 1356, 1255, 1166, 1095, 1063, 1060, 1073, 1120, 1186, 1297, 1419, 1552, 1675, 1877, 1820, 1624, 1502, 1395, 1300, 1210, 1132, 1095, 1079, 1110, 1155, 1232, 1341, 1439, 1596, 1730, 1901, 1859, 1675, 1533, 1440, 1358, 1234, 1187, 1152, 1159, 1161, 1202, 1282, 1388, 1490, 1615, 1744, 1973, 1925, 1732, 1602, 1480, 1419, 1325, 1254, 1225, 1208, 1235, 1278, 1354, 1443, 1555, 1654, 1818, 2049, 2054, 1806, 1661, 1557, 1459, 1396, 1343, 1304, 1303, 1321, 1366, 1406, 1482, 1578, 1707, 1895, 2152, 2201, 1920, 1745, 1627, 1544, 1463, 1414, 1378, 1377, 1393, 1443, 1498, 1605, 1661, 1777, 1965, 2266, 2309, 2113, 1890, 1726, 1646, 1594, 1542, 1538, 1513, 1507, 1558, 1590, 1710, 1797, 1934, 2161, 2470]
| }
| }, {
| "name": "2592x1944_D75_100",
| "resolution": "2592x1944",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3549, 2936, 2572, 2282, 2140, 1965, 1921, 1869, 1840, 1871, 1979, 2084, 2236, 2528, 2775, 3281, 3794, 3216, 2616, 2369, 2078, 1923, 1777, 1672, 1637, 1654, 1684, 1757, 1881, 2036, 2253, 2531, 2902, 3430, 2910, 2452, 2226, 1930, 1782, 1634, 1550, 1475, 1478, 1517, 1586, 1719, 1879, 2071, 2330, 2649, 3134, 2734, 2295, 2016, 1801, 1653, 1494, 1378, 1344, 1329, 1350, 1437, 1577, 1722, 1957, 2170, 2505, 2995, 2663, 2174, 1938, 1696, 1520, 1406, 1293, 1214, 1209, 1249, 1325, 1473, 1619, 1858, 2082, 2383, 2895, 2523, 2071, 1794, 1636, 1439, 1291, 1190, 1130, 1124, 1173, 1243, 1363, 1519, 1759, 1999, 2305, 2733, 2442, 2031, 1800, 1564, 1377, 1240, 1145, 1090, 1063, 1103, 1165, 1286, 1457, 1675, 1923, 2258, 2643, 2377, 1962, 1749, 1519, 1332, 1190, 1091, 1042, 1044, 1065, 1134, 1236, 1428, 1645, 1865, 2216, 2610, 2356, 1978, 1714, 1515, 1312, 1174, 1082, 1051, 1024, 1065, 1130, 1236, 1387, 1628, 1835, 2143, 2525, 2373, 1975, 1754, 1514, 1325, 1185, 1089, 1044, 1032, 1062, 1130, 1253, 1426, 1625, 1876, 2212, 2591, 2466, 1999, 1773, 1556, 1373, 1225, 1135, 1072, 1062, 1089, 1162, 1270, 1462, 1677, 1911, 2216, 2558, 2457, 2069, 1844, 1593, 1419, 1272, 1182, 1120, 1110, 1143, 1222, 1346, 1532, 1728, 1956, 2274, 2718, 2648, 2219, 1931, 1683, 1520, 1360, 1251, 1209, 1190, 1220, 1289, 1411, 1595, 1827, 2048, 2365, 2912, 2774, 2274, 2010, 1777, 1609, 1483, 1373, 1320, 1292, 1330, 1403, 1542, 1724, 1912, 2164, 2453, 3081, 2943, 2455, 2099, 1898, 1738, 1615, 1504, 1454, 1409, 1478, 1577, 1677, 1854, 2018, 2314, 2601, 3271, 3189, 2583, 2329, 2104, 1910, 1769, 1690, 1584, 1587, 1636, 1719, 1835, 2004, 2229, 2412, 2842, 3371, 3683, 2999, 2544, 2286, 2127, 1940, 1878, 1797, 1810, 1809, 1900, 2019, 2222, 2453, 2760, 3227, 3711]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3125, 2584, 2298, 2098, 1878, 1798, 1719, 1673, 1666, 1704, 1740, 1848, 1971, 2140, 2342, 2700, 3157, 2853, 2385, 2084, 1893, 1779, 1644, 1584, 1545, 1514, 1539, 1621, 1687, 1814, 1964, 2167, 2515, 2939, 2616, 2218, 1937, 1783, 1628, 1527, 1460, 1397, 1388, 1416, 1460, 1558, 1679, 1851, 2045, 2283, 2686, 2436, 2059, 1828, 1659, 1520, 1406, 1322, 1279, 1267, 1281, 1361, 1459, 1589, 1735, 1912, 2119, 2524, 2300, 1944, 1748, 1561, 1432, 1298, 1230, 1187, 1171, 1196, 1263, 1349, 1476, 1636, 1806, 2051, 2368, 2230, 1863, 1657, 1494, 1364, 1235, 1160, 1110, 1097, 1138, 1186, 1278, 1405, 1551, 1732, 1973, 2216, 2127, 1808, 1620, 1451, 1302, 1183, 1111, 1063, 1062, 1078, 1129, 1220, 1346, 1502, 1686, 1876, 2206, 2078, 1792, 1593, 1420, 1259, 1136, 1079, 1036, 1028, 1051, 1101, 1181, 1292, 1488, 1663, 1858, 2146, 2055, 1772, 1582, 1402, 1251, 1141, 1070, 1028, 1024, 1041, 1084, 1176, 1310, 1454, 1643, 1859, 2138, 2064, 1761, 1583, 1396, 1274, 1149, 1068, 1058, 1030, 1050, 1110, 1181, 1312, 1469, 1654, 1883, 2174, 2091, 1809, 1588, 1428, 1294, 1172, 1115, 1064, 1048, 1069, 1131, 1205, 1337, 1485, 1688, 1872, 2163, 2163, 1836, 1635, 1495, 1330, 1210, 1145, 1114, 1087, 1106, 1159, 1241, 1361, 1546, 1720, 1920, 2247, 2225, 1921, 1693, 1545, 1397, 1280, 1206, 1157, 1151, 1182, 1224, 1308, 1450, 1604, 1767, 2000, 2313, 2355, 1993, 1787, 1638, 1494, 1375, 1287, 1256, 1231, 1259, 1312, 1418, 1534, 1676, 1840, 2069, 2432, 2526, 2154, 1888, 1719, 1583, 1476, 1391, 1359, 1325, 1364, 1408, 1513, 1636, 1752, 1939, 2176, 2627, 2710, 2349, 2032, 1829, 1695, 1593, 1522, 1476, 1481, 1477, 1543, 1619, 1742, 1855, 2096, 2394, 2883, 3088, 2593, 2263, 2019, 1850, 1758, 1680, 1635, 1615, 1636, 1699, 1786, 1915, 2039, 2267, 2664, 3165]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3170, 2584, 2240, 2055, 1874, 1791, 1691, 1662, 1644, 1663, 1715, 1807, 1956, 2112, 2352, 2719, 3228, 2911, 2382, 2078, 1915, 1737, 1654, 1561, 1503, 1507, 1533, 1609, 1686, 1800, 1947, 2178, 2500, 2959, 2649, 2218, 1934, 1749, 1642, 1515, 1424, 1372, 1359, 1385, 1459, 1537, 1667, 1825, 2022, 2295, 2705, 2466, 2080, 1842, 1662, 1514, 1404, 1328, 1270, 1250, 1297, 1361, 1433, 1572, 1736, 1921, 2148, 2534, 2301, 1957, 1744, 1567, 1433, 1307, 1207, 1176, 1149, 1195, 1259, 1345, 1480, 1649, 1826, 2051, 2378, 2176, 1895, 1700, 1507, 1376, 1242, 1149, 1105, 1098, 1124, 1182, 1279, 1412, 1576, 1777, 1997, 2300, 2141, 1851, 1655, 1458, 1310, 1174, 1102, 1073, 1056, 1078, 1139, 1223, 1365, 1531, 1728, 1922, 2202, 2121, 1833, 1589, 1429, 1281, 1153, 1076, 1048, 1032, 1060, 1106, 1200, 1337, 1499, 1671, 1927, 2185, 2100, 1814, 1601, 1433, 1269, 1149, 1081, 1033, 1024, 1046, 1096, 1185, 1308, 1495, 1682, 1875, 2189, 2102, 1806, 1604, 1425, 1269, 1148, 1072, 1040, 1028, 1060, 1093, 1199, 1328, 1507, 1678, 1912, 2198, 2144, 1818, 1631, 1451, 1304, 1186, 1107, 1060, 1061, 1079, 1132, 1211, 1354, 1510, 1716, 1940, 2180, 2231, 1880, 1677, 1501, 1345, 1223, 1152, 1107, 1102, 1110, 1168, 1248, 1378, 1580, 1739, 1979, 2289, 2332, 1926, 1754, 1560, 1416, 1299, 1206, 1166, 1155, 1172, 1245, 1338, 1458, 1606, 1798, 2027, 2364, 2433, 2043, 1801, 1621, 1510, 1388, 1306, 1249, 1237, 1271, 1324, 1411, 1552, 1695, 1898, 2159, 2502, 2651, 2175, 1920, 1738, 1609, 1476, 1388, 1366, 1345, 1369, 1434, 1509, 1637, 1767, 1978, 2232, 2699, 2866, 2358, 2068, 1873, 1701, 1605, 1513, 1467, 1463, 1485, 1565, 1629, 1751, 1886, 2118, 2451, 2869, 3108, 2649, 2282, 2010, 1907, 1738, 1665, 1640, 1626, 1650, 1734, 1784, 1930, 2114, 2347, 2735, 3203]
| },
| "lsc_samples_blue": {
| "uCoeff": [2735, 2332, 2046, 1848, 1690, 1631, 1556, 1519, 1513, 1549, 1604, 1669, 1759, 1909, 2124, 2480, 2892, 2517, 2157, 1910, 1745, 1608, 1525, 1491, 1425, 1411, 1442, 1491, 1592, 1683, 1791, 2007, 2248, 2683, 2380, 1989, 1772, 1635, 1518, 1434, 1360, 1318, 1302, 1316, 1400, 1459, 1579, 1688, 1856, 2109, 2453, 2198, 1853, 1691, 1518, 1430, 1336, 1275, 1223, 1225, 1228, 1295, 1366, 1482, 1604, 1752, 1932, 2371, 2054, 1797, 1607, 1473, 1348, 1259, 1190, 1145, 1133, 1154, 1224, 1289, 1391, 1530, 1706, 1909, 2183, 1945, 1696, 1550, 1410, 1278, 1189, 1125, 1086, 1086, 1118, 1162, 1246, 1350, 1491, 1640, 1813, 2099, 1955, 1693, 1526, 1371, 1247, 1150, 1081, 1063, 1048, 1057, 1113, 1186, 1318, 1461, 1606, 1793, 2072, 1914, 1642, 1480, 1341, 1225, 1123, 1059, 1035, 1038, 1054, 1094, 1168, 1278, 1424, 1569, 1753, 2006, 1837, 1643, 1485, 1347, 1226, 1116, 1064, 1025, 1024, 1043, 1087, 1154, 1251, 1397, 1549, 1772, 2001, 1873, 1682, 1494, 1348, 1239, 1142, 1058, 1033, 1024, 1039, 1097, 1165, 1273, 1408, 1544, 1742, 2028, 1924, 1687, 1536, 1355, 1229, 1164, 1091, 1069, 1044, 1069, 1112, 1183, 1296, 1424, 1599, 1771, 2058, 1959, 1737, 1563, 1435, 1286, 1195, 1124, 1101, 1084, 1095, 1159, 1225, 1338, 1468, 1629, 1790, 2118, 2040, 1766, 1578, 1475, 1344, 1244, 1169, 1134, 1140, 1136, 1193, 1271, 1407, 1525, 1667, 1872, 2207, 2200, 1864, 1657, 1519, 1415, 1316, 1252, 1211, 1200, 1226, 1280, 1344, 1450, 1584, 1722, 1922, 2293, 2331, 1964, 1773, 1590, 1500, 1419, 1327, 1316, 1295, 1309, 1363, 1444, 1536, 1642, 1837, 2097, 2505, 2550, 2163, 1894, 1717, 1597, 1497, 1454, 1397, 1398, 1411, 1458, 1537, 1657, 1730, 1917, 2188, 2637, 2812, 2399, 2070, 1882, 1720, 1642, 1571, 1533, 1538, 1545, 1621, 1669, 1800, 1928, 2157, 2468, 2920]
| }
| }, {
| "name": "2592x1944_D75_70",
| "resolution": "2592x1944",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2792, 2452, 2237, 2049, 1962, 1834, 1809, 1771, 1748, 1773, 1860, 1936, 2043, 2249, 2396, 2709, 2963, 2619, 2251, 2110, 1908, 1802, 1691, 1608, 1582, 1599, 1625, 1684, 1783, 1899, 2055, 2241, 2471, 2775, 2436, 2154, 2020, 1803, 1696, 1578, 1510, 1444, 1449, 1484, 1543, 1655, 1782, 1925, 2106, 2310, 2604, 2335, 2052, 1863, 1706, 1593, 1460, 1358, 1329, 1315, 1334, 1413, 1536, 1656, 1843, 1994, 2222, 2535, 2304, 1971, 1811, 1624, 1481, 1384, 1282, 1208, 1204, 1242, 1312, 1447, 1572, 1769, 1935, 2143, 2485, 2211, 1898, 1696, 1578, 1411, 1279, 1185, 1128, 1122, 1170, 1237, 1348, 1486, 1689, 1875, 2093, 2377, 2158, 1873, 1707, 1517, 1356, 1232, 1143, 1089, 1063, 1102, 1162, 1276, 1432, 1619, 1816, 2064, 2319, 2113, 1819, 1666, 1479, 1316, 1185, 1090, 1042, 1044, 1065, 1132, 1229, 1407, 1595, 1769, 2034, 2300, 2098, 1834, 1636, 1476, 1297, 1170, 1081, 1051, 1024, 1065, 1129, 1230, 1368, 1580, 1744, 1974, 2234, 2109, 1830, 1671, 1474, 1309, 1180, 1088, 1044, 1032, 1062, 1128, 1246, 1405, 1576, 1779, 2031, 2285, 2177, 1846, 1684, 1510, 1353, 1218, 1133, 1071, 1062, 1088, 1159, 1261, 1436, 1621, 1805, 2028, 2251, 2159, 1896, 1739, 1539, 1392, 1261, 1177, 1118, 1109, 1141, 1216, 1331, 1498, 1661, 1837, 2067, 2365, 2292, 2008, 1805, 1613, 1481, 1341, 1241, 1203, 1185, 1214, 1278, 1389, 1550, 1741, 1905, 2128, 2498, 2365, 2035, 1858, 1685, 1554, 1449, 1353, 1306, 1280, 1315, 1381, 1504, 1658, 1804, 1989, 2180, 2600, 2461, 2156, 1914, 1776, 1657, 1560, 1467, 1425, 1384, 1447, 1534, 1617, 1760, 1879, 2092, 2272, 2707, 2599, 2225, 2078, 1930, 1790, 1684, 1624, 1534, 1538, 1581, 1650, 1742, 1872, 2035, 2145, 2425, 2732, 2885, 2499, 2215, 2052, 1951, 1813, 1772, 1708, 1722, 1718, 1791, 1881, 2031, 2188, 2384, 2669, 2905]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2495, 2189, 2022, 1899, 1742, 1690, 1633, 1598, 1594, 1625, 1651, 1733, 1820, 1933, 2057, 2275, 2517, 2355, 2073, 1880, 1753, 1677, 1573, 1528, 1498, 1471, 1493, 1562, 1611, 1707, 1812, 1947, 2173, 2417, 2216, 1969, 1780, 1677, 1560, 1481, 1426, 1372, 1364, 1389, 1426, 1509, 1605, 1735, 1870, 2020, 2269, 2106, 1861, 1704, 1582, 1473, 1378, 1305, 1267, 1256, 1269, 1342, 1427, 1536, 1648, 1775, 1910, 2174, 2020, 1781, 1647, 1504, 1400, 1282, 1221, 1182, 1167, 1190, 1253, 1330, 1440, 1571, 1697, 1869, 2073, 1979, 1724, 1576, 1449, 1341, 1225, 1156, 1108, 1096, 1136, 1181, 1267, 1379, 1501, 1642, 1816, 1968, 1906, 1685, 1549, 1414, 1286, 1177, 1109, 1063, 1062, 1077, 1127, 1213, 1327, 1461, 1607, 1742, 1969, 1872, 1675, 1528, 1388, 1247, 1133, 1078, 1036, 1028, 1051, 1100, 1176, 1278, 1450, 1590, 1731, 1927, 1855, 1659, 1519, 1372, 1239, 1138, 1069, 1028, 1024, 1041, 1083, 1172, 1295, 1420, 1573, 1733, 1922, 1861, 1649, 1519, 1366, 1261, 1145, 1067, 1058, 1030, 1050, 1109, 1176, 1297, 1433, 1582, 1752, 1949, 1877, 1685, 1521, 1393, 1278, 1167, 1113, 1064, 1048, 1069, 1129, 1198, 1319, 1445, 1609, 1739, 1935, 1926, 1702, 1557, 1450, 1309, 1202, 1141, 1112, 1086, 1104, 1155, 1231, 1338, 1497, 1631, 1772, 1992, 1962, 1762, 1600, 1489, 1367, 1265, 1198, 1153, 1147, 1177, 1216, 1292, 1416, 1542, 1664, 1827, 2030, 2044, 1808, 1670, 1563, 1449, 1349, 1272, 1245, 1222, 1248, 1295, 1389, 1486, 1597, 1714, 1869, 2103, 2149, 1918, 1740, 1622, 1520, 1434, 1363, 1336, 1306, 1341, 1378, 1468, 1567, 1650, 1782, 1936, 2224, 2251, 2045, 1838, 1699, 1604, 1528, 1473, 1435, 1441, 1436, 1492, 1551, 1645, 1721, 1889, 2080, 2377, 2469, 2196, 1995, 1835, 1718, 1656, 1598, 1564, 1548, 1565, 1615, 1680, 1773, 1851, 1998, 2249, 2523]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2526, 2189, 1977, 1864, 1738, 1684, 1608, 1588, 1574, 1589, 1629, 1698, 1807, 1910, 2064, 2290, 2567, 2397, 2071, 1875, 1771, 1641, 1582, 1508, 1460, 1465, 1487, 1551, 1610, 1695, 1798, 1956, 2161, 2432, 2241, 1969, 1778, 1648, 1572, 1470, 1393, 1348, 1337, 1361, 1426, 1490, 1594, 1713, 1851, 2030, 2283, 2129, 1878, 1716, 1584, 1468, 1376, 1310, 1258, 1240, 1284, 1342, 1403, 1520, 1649, 1783, 1933, 2181, 2021, 1792, 1644, 1509, 1401, 1291, 1199, 1171, 1145, 1189, 1249, 1327, 1444, 1582, 1714, 1869, 2081, 1936, 1751, 1614, 1461, 1352, 1232, 1145, 1103, 1097, 1122, 1177, 1267, 1386, 1524, 1681, 1836, 2034, 1917, 1721, 1580, 1421, 1293, 1169, 1100, 1072, 1056, 1077, 1137, 1216, 1345, 1487, 1644, 1781, 1966, 1907, 1710, 1524, 1396, 1267, 1149, 1075, 1048, 1032, 1060, 1105, 1195, 1320, 1461, 1597, 1789, 1958, 1891, 1695, 1536, 1401, 1256, 1145, 1080, 1033, 1024, 1046, 1095, 1180, 1293, 1458, 1608, 1747, 1963, 1891, 1687, 1538, 1393, 1256, 1144, 1071, 1040, 1028, 1060, 1092, 1194, 1312, 1468, 1603, 1777, 1968, 1920, 1693, 1559, 1414, 1288, 1180, 1105, 1060, 1061, 1078, 1130, 1204, 1335, 1468, 1633, 1796, 1948, 1980, 1738, 1594, 1456, 1323, 1214, 1148, 1105, 1101, 1108, 1164, 1238, 1354, 1527, 1648, 1821, 2026, 2045, 1767, 1652, 1503, 1385, 1283, 1198, 1161, 1151, 1167, 1236, 1320, 1424, 1544, 1690, 1850, 2070, 2104, 1848, 1681, 1548, 1464, 1361, 1290, 1238, 1227, 1259, 1307, 1383, 1502, 1613, 1763, 1942, 2157, 2242, 1935, 1766, 1638, 1543, 1434, 1360, 1343, 1324, 1346, 1402, 1464, 1568, 1663, 1814, 1980, 2278, 2364, 2052, 1867, 1736, 1610, 1539, 1464, 1427, 1425, 1443, 1511, 1560, 1653, 1747, 1907, 2124, 2367, 2483, 2237, 2010, 1827, 1766, 1639, 1585, 1569, 1558, 1578, 1646, 1678, 1785, 1912, 2061, 2302, 2549]
| },
| "lsc_samples_blue": {
| "uCoeff": [2222, 2001, 1825, 1695, 1584, 1547, 1490, 1462, 1458, 1488, 1532, 1579, 1642, 1745, 1886, 2111, 2332, 2110, 1897, 1739, 1629, 1529, 1468, 1445, 1389, 1377, 1404, 1445, 1527, 1594, 1667, 1818, 1967, 2231, 2039, 1788, 1644, 1550, 1462, 1396, 1334, 1298, 1284, 1296, 1371, 1419, 1516, 1595, 1713, 1883, 2094, 1924, 1694, 1588, 1458, 1392, 1313, 1261, 1213, 1216, 1218, 1279, 1341, 1439, 1533, 1640, 1758, 2056, 1828, 1660, 1526, 1425, 1322, 1245, 1183, 1141, 1130, 1150, 1216, 1274, 1362, 1476, 1611, 1753, 1929, 1753, 1585, 1483, 1373, 1261, 1182, 1122, 1085, 1085, 1116, 1158, 1236, 1328, 1447, 1561, 1682, 1875, 1769, 1588, 1466, 1341, 1234, 1145, 1080, 1063, 1048, 1057, 1111, 1180, 1301, 1423, 1537, 1672, 1862, 1740, 1548, 1428, 1315, 1214, 1120, 1058, 1035, 1038, 1054, 1093, 1164, 1265, 1392, 1507, 1642, 1814, 1679, 1550, 1433, 1321, 1216, 1113, 1063, 1025, 1024, 1043, 1086, 1150, 1239, 1367, 1490, 1659, 1812, 1707, 1582, 1440, 1322, 1228, 1138, 1057, 1033, 1024, 1039, 1096, 1161, 1260, 1377, 1485, 1633, 1832, 1744, 1583, 1475, 1326, 1217, 1159, 1090, 1069, 1044, 1069, 1110, 1177, 1280, 1390, 1530, 1653, 1851, 1764, 1619, 1494, 1396, 1268, 1187, 1121, 1099, 1083, 1094, 1155, 1216, 1317, 1426, 1552, 1663, 1890, 1817, 1635, 1501, 1427, 1319, 1231, 1163, 1130, 1137, 1132, 1186, 1257, 1377, 1472, 1578, 1722, 1948, 1925, 1703, 1560, 1459, 1378, 1295, 1239, 1202, 1192, 1216, 1265, 1321, 1410, 1516, 1615, 1750, 1997, 2003, 1768, 1644, 1511, 1446, 1383, 1304, 1296, 1277, 1290, 1337, 1405, 1478, 1556, 1697, 1873, 2133, 2134, 1902, 1726, 1605, 1520, 1443, 1411, 1363, 1365, 1376, 1415, 1478, 1572, 1616, 1745, 1921, 2198, 2276, 2051, 1844, 1723, 1609, 1556, 1503, 1474, 1480, 1485, 1547, 1579, 1676, 1760, 1912, 2102, 2351]
| }
| }, {
| "name": "2592x1944_HZ_100",
| "resolution": "2592x1944",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4361, 3636, 3102, 2760, 2558, 2342, 2211, 2168, 2133, 2195, 2302, 2465, 2712, 3043, 3401, 3835, 4654, 4037, 3299, 2840, 2531, 2276, 2073, 1940, 1865, 1832, 1872, 2004, 2177, 2402, 2666, 3048, 3510, 4178, 3658, 2992, 2619, 2301, 2035, 1840, 1713, 1617, 1591, 1656, 1753, 1926, 2167, 2474, 2818, 3198, 3802, 3360, 2776, 2418, 2105, 1847, 1653, 1513, 1408, 1403, 1452, 1561, 1725, 1943, 2258, 2588, 2983, 3682, 3145, 2587, 2248, 1924, 1673, 1494, 1350, 1285, 1264, 1297, 1396, 1551, 1776, 2069, 2392, 2833, 3395, 3003, 2473, 2151, 1841, 1560, 1373, 1239, 1175, 1149, 1200, 1283, 1452, 1645, 1973, 2290, 2721, 3226, 2951, 2399, 2044, 1716, 1484, 1289, 1152, 1097, 1069, 1118, 1197, 1346, 1556, 1862, 2185, 2579, 3138, 2861, 2372, 2005, 1690, 1416, 1245, 1114, 1044, 1037, 1076, 1164, 1295, 1496, 1806, 2137, 2578, 3080, 2815, 2332, 1958, 1648, 1400, 1220, 1089, 1034, 1024, 1054, 1138, 1267, 1491, 1757, 2109, 2474, 3033, 2857, 2324, 2005, 1670, 1426, 1229, 1110, 1046, 1031, 1066, 1137, 1271, 1493, 1784, 2142, 2526, 3109, 2943, 2386, 2027, 1711, 1451, 1274, 1130, 1081, 1062, 1088, 1190, 1314, 1545, 1839, 2200, 2594, 3207, 2984, 2470, 2113, 1791, 1514, 1354, 1203, 1139, 1132, 1156, 1237, 1400, 1619, 1921, 2287, 2670, 3228, 3177, 2548, 2214, 1908, 1642, 1449, 1312, 1244, 1223, 1274, 1360, 1503, 1732, 2010, 2386, 2812, 3365, 3262, 2682, 2342, 2049, 1796, 1580, 1465, 1378, 1366, 1401, 1498, 1660, 1887, 2167, 2532, 2948, 3598, 3633, 2930, 2521, 2204, 1973, 1771, 1639, 1548, 1538, 1576, 1681, 1845, 2078, 2346, 2713, 3142, 3841, 3892, 3146, 2726, 2432, 2228, 2000, 1860, 1765, 1734, 1799, 1912, 2062, 2294, 2591, 2905, 3413, 4073, 4258, 3577, 3071, 2730, 2476, 2279, 2144, 2060, 2014, 2119, 2160, 2392, 2607, 2880, 3268, 3736, 4426]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3532, 2945, 2494, 2300, 2126, 2015, 1885, 1869, 1869, 1910, 1935, 2058, 2161, 2406, 2623, 2979, 3514, 3161, 2653, 2349, 2108, 1947, 1799, 1741, 1696, 1683, 1689, 1775, 1846, 2006, 2166, 2402, 2703, 3262, 2925, 2419, 2116, 1923, 1807, 1702, 1544, 1525, 1467, 1524, 1593, 1697, 1820, 2016, 2245, 2518, 2990, 2713, 2259, 1997, 1805, 1645, 1516, 1415, 1356, 1344, 1360, 1446, 1548, 1696, 1907, 2072, 2311, 2853, 2568, 2138, 1878, 1693, 1523, 1377, 1314, 1245, 1215, 1258, 1317, 1428, 1561, 1735, 1976, 2218, 2600, 2467, 2014, 1783, 1621, 1430, 1302, 1228, 1136, 1137, 1163, 1218, 1341, 1484, 1664, 1864, 2094, 2462, 2330, 1959, 1736, 1570, 1368, 1238, 1146, 1088, 1083, 1098, 1164, 1254, 1403, 1591, 1787, 2045, 2404, 2262, 1951, 1724, 1512, 1329, 1204, 1098, 1054, 1038, 1069, 1122, 1210, 1353, 1546, 1744, 1986, 2358, 2277, 1897, 1671, 1478, 1302, 1168, 1100, 1033, 1024, 1039, 1101, 1209, 1359, 1526, 1745, 1983, 2283, 2299, 1908, 1699, 1492, 1336, 1186, 1098, 1052, 1032, 1046, 1124, 1201, 1341, 1531, 1726, 1980, 2321, 2295, 1969, 1720, 1522, 1371, 1210, 1130, 1081, 1068, 1078, 1157, 1241, 1376, 1573, 1801, 2034, 2379, 2399, 2017, 1767, 1584, 1413, 1278, 1176, 1143, 1115, 1141, 1201, 1292, 1420, 1625, 1838, 2083, 2393, 2515, 2080, 1853, 1678, 1498, 1361, 1261, 1204, 1196, 1204, 1272, 1384, 1516, 1707, 1894, 2162, 2534, 2612, 2164, 1925, 1768, 1588, 1459, 1359, 1309, 1292, 1331, 1371, 1487, 1659, 1790, 1968, 2263, 2646, 2838, 2322, 2062, 1890, 1727, 1589, 1505, 1435, 1414, 1473, 1518, 1599, 1788, 1924, 2092, 2373, 2898, 3096, 2556, 2233, 2017, 1838, 1730, 1661, 1588, 1593, 1599, 1674, 1771, 1901, 2028, 2307, 2635, 3053, 3315, 2886, 2468, 2213, 2064, 1939, 1864, 1814, 1784, 1815, 1905, 1928, 2116, 2247, 2537, 2926, 3410]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3585, 2948, 2554, 2284, 2123, 1946, 1822, 1791, 1749, 1811, 1860, 1999, 2189, 2322, 2617, 2984, 3623, 3258, 2636, 2299, 2120, 1900, 1764, 1677, 1632, 1593, 1610, 1696, 1797, 1980, 2205, 2400, 2828, 3257, 3022, 2442, 2136, 1944, 1775, 1613, 1508, 1464, 1446, 1469, 1574, 1668, 1823, 2016, 2252, 2564, 3096, 2747, 2276, 2037, 1827, 1646, 1497, 1408, 1316, 1318, 1335, 1440, 1531, 1697, 1910, 2123, 2410, 2864, 2596, 2191, 1968, 1688, 1512, 1388, 1274, 1233, 1191, 1237, 1307, 1422, 1578, 1826, 1997, 2318, 2703, 2502, 2107, 1830, 1630, 1453, 1286, 1215, 1141, 1124, 1154, 1242, 1338, 1523, 1708, 1977, 2192, 2577, 2413, 2012, 1784, 1580, 1394, 1241, 1130, 1090, 1078, 1099, 1177, 1275, 1439, 1650, 1905, 2122, 2516, 2370, 2006, 1768, 1527, 1338, 1196, 1106, 1061, 1043, 1073, 1135, 1230, 1409, 1618, 1849, 2094, 2494, 2304, 1973, 1759, 1523, 1348, 1187, 1092, 1047, 1024, 1071, 1135, 1242, 1386, 1589, 1843, 2121, 2466, 2306, 2003, 1762, 1517, 1338, 1176, 1094, 1059, 1046, 1069, 1137, 1251, 1409, 1610, 1843, 2124, 2496, 2391, 1989, 1781, 1583, 1387, 1232, 1135, 1064, 1060, 1093, 1170, 1277, 1429, 1656, 1870, 2185, 2453, 2494, 2068, 1825, 1620, 1432, 1279, 1191, 1142, 1113, 1144, 1214, 1338, 1494, 1729, 1928, 2190, 2552, 2657, 2167, 1920, 1685, 1514, 1365, 1252, 1198, 1189, 1219, 1293, 1402, 1568, 1770, 2001, 2306, 2683, 2722, 2252, 1979, 1774, 1619, 1477, 1356, 1302, 1271, 1327, 1396, 1533, 1661, 1860, 2086, 2307, 2795, 2962, 2422, 2126, 1887, 1725, 1571, 1478, 1433, 1397, 1452, 1521, 1629, 1762, 1975, 2158, 2513, 2970, 3214, 2585, 2232, 2000, 1839, 1736, 1610, 1548, 1523, 1556, 1644, 1764, 1903, 2100, 2320, 2712, 3195, 3510, 2864, 2524, 2200, 2018, 1868, 1803, 1750, 1733, 1767, 1843, 1956, 2079, 2341, 2586, 3009, 3654]
| },
| "lsc_samples_blue": {
| "uCoeff": [2938, 2376, 2177, 1974, 1785, 1767, 1685, 1648, 1582, 1621, 1715, 1780, 1915, 2007, 2337, 2617, 3050, 2683, 2205, 2023, 1805, 1682, 1621, 1575, 1503, 1531, 1517, 1616, 1690, 1813, 1935, 2123, 2475, 2959, 2381, 2098, 1909, 1679, 1625, 1500, 1434, 1393, 1373, 1422, 1455, 1592, 1684, 1848, 2054, 2270, 2736, 2259, 1953, 1761, 1650, 1492, 1438, 1326, 1304, 1253, 1309, 1359, 1474, 1574, 1756, 1916, 2145, 2529, 2145, 1894, 1723, 1535, 1413, 1330, 1225, 1181, 1168, 1219, 1276, 1382, 1506, 1674, 1862, 2017, 2490, 2086, 1831, 1651, 1512, 1362, 1243, 1167, 1106, 1088, 1151, 1189, 1308, 1448, 1630, 1783, 1992, 2294, 2058, 1816, 1602, 1420, 1314, 1185, 1107, 1066, 1041, 1089, 1140, 1239, 1373, 1575, 1793, 1960, 2264, 1990, 1754, 1582, 1428, 1288, 1156, 1085, 1042, 1029, 1059, 1114, 1210, 1379, 1595, 1690, 1949, 2217, 1969, 1776, 1563, 1414, 1242, 1134, 1080, 1034, 1024, 1068, 1122, 1224, 1347, 1564, 1748, 1992, 2261, 2027, 1794, 1592, 1430, 1282, 1148, 1061, 1025, 1033, 1056, 1109, 1232, 1366, 1534, 1679, 1911, 2113, 2003, 1762, 1648, 1434, 1325, 1210, 1106, 1059, 1043, 1064, 1128, 1251, 1387, 1549, 1724, 1992, 2249, 2059, 1834, 1636, 1503, 1384, 1245, 1173, 1105, 1100, 1131, 1205, 1330, 1450, 1606, 1789, 1995, 2303, 2134, 1864, 1675, 1565, 1420, 1302, 1226, 1210, 1192, 1208, 1275, 1344, 1519, 1671, 1845, 2111, 2441, 2257, 2000, 1791, 1649, 1518, 1392, 1332, 1263, 1273, 1293, 1348, 1423, 1607, 1715, 1892, 2139, 2458, 2514, 2158, 1892, 1684, 1604, 1488, 1452, 1387, 1360, 1417, 1466, 1569, 1667, 1864, 1974, 2266, 2726, 2708, 2328, 2027, 1816, 1730, 1618, 1529, 1500, 1493, 1524, 1563, 1634, 1770, 1887, 2113, 2432, 2919, 3010, 2555, 2201, 2068, 1849, 1815, 1677, 1665, 1663, 1669, 1675, 1788, 1925, 2115, 2277, 2606, 3166]
| }
| }, {
| "name": "2592x1944_HZ_70",
| "resolution": "2592x1944",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3360, 2974, 2652, 2438, 2313, 2159, 2063, 2036, 2008, 2060, 2143, 2264, 2443, 2669, 2886, 3123, 3565, 3216, 2777, 2490, 2288, 2107, 1953, 1849, 1789, 1762, 1796, 1907, 2045, 2216, 2401, 2658, 2940, 3319, 2996, 2581, 2345, 2122, 1920, 1765, 1660, 1577, 1554, 1613, 1697, 1843, 2037, 2271, 2510, 2744, 3104, 2814, 2441, 2203, 1973, 1769, 1607, 1485, 1389, 1386, 1431, 1530, 1674, 1856, 2108, 2347, 2608, 3061, 2680, 2311, 2078, 1828, 1622, 1467, 1336, 1277, 1257, 1288, 1380, 1521, 1716, 1958, 2202, 2513, 2875, 2591, 2233, 2007, 1764, 1524, 1357, 1233, 1172, 1147, 1197, 1275, 1433, 1603, 1883, 2128, 2440, 2768, 2565, 2183, 1922, 1656, 1457, 1279, 1149, 1096, 1069, 1117, 1193, 1334, 1525, 1790, 2047, 2334, 2715, 2502, 2166, 1893, 1636, 1395, 1238, 1113, 1044, 1037, 1076, 1162, 1287, 1471, 1743, 2010, 2341, 2678, 2468, 2135, 1853, 1599, 1381, 1214, 1088, 1034, 1024, 1054, 1137, 1260, 1467, 1699, 1987, 2255, 2643, 2499, 2126, 1893, 1618, 1405, 1223, 1109, 1046, 1031, 1066, 1135, 1263, 1468, 1722, 2014, 2297, 2701, 2559, 2172, 1907, 1652, 1426, 1265, 1128, 1080, 1062, 1087, 1187, 1303, 1515, 1769, 2060, 2347, 2770, 2576, 2231, 1974, 1718, 1481, 1339, 1198, 1137, 1130, 1153, 1231, 1383, 1579, 1836, 2126, 2398, 2769, 2705, 2279, 2048, 1814, 1593, 1425, 1300, 1237, 1217, 1266, 1346, 1475, 1676, 1905, 2196, 2496, 2852, 2739, 2365, 2139, 1924, 1723, 1539, 1440, 1361, 1351, 1383, 1471, 1613, 1805, 2028, 2300, 2580, 2997, 2978, 2532, 2264, 2039, 1865, 1702, 1592, 1513, 1505, 1539, 1630, 1769, 1959, 2161, 2423, 2700, 3134, 3111, 2659, 2398, 2205, 2066, 1889, 1777, 1698, 1672, 1729, 1824, 1943, 2123, 2338, 2543, 2865, 3243, 3288, 2930, 2628, 2414, 2244, 2104, 2005, 1940, 1903, 1992, 2019, 2202, 2354, 2536, 2782, 3049, 3405]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2780, 2458, 2176, 2063, 1950, 1877, 1778, 1771, 1774, 1808, 1822, 1914, 1980, 2150, 2277, 2484, 2767, 2579, 2279, 2094, 1933, 1822, 1710, 1670, 1635, 1626, 1629, 1700, 1752, 1873, 1982, 2137, 2318, 2653, 2448, 2128, 1928, 1797, 1718, 1639, 1504, 1491, 1438, 1490, 1549, 1635, 1730, 1877, 2035, 2206, 2496, 2318, 2023, 1847, 1710, 1586, 1480, 1392, 1340, 1330, 1344, 1422, 1510, 1632, 1800, 1911, 2065, 2426, 2229, 1941, 1759, 1622, 1483, 1357, 1302, 1238, 1209, 1250, 1305, 1405, 1518, 1659, 1843, 2007, 2254, 2167, 1850, 1686, 1564, 1403, 1289, 1222, 1134, 1135, 1160, 1212, 1327, 1453, 1603, 1757, 1917, 2163, 2068, 1812, 1651, 1523, 1348, 1230, 1144, 1087, 1083, 1097, 1161, 1246, 1381, 1542, 1696, 1884, 2128, 2020, 1810, 1644, 1472, 1313, 1198, 1097, 1054, 1038, 1069, 1121, 1204, 1336, 1504, 1662, 1839, 2097, 2034, 1765, 1598, 1442, 1288, 1164, 1099, 1033, 1024, 1039, 1100, 1204, 1342, 1486, 1664, 1838, 2039, 2050, 1773, 1622, 1454, 1319, 1181, 1097, 1052, 1032, 1046, 1123, 1196, 1324, 1490, 1646, 1834, 2067, 2040, 1820, 1637, 1479, 1351, 1203, 1128, 1080, 1068, 1077, 1154, 1233, 1355, 1526, 1708, 1875, 2108, 2113, 1853, 1672, 1531, 1387, 1267, 1172, 1141, 1114, 1139, 1196, 1280, 1393, 1568, 1734, 1908, 2108, 2188, 1893, 1738, 1608, 1460, 1342, 1251, 1198, 1191, 1198, 1262, 1363, 1477, 1634, 1773, 1961, 2203, 2241, 1946, 1786, 1677, 1535, 1427, 1340, 1295, 1280, 1316, 1351, 1453, 1599, 1697, 1823, 2026, 2267, 2382, 2051, 1884, 1769, 1647, 1537, 1468, 1407, 1389, 1443, 1480, 1546, 1701, 1798, 1909, 2091, 2427, 2532, 2205, 2000, 1857, 1728, 1649, 1598, 1537, 1543, 1547, 1610, 1686, 1783, 1866, 2060, 2265, 2500, 2628, 2414, 2155, 1993, 1898, 1812, 1759, 1723, 1698, 1724, 1795, 1802, 1942, 2020, 2209, 2444, 2694]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2817, 2461, 2223, 2050, 1948, 1818, 1723, 1702, 1667, 1720, 1756, 1863, 2003, 2081, 2272, 2488, 2843, 2650, 2266, 2053, 1943, 1782, 1679, 1612, 1577, 1543, 1557, 1629, 1709, 1851, 2015, 2135, 2414, 2649, 2520, 2146, 1945, 1815, 1690, 1559, 1471, 1434, 1419, 1439, 1532, 1609, 1732, 1877, 2041, 2243, 2576, 2345, 2037, 1881, 1729, 1587, 1462, 1386, 1302, 1305, 1320, 1416, 1494, 1633, 1802, 1954, 2145, 2434, 2251, 1985, 1837, 1617, 1473, 1367, 1264, 1226, 1186, 1230, 1295, 1399, 1534, 1741, 1862, 2089, 2335, 2194, 1928, 1727, 1573, 1424, 1274, 1209, 1139, 1122, 1151, 1236, 1324, 1490, 1643, 1855, 1999, 2254, 2135, 1857, 1693, 1532, 1372, 1233, 1128, 1089, 1078, 1098, 1174, 1266, 1415, 1596, 1800, 1949, 2217, 2107, 1856, 1683, 1486, 1321, 1191, 1105, 1061, 1043, 1073, 1133, 1224, 1389, 1570, 1755, 1931, 2207, 2056, 1830, 1676, 1483, 1331, 1182, 1091, 1047, 1024, 1071, 1134, 1236, 1367, 1544, 1751, 1956, 2186, 2055, 1854, 1678, 1477, 1321, 1171, 1093, 1059, 1046, 1069, 1135, 1244, 1389, 1563, 1749, 1956, 2208, 2117, 1837, 1691, 1535, 1366, 1224, 1133, 1064, 1060, 1092, 1167, 1268, 1405, 1602, 1769, 2002, 2167, 2188, 1895, 1723, 1564, 1405, 1267, 1186, 1140, 1112, 1142, 1208, 1324, 1462, 1662, 1813, 1997, 2234, 2299, 1965, 1795, 1615, 1475, 1345, 1242, 1192, 1184, 1213, 1282, 1380, 1525, 1691, 1865, 2079, 2319, 2325, 2017, 1832, 1683, 1563, 1444, 1337, 1289, 1260, 1312, 1375, 1496, 1601, 1758, 1923, 2062, 2381, 2475, 2130, 1937, 1766, 1646, 1521, 1443, 1405, 1373, 1423, 1483, 1573, 1678, 1842, 1963, 2202, 2481, 2618, 2227, 1999, 1843, 1729, 1655, 1552, 1501, 1480, 1508, 1582, 1679, 1784, 1927, 2070, 2325, 2604, 2764, 2398, 2199, 1982, 1859, 1751, 1706, 1666, 1653, 1681, 1741, 1826, 1911, 2097, 2248, 2506, 2865]
| },
| "lsc_samples_blue": {
| "uCoeff": [2364, 2034, 1927, 1798, 1664, 1664, 1603, 1576, 1519, 1552, 1629, 1675, 1773, 1825, 2053, 2214, 2442, 2231, 1934, 1831, 1679, 1593, 1553, 1520, 1460, 1487, 1473, 1557, 1614, 1707, 1788, 1911, 2142, 2432, 2040, 1874, 1757, 1587, 1557, 1456, 1402, 1368, 1350, 1395, 1422, 1540, 1609, 1733, 1877, 2010, 2306, 1970, 1775, 1648, 1574, 1448, 1408, 1309, 1290, 1243, 1295, 1340, 1441, 1522, 1667, 1779, 1931, 2177, 1899, 1740, 1626, 1481, 1382, 1312, 1217, 1176, 1164, 1213, 1265, 1361, 1468, 1605, 1745, 1841, 2168, 1865, 1697, 1571, 1466, 1339, 1233, 1163, 1104, 1087, 1148, 1184, 1295, 1420, 1573, 1686, 1832, 2030, 1851, 1691, 1533, 1386, 1297, 1179, 1105, 1066, 1041, 1088, 1138, 1231, 1353, 1528, 1701, 1813, 2016, 1801, 1643, 1518, 1395, 1274, 1152, 1084, 1042, 1029, 1059, 1113, 1204, 1360, 1549, 1614, 1808, 1984, 1786, 1663, 1502, 1383, 1231, 1131, 1079, 1034, 1024, 1068, 1121, 1218, 1330, 1521, 1667, 1846, 2021, 1831, 1677, 1527, 1397, 1268, 1144, 1060, 1025, 1033, 1056, 1108, 1226, 1348, 1493, 1604, 1776, 1900, 1807, 1646, 1574, 1399, 1307, 1203, 1104, 1059, 1043, 1064, 1126, 1243, 1366, 1504, 1641, 1840, 2004, 1843, 1700, 1558, 1458, 1360, 1235, 1169, 1103, 1099, 1129, 1200, 1316, 1421, 1551, 1691, 1834, 2037, 1891, 1715, 1584, 1507, 1389, 1286, 1218, 1204, 1187, 1202, 1264, 1326, 1480, 1602, 1731, 1919, 2130, 1969, 1813, 1673, 1573, 1471, 1365, 1314, 1251, 1262, 1280, 1329, 1394, 1552, 1631, 1758, 1926, 2123, 2140, 1921, 1743, 1592, 1538, 1445, 1419, 1362, 1338, 1390, 1432, 1519, 1594, 1746, 1811, 2007, 2299, 2249, 2029, 1834, 1688, 1635, 1550, 1479, 1457, 1452, 1479, 1510, 1564, 1669, 1748, 1903, 2109, 2403, 2414, 2167, 1946, 1874, 1717, 1705, 1596, 1591, 1591, 1594, 1594, 1682, 1781, 1913, 2006, 2205, 2523]
| }
| }, {
| "name": "2592x1944_TL84_100",
| "resolution": "2592x1944",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3169, 2681, 2334, 2071, 1905, 1789, 1708, 1698, 1666, 1706, 1768, 1854, 2025, 2243, 2478, 2823, 3373, 2974, 2381, 2116, 1917, 1741, 1621, 1562, 1523, 1528, 1536, 1613, 1712, 1842, 2041, 2212, 2608, 3097, 2675, 2222, 1959, 1751, 1616, 1515, 1428, 1380, 1379, 1411, 1472, 1569, 1711, 1858, 2076, 2331, 2862, 2448, 2049, 1833, 1667, 1515, 1414, 1317, 1287, 1265, 1302, 1363, 1472, 1603, 1774, 1967, 2212, 2621, 2287, 1931, 1753, 1567, 1421, 1310, 1235, 1184, 1187, 1205, 1271, 1369, 1498, 1664, 1841, 2103, 2496, 2212, 1889, 1686, 1525, 1352, 1232, 1160, 1119, 1106, 1139, 1200, 1299, 1399, 1597, 1802, 2039, 2429, 2162, 1812, 1609, 1452, 1293, 1201, 1108, 1083, 1056, 1082, 1152, 1237, 1385, 1548, 1723, 1955, 2320, 2097, 1773, 1610, 1415, 1282, 1161, 1081, 1051, 1037, 1063, 1116, 1212, 1335, 1509, 1703, 1920, 2312, 2096, 1809, 1585, 1403, 1251, 1144, 1076, 1043, 1024, 1062, 1104, 1202, 1322, 1496, 1677, 1921, 2217, 2082, 1772, 1598, 1409, 1270, 1147, 1068, 1032, 1030, 1065, 1111, 1207, 1341, 1487, 1678, 1905, 2219, 2144, 1803, 1603, 1426, 1294, 1187, 1096, 1058, 1050, 1071, 1143, 1219, 1358, 1520, 1702, 1935, 2284, 2176, 1865, 1639, 1485, 1342, 1218, 1127, 1091, 1081, 1121, 1168, 1264, 1398, 1562, 1783, 2012, 2375, 2317, 1929, 1726, 1527, 1408, 1292, 1195, 1143, 1150, 1176, 1228, 1331, 1456, 1628, 1826, 2092, 2470, 2423, 2036, 1795, 1647, 1500, 1376, 1292, 1240, 1245, 1253, 1317, 1417, 1558, 1691, 1904, 2190, 2629, 2636, 2196, 1920, 1714, 1575, 1481, 1400, 1321, 1331, 1360, 1413, 1517, 1679, 1825, 2008, 2321, 2820, 2902, 2379, 2030, 1835, 1710, 1589, 1520, 1473, 1458, 1492, 1549, 1640, 1775, 1925, 2149, 2526, 3000, 3190, 2679, 2259, 1987, 1847, 1726, 1671, 1617, 1619, 1656, 1716, 1811, 1945, 2105, 2400, 2825, 3368]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3064, 2575, 2248, 2007, 1864, 1757, 1674, 1656, 1639, 1655, 1737, 1815, 1920, 2079, 2296, 2627, 3075, 2855, 2327, 2060, 1867, 1739, 1621, 1556, 1536, 1502, 1539, 1591, 1659, 1774, 1921, 2102, 2414, 2821, 2533, 2145, 1899, 1716, 1600, 1512, 1427, 1390, 1360, 1402, 1454, 1543, 1642, 1818, 1961, 2198, 2640, 2377, 2011, 1796, 1625, 1497, 1405, 1328, 1272, 1261, 1277, 1342, 1423, 1546, 1674, 1853, 2056, 2439, 2233, 1886, 1722, 1547, 1406, 1303, 1230, 1182, 1174, 1202, 1250, 1331, 1441, 1596, 1756, 1993, 2275, 2149, 1800, 1625, 1475, 1330, 1226, 1163, 1119, 1105, 1138, 1183, 1244, 1379, 1512, 1683, 1860, 2151, 2034, 1756, 1588, 1395, 1287, 1187, 1115, 1063, 1072, 1086, 1129, 1209, 1322, 1465, 1628, 1835, 2132, 2013, 1723, 1550, 1375, 1249, 1141, 1083, 1045, 1031, 1059, 1106, 1172, 1289, 1435, 1605, 1768, 2091, 1977, 1738, 1527, 1379, 1234, 1131, 1067, 1036, 1024, 1042, 1093, 1164, 1281, 1406, 1587, 1770, 2070, 2031, 1701, 1533, 1385, 1244, 1139, 1075, 1034, 1029, 1044, 1093, 1161, 1271, 1418, 1579, 1766, 2076, 2046, 1741, 1547, 1403, 1260, 1149, 1096, 1070, 1058, 1071, 1128, 1174, 1307, 1447, 1614, 1813, 2070, 2094, 1771, 1598, 1453, 1325, 1206, 1127, 1096, 1090, 1103, 1148, 1232, 1327, 1491, 1659, 1848, 2138, 2200, 1849, 1666, 1508, 1372, 1259, 1189, 1147, 1147, 1154, 1212, 1269, 1401, 1528, 1704, 1917, 2257, 2318, 1947, 1730, 1577, 1466, 1335, 1271, 1223, 1218, 1242, 1292, 1373, 1489, 1610, 1756, 2008, 2327, 2473, 2091, 1818, 1661, 1553, 1436, 1381, 1339, 1309, 1332, 1386, 1465, 1573, 1713, 1871, 2112, 2552, 2701, 2270, 1964, 1780, 1662, 1556, 1488, 1447, 1442, 1450, 1512, 1584, 1677, 1801, 2017, 2313, 2700, 3029, 2521, 2199, 1951, 1788, 1720, 1641, 1605, 1565, 1608, 1632, 1739, 1836, 1978, 2203, 2597, 3070]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3065, 2558, 2221, 1996, 1834, 1711, 1648, 1601, 1616, 1607, 1656, 1773, 1863, 2064, 2315, 2621, 3186, 2873, 2365, 2028, 1847, 1710, 1592, 1535, 1479, 1460, 1484, 1567, 1638, 1760, 1923, 2120, 2456, 2866, 2596, 2157, 1919, 1727, 1593, 1483, 1395, 1341, 1338, 1366, 1435, 1515, 1634, 1810, 1991, 2248, 2663, 2382, 2037, 1800, 1629, 1503, 1380, 1302, 1245, 1227, 1272, 1332, 1429, 1547, 1697, 1868, 2103, 2466, 2251, 1920, 1726, 1546, 1396, 1297, 1201, 1174, 1158, 1176, 1232, 1320, 1448, 1610, 1760, 1996, 2338, 2169, 1896, 1647, 1478, 1345, 1218, 1153, 1107, 1094, 1131, 1171, 1259, 1380, 1544, 1711, 1929, 2228, 2095, 1788, 1602, 1437, 1293, 1171, 1094, 1072, 1065, 1079, 1119, 1204, 1329, 1504, 1699, 1889, 2162, 2094, 1745, 1580, 1413, 1260, 1147, 1073, 1038, 1036, 1066, 1106, 1188, 1312, 1475, 1647, 1877, 2148, 2046, 1775, 1562, 1388, 1259, 1141, 1072, 1039, 1024, 1046, 1102, 1174, 1281, 1465, 1629, 1855, 2110, 2063, 1774, 1576, 1399, 1250, 1162, 1065, 1040, 1037, 1052, 1099, 1188, 1297, 1463, 1655, 1870, 2136, 2129, 1763, 1593, 1434, 1293, 1177, 1105, 1046, 1056, 1070, 1123, 1215, 1332, 1477, 1667, 1882, 2144, 2176, 1815, 1637, 1472, 1313, 1227, 1140, 1102, 1088, 1116, 1158, 1250, 1363, 1537, 1710, 1909, 2255, 2259, 1913, 1714, 1550, 1386, 1285, 1192, 1167, 1145, 1160, 1230, 1316, 1439, 1597, 1759, 1971, 2292, 2359, 2007, 1781, 1591, 1468, 1363, 1274, 1230, 1222, 1243, 1312, 1387, 1522, 1670, 1833, 2068, 2468, 2609, 2126, 1872, 1698, 1559, 1449, 1372, 1324, 1301, 1333, 1393, 1490, 1589, 1762, 1911, 2177, 2608, 2790, 2324, 1985, 1812, 1662, 1555, 1472, 1424, 1424, 1446, 1508, 1580, 1705, 1837, 2055, 2357, 2851, 3078, 2553, 2211, 1946, 1818, 1686, 1619, 1603, 1574, 1593, 1655, 1724, 1863, 2024, 2300, 2640, 3126]
| },
| "lsc_samples_blue": {
| "uCoeff": [2567, 2254, 1952, 1761, 1662, 1574, 1545, 1499, 1502, 1517, 1548, 1625, 1729, 1879, 2071, 2378, 2840, 2477, 2076, 1871, 1689, 1599, 1515, 1448, 1396, 1401, 1422, 1469, 1570, 1659, 1774, 1970, 2273, 2610, 2250, 1937, 1735, 1599, 1473, 1417, 1353, 1306, 1281, 1332, 1377, 1430, 1564, 1678, 1847, 2056, 2449, 2168, 1843, 1625, 1507, 1407, 1326, 1265, 1220, 1229, 1218, 1281, 1337, 1469, 1599, 1748, 1950, 2276, 1950, 1748, 1568, 1453, 1326, 1241, 1175, 1163, 1115, 1170, 1215, 1291, 1398, 1527, 1705, 1857, 2175, 1904, 1701, 1520, 1385, 1265, 1184, 1120, 1094, 1093, 1119, 1151, 1242, 1339, 1464, 1644, 1799, 2095, 1832, 1660, 1485, 1361, 1234, 1135, 1080, 1074, 1055, 1069, 1110, 1200, 1299, 1414, 1570, 1794, 2017, 1843, 1621, 1479, 1331, 1218, 1129, 1061, 1046, 1030, 1056, 1103, 1176, 1268, 1406, 1578, 1718, 2019, 1800, 1644, 1455, 1312, 1204, 1104, 1057, 1027, 1024, 1058, 1118, 1165, 1268, 1409, 1532, 1754, 1942, 1850, 1613, 1478, 1324, 1226, 1124, 1056, 1037, 1048, 1061, 1088, 1151, 1263, 1423, 1560, 1729, 1930, 1871, 1654, 1491, 1336, 1226, 1170, 1104, 1065, 1058, 1079, 1103, 1186, 1291, 1436, 1578, 1745, 2035, 1908, 1671, 1520, 1388, 1277, 1205, 1115, 1100, 1070, 1111, 1151, 1222, 1322, 1446, 1638, 1788, 2081, 1966, 1730, 1557, 1419, 1326, 1234, 1190, 1133, 1142, 1159, 1194, 1261, 1389, 1516, 1673, 1871, 2192, 2114, 1820, 1632, 1508, 1390, 1300, 1241, 1183, 1206, 1230, 1276, 1341, 1429, 1553, 1724, 1946, 2267, 2325, 1955, 1729, 1589, 1475, 1411, 1334, 1301, 1280, 1303, 1353, 1420, 1520, 1644, 1787, 2055, 2439, 2457, 2106, 1840, 1681, 1549, 1480, 1432, 1390, 1390, 1403, 1439, 1515, 1620, 1712, 1897, 2200, 2588, 2750, 2378, 2016, 1843, 1717, 1616, 1512, 1494, 1514, 1551, 1576, 1656, 1747, 1900, 2120, 2405, 2881]
| }
| }, {
| "name": "2592x1944_TL84_70",
| "resolution": "2592x1944",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2526, 2261, 2050, 1877, 1764, 1683, 1623, 1620, 1594, 1627, 1675, 1738, 1865, 2017, 2163, 2367, 2668, 2443, 2070, 1906, 1773, 1644, 1553, 1509, 1478, 1484, 1490, 1555, 1633, 1732, 1877, 1983, 2245, 2532, 2260, 1972, 1798, 1649, 1549, 1470, 1397, 1356, 1356, 1385, 1438, 1519, 1633, 1741, 1895, 2058, 2400, 2115, 1853, 1708, 1589, 1469, 1385, 1300, 1274, 1254, 1289, 1343, 1439, 1548, 1683, 1822, 1985, 2248, 2010, 1771, 1652, 1509, 1390, 1294, 1226, 1179, 1182, 1199, 1261, 1349, 1460, 1596, 1727, 1912, 2173, 1965, 1746, 1602, 1478, 1330, 1223, 1156, 1117, 1105, 1137, 1195, 1287, 1374, 1543, 1703, 1871, 2136, 1934, 1688, 1539, 1415, 1277, 1195, 1106, 1082, 1056, 1081, 1149, 1229, 1364, 1503, 1640, 1808, 2060, 1887, 1659, 1543, 1383, 1268, 1157, 1080, 1051, 1037, 1063, 1115, 1206, 1318, 1470, 1625, 1783, 2060, 1888, 1691, 1522, 1373, 1239, 1141, 1075, 1043, 1024, 1062, 1103, 1197, 1307, 1459, 1604, 1786, 1986, 1875, 1658, 1532, 1378, 1257, 1143, 1067, 1032, 1030, 1065, 1110, 1201, 1324, 1450, 1603, 1771, 1985, 1920, 1680, 1534, 1391, 1278, 1181, 1095, 1058, 1050, 1071, 1141, 1212, 1339, 1477, 1621, 1792, 2032, 1936, 1726, 1561, 1441, 1321, 1209, 1124, 1090, 1080, 1119, 1164, 1253, 1373, 1511, 1686, 1848, 2094, 2033, 1769, 1628, 1473, 1378, 1277, 1188, 1139, 1146, 1171, 1219, 1313, 1422, 1564, 1714, 1903, 2153, 2096, 1842, 1676, 1571, 1455, 1350, 1277, 1230, 1235, 1242, 1300, 1388, 1507, 1610, 1769, 1967, 2254, 2231, 1951, 1766, 1617, 1513, 1439, 1371, 1301, 1311, 1337, 1383, 1472, 1605, 1713, 1839, 2050, 2369, 2391, 2068, 1836, 1704, 1617, 1524, 1471, 1433, 1420, 1450, 1497, 1570, 1674, 1780, 1932, 2181, 2462, 2540, 2260, 1992, 1808, 1716, 1628, 1590, 1548, 1552, 1583, 1630, 1701, 1798, 1905, 2102, 2369, 2665]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2452, 2182, 1983, 1825, 1730, 1655, 1593, 1583, 1570, 1582, 1648, 1705, 1777, 1883, 2021, 2221, 2460, 2356, 2028, 1860, 1731, 1643, 1553, 1503, 1490, 1460, 1493, 1535, 1586, 1673, 1776, 1894, 2095, 2332, 2154, 1911, 1749, 1619, 1535, 1467, 1396, 1365, 1338, 1376, 1421, 1495, 1572, 1707, 1800, 1953, 2234, 2061, 1822, 1677, 1552, 1452, 1377, 1310, 1260, 1250, 1265, 1324, 1394, 1497, 1595, 1725, 1859, 2108, 1968, 1734, 1625, 1491, 1376, 1287, 1221, 1177, 1170, 1196, 1241, 1313, 1408, 1535, 1654, 1822, 2001, 1915, 1672, 1548, 1432, 1309, 1217, 1159, 1117, 1104, 1136, 1178, 1234, 1355, 1466, 1599, 1722, 1916, 1832, 1641, 1521, 1363, 1272, 1181, 1113, 1063, 1072, 1085, 1127, 1202, 1305, 1427, 1556, 1707, 1910, 1820, 1616, 1490, 1347, 1237, 1137, 1082, 1045, 1031, 1059, 1105, 1167, 1275, 1402, 1539, 1655, 1882, 1792, 1630, 1470, 1351, 1223, 1128, 1066, 1036, 1024, 1042, 1092, 1160, 1268, 1376, 1524, 1657, 1867, 1834, 1598, 1475, 1356, 1232, 1135, 1074, 1034, 1029, 1044, 1092, 1157, 1258, 1386, 1516, 1653, 1870, 1841, 1628, 1485, 1370, 1246, 1144, 1095, 1070, 1058, 1071, 1126, 1169, 1290, 1411, 1544, 1689, 1861, 1871, 1647, 1525, 1412, 1305, 1198, 1124, 1095, 1089, 1101, 1144, 1223, 1307, 1447, 1578, 1712, 1906, 1942, 1703, 1577, 1456, 1344, 1245, 1182, 1143, 1143, 1150, 1204, 1255, 1371, 1474, 1609, 1759, 1987, 2016, 1770, 1621, 1510, 1424, 1312, 1257, 1213, 1209, 1231, 1277, 1347, 1445, 1539, 1643, 1820, 2023, 2109, 1868, 1682, 1572, 1493, 1398, 1354, 1318, 1291, 1311, 1358, 1424, 1511, 1617, 1725, 1885, 2168, 2244, 1984, 1783, 1658, 1576, 1495, 1442, 1409, 1406, 1412, 1464, 1520, 1589, 1676, 1826, 2017, 2244, 2428, 2142, 1945, 1779, 1666, 1623, 1564, 1538, 1504, 1541, 1556, 1639, 1706, 1801, 1948, 2199, 2456]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2453, 2169, 1962, 1816, 1705, 1615, 1570, 1534, 1549, 1540, 1577, 1669, 1729, 1871, 2035, 2217, 2537, 2369, 2057, 1835, 1714, 1617, 1527, 1484, 1438, 1422, 1443, 1513, 1568, 1661, 1778, 1909, 2128, 2364, 2201, 1920, 1765, 1629, 1529, 1441, 1366, 1320, 1318, 1343, 1403, 1470, 1565, 1700, 1825, 1992, 2251, 2065, 1843, 1681, 1555, 1458, 1354, 1286, 1234, 1218, 1260, 1314, 1399, 1497, 1615, 1738, 1897, 2129, 1982, 1762, 1628, 1490, 1367, 1281, 1194, 1169, 1154, 1171, 1223, 1303, 1414, 1548, 1658, 1824, 2050, 1931, 1752, 1568, 1435, 1323, 1209, 1149, 1105, 1093, 1129, 1167, 1248, 1356, 1495, 1623, 1779, 1977, 1881, 1668, 1533, 1401, 1277, 1166, 1093, 1071, 1065, 1078, 1117, 1197, 1311, 1463, 1618, 1753, 1934, 1885, 1635, 1516, 1382, 1247, 1143, 1072, 1038, 1036, 1066, 1105, 1183, 1297, 1438, 1576, 1747, 1928, 1848, 1662, 1501, 1359, 1247, 1138, 1071, 1039, 1024, 1046, 1101, 1170, 1268, 1430, 1561, 1730, 1899, 1860, 1660, 1513, 1369, 1238, 1158, 1064, 1040, 1037, 1052, 1098, 1183, 1283, 1427, 1583, 1741, 1919, 1908, 1647, 1525, 1399, 1277, 1171, 1103, 1046, 1056, 1070, 1121, 1208, 1314, 1438, 1590, 1747, 1920, 1936, 1684, 1559, 1430, 1294, 1218, 1137, 1100, 1087, 1114, 1154, 1240, 1340, 1488, 1622, 1763, 1999, 1988, 1756, 1618, 1494, 1357, 1270, 1185, 1162, 1141, 1156, 1221, 1299, 1406, 1536, 1657, 1804, 2014, 2047, 1819, 1664, 1522, 1426, 1338, 1260, 1220, 1213, 1232, 1295, 1360, 1475, 1591, 1708, 1868, 2131, 2211, 1896, 1726, 1604, 1498, 1410, 1345, 1304, 1283, 1312, 1365, 1447, 1525, 1659, 1759, 1936, 2210, 2309, 2026, 1800, 1685, 1576, 1494, 1428, 1388, 1389, 1408, 1460, 1516, 1613, 1706, 1856, 2051, 2353, 2462, 2166, 1954, 1775, 1691, 1594, 1545, 1536, 1512, 1527, 1576, 1627, 1729, 1839, 2024, 2231, 2495]
| },
| "lsc_samples_blue": {
| "uCoeff": [2104, 1942, 1751, 1624, 1560, 1497, 1480, 1444, 1448, 1460, 1483, 1541, 1617, 1721, 1844, 2035, 2295, 2081, 1835, 1708, 1582, 1521, 1459, 1406, 1362, 1368, 1386, 1425, 1508, 1573, 1653, 1788, 1987, 2178, 1942, 1746, 1613, 1519, 1422, 1381, 1328, 1287, 1264, 1311, 1350, 1393, 1503, 1586, 1706, 1841, 2091, 1901, 1686, 1532, 1448, 1371, 1304, 1251, 1211, 1220, 1209, 1266, 1314, 1427, 1529, 1637, 1773, 1984, 1747, 1620, 1492, 1407, 1302, 1229, 1169, 1159, 1112, 1165, 1207, 1276, 1368, 1473, 1610, 1710, 1923, 1721, 1589, 1457, 1351, 1249, 1177, 1117, 1093, 1092, 1117, 1147, 1232, 1318, 1422, 1565, 1671, 1872, 1670, 1560, 1430, 1332, 1222, 1131, 1079, 1073, 1055, 1069, 1108, 1194, 1283, 1380, 1505, 1673, 1818, 1683, 1530, 1427, 1306, 1208, 1126, 1060, 1046, 1030, 1056, 1102, 1171, 1255, 1375, 1515, 1612, 1824, 1650, 1550, 1406, 1289, 1195, 1102, 1057, 1027, 1024, 1058, 1117, 1161, 1255, 1378, 1475, 1644, 1764, 1689, 1523, 1426, 1300, 1215, 1121, 1056, 1037, 1048, 1061, 1087, 1147, 1250, 1391, 1499, 1621, 1753, 1701, 1555, 1435, 1309, 1214, 1165, 1102, 1065, 1058, 1078, 1101, 1180, 1275, 1401, 1512, 1632, 1833, 1724, 1564, 1457, 1354, 1260, 1197, 1112, 1099, 1069, 1109, 1147, 1213, 1302, 1406, 1560, 1662, 1861, 1759, 1605, 1483, 1377, 1302, 1222, 1183, 1129, 1139, 1155, 1187, 1247, 1360, 1464, 1583, 1721, 1936, 1859, 1668, 1538, 1449, 1355, 1280, 1228, 1175, 1198, 1220, 1261, 1318, 1391, 1489, 1616, 1770, 1977, 1998, 1761, 1608, 1510, 1424, 1375, 1310, 1282, 1263, 1284, 1328, 1383, 1464, 1557, 1656, 1840, 2084, 2067, 1858, 1683, 1575, 1478, 1428, 1392, 1357, 1358, 1369, 1398, 1459, 1540, 1601, 1729, 1930, 2162, 2232, 2035, 1801, 1691, 1606, 1534, 1451, 1440, 1459, 1490, 1507, 1568, 1632, 1738, 1883, 2055, 2324]
| }
| }, {
| "name": "2592x1944_GRAY_0",
| "resolution": "2592x1944",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }],
| "tableAll_len": 15
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lumaDetect": {
| "luma_detect_en": 1,
| "fixed_times": 0,
| "mutation_threshold": 0.0002,
| "mutation_threshold_level2": 1000
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
| }
| },
| "ccm_calib": {
| "control": {
| "enable": 1,
| "mode": "CALIB_CCM_MODE_AUTO",
| "wbgain_tolerance": 0.1,
| "gain_tolerance": 0.2
| },
| "lumaCCM": {
| "rgb2y_para": [38, 75, 15],
| "low_bound_pos_bit": 8,
| "y_alpha_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
| "gain_alphaScale_curve": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "scale": [1, 1, 0.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [0.8884, 2.4364],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.3768, 2.0635],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.5615, 1.6314],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.5561, 1.3883],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.6608, 1.2816],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.7353, 2.8273],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.2733, 2.0483],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 16],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.3172, -0.2464, -0.1708, -0.4951, 1.911, -0.4159, -0.2483, -1.0514, 2.2996],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.0214, 0.1581, -0.1794, -0.3156, 1.6556, -0.34, -0.1339, -0.5359, 1.6698],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.1241, -0.9949, -0.1292, -0.3973, 1.6905, -0.2931, -0.0482, -0.5955, 1.6437],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.6568, -0.5739, -0.0828, -0.183, 1.414, -0.231, 0.0757, -0.2782, 1.2025],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.0387, -0.9141, -0.1246, -0.2936, 1.5116, -0.218, -0.0179, -0.5084, 1.5264],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.6118, -0.5316, -0.0802, -0.1009, 1.264, -0.1631, 0.1298, -0.3078, 1.1779],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.7988, -0.6369, -0.1619, -0.2664, 1.7142, -0.4578, -0.0255, -0.4887, 1.5142],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.4202, -0.2741, -0.1461, -0.0949, 1.4665, -0.3716, 0.125, -0.1555, 1.0305],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.8957, -0.7248, -0.1709, -0.2593, 1.7264, -0.4672, -0.0241, -0.4444, 1.4684],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.5009, -0.3431, -0.1578, -0.0807, 1.4715, -0.3909, 0.1224, -0.134, 1.0116],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.2721, -0.0282, -0.2439, -0.5558, 2.0367, -0.4809, -0.558, -1.4553, 3.0133],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.1478, 0.2435, -0.3913, -0.3747, 1.7729, -0.3982, -0.2773, -0.8107, 2.088],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.8516, -0.6788, -0.1729, -0.3938, 1.6815, -0.2877, -0.0871, -0.6387, 1.7259],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.4425, -0.3181, -0.1244, -0.2061, 1.4293, -0.2232, 0.0201, -0.2871, 1.267],
| "ccOffsets": [0, 0, 0]
| }],
| "matrixAll_len": 14
| }
| },
| "lut3d_calib": {
| "common": {
| "enable": 0,
| "mode": "CALIB_Lut3D_MODE_AUTO",
| "gain_tolerance": 0.1,
| "wbgain_tolerance": 1
| },
| "MLut3D": {
| "Table": {
| "look_up_table_r": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "ALut3D": {
| "damp_en": 1,
| "lutAll": [{
| "name": "Normal",
| "awbGain": [1, 1],
| "gain_alpha": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "alpha": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "Table": {
| "look_up_table_r": [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
| "look_up_table_g": [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }],
| "lutAll_len": 1
| }
| },
| "af": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_NOT_SET",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "win_v_size": 0,
| "fixed_mode": {
| "code": 8
| },
| "macro_mode": {
| "code": 32
| },
| "infinity_mode": {
| "code": 32
| },
| "contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullSteps": 9,
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptiveSteps": 9,
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "TrigThers": 0.1,
| "LumaTrigThers": 0,
| "StableThers": 0.03,
| "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,
| "FlatValue": 0
| },
| "laser_af": {
| "enable": 0,
| "vcmDot": [0, 16, 32, 40, 48, 56, 64],
| "distanceDot": [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
| },
| "pdaf": {
| "enable": 0
| },
| "vcmcfg": {
| "start_current": -1,
| "rated_current": -1,
| "step_mode": -1,
| "extra_delay": 0
| },
| "measiso_cfg": [{
| "iso": 50,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 100,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 1600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 3200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 6400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 12800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 25600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 51200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 102400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 204800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }],
| "zoomfocus_tbl": {
| "tbl_len": 0,
| "focal_length": [],
| "focal_length_len": 0,
| "zoom_pos": [],
| "zoom_pos_len": 0,
| "focus_infpos": [],
| "focus_infpos_len": 0,
| "focus_macropos": [],
| "focus_macropos_len": 0
| }
| }
| },
| "thumbnails": {
| "param": {
| "thumbnail_configs": [{
| "owner_cookies": 0,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0002",
| "width_intfactor": 2,
| "height_intfactor": 2,
| "buffer_count": 0
| }, {
| "owner_cookies": 1,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0004",
| "width_intfactor": 4,
| "height_intfactor": 4,
| "buffer_count": 0
| }, {
| "owner_cookies": 2,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\b",
| "width_intfactor": 8,
| "height_intfactor": 8,
| "buffer_count": 0
| }],
| "thumbnail_configs_len": 3
| }
| },
| "bayernr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [300, 269, 242, 218, 180, 155, 143, 141, 143, 146, 146, 142, 133, 120, 104, 91]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [746, 635, 529, 429, 241, 87, 87, 87, 147, 211, 244, 250, 229, 182, 106, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [686, 602, 526, 456, 342, 267, 238, 244, 265, 284, 292, 286, 264, 227, 179, 135]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [748, 688, 635, 588, 513, 463, 433, 418, 409, 402, 390, 371, 345, 310, 270, 233]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1078, 1011, 951, 896, 805, 736, 685, 647, 617, 590, 561, 528, 490, 446, 399, 358]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [300, 269, 242, 218, 180, 155, 143, 141, 143, 146, 146, 142, 133, 120, 104, 91]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [746, 635, 529, 429, 241, 87, 87, 87, 147, 211, 244, 250, 229, 182, 106, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [686, 602, 526, 456, 342, 267, 238, 244, 265, 284, 292, 286, 264, 227, 179, 135]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [748, 688, 635, 588, 513, 463, 433, 418, 409, 402, 390, 371, 345, 310, 270, 233]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1078, 1011, 951, 896, 805, 736, 685, 647, 617, 590, 561, 528, 490, 446, 399, 358]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.15
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.25
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.35
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.45
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.05
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.1
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.15
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.5,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.2
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.3
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.4
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.5
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.55
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.6
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.75,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.75
| }, {
| "iso": 100,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.7
| }, {
| "iso": 200,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 400,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 1600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 3200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 6400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 25600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 51200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 102400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 204800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.9,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.8
| }, {
| "iso": 100,
| "filter_strength": 0.8,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.75
| }, {
| "iso": 200,
| "filter_strength": 0.7,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.7
| }, {
| "iso": 400,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.65
| }, {
| "iso": 800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.6
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.55
| }, {
| "iso": 3200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.5
| }, {
| "iso": 6400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 25600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 51200,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 102400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }, {
| "iso": 204800,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.25,
| "hi_clipwgt": 0.25,
| "softwgt": 0.4
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v1": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Kernel_Coeff": {
| "kernel_5x5": [1, 0.8825, 0.7788, 0.6065, 0.3679]
| },
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.1,
| "hf_denoise_strength": 8,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.25,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.25,
| "hf_denoise_strength": 10,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 12,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 35,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.35,
| "hf_denoise_strength": 14,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 10,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 16,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.45,
| "hf_denoise_strength": 18,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 14,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 21,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "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.2,
| "thumb_denoise_strength": 18,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 30,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 35,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 25,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 30,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 35,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.00934e-12, 9.55669e-09, -3.24656e-05, 0.0417221, 12.1395],
| "ynr_ci_l": 0.277763,
| "ynr_ci_h": 0.186286
| }, {
| "iso": 100,
| "sigma_curve": [-1.07439e-12, 9.8948e-09, -3.25831e-05, 0.0404215, 13.3321],
| "ynr_ci_l": 0.303392,
| "ynr_ci_h": 0.18601
| }, {
| "iso": 200,
| "sigma_curve": [-1.2734e-12, 1.17162e-08, -3.91025e-05, 0.0457089, 40.6029],
| "ynr_ci_l": 0.247957,
| "ynr_ci_h": 0.166413
| }, {
| "iso": 400,
| "sigma_curve": [-1.4165e-12, 1.27033e-08, -4.1347e-05, 0.0418825, 72.1694],
| "ynr_ci_l": 0.243951,
| "ynr_ci_h": 0.157987
| }, {
| "iso": 800,
| "sigma_curve": [-2.77154e-12, 2.48757e-08, -7.92183e-05, 0.0793251, 106.891],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.00934e-12, 9.55669e-09, -3.24656e-05, 0.0417221, 12.1395],
| "ynr_ci_l": 0.277763,
| "ynr_ci_h": 0.186286
| }, {
| "iso": 100,
| "sigma_curve": [-1.07439e-12, 9.8948e-09, -3.25831e-05, 0.0404215, 13.3321],
| "ynr_ci_l": 0.303392,
| "ynr_ci_h": 0.18601
| }, {
| "iso": 200,
| "sigma_curve": [-1.2734e-12, 1.17162e-08, -3.91025e-05, 0.0457089, 40.6029],
| "ynr_ci_l": 0.247957,
| "ynr_ci_h": 0.166413
| }, {
| "iso": 400,
| "sigma_curve": [-1.4165e-12, 1.27033e-08, -4.1347e-05, 0.0418825, 72.1694],
| "ynr_ci_l": 0.243951,
| "ynr_ci_h": 0.157987
| }, {
| "iso": 800,
| "sigma_curve": [-2.77154e-12, 2.48757e-08, -7.92183e-05, 0.0793251, 106.891],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.236898,
| "ynr_ci_h": 0.155111
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.2,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.85,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 1,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.5,
| "low_dist_adj": 7,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 90,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 8,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.35,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.05,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.45,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.35,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.5,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.45,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.25,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.5]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.15,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.1,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.78,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "sharp_v3": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.45,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.45,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.5,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.55,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.55,
| "bf_add": 9,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.6,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.65,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.65,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.4,
| "pbf_ratio": 1,
| "pbf_add": 18,
| "gaus_ratio": 0.7,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.7,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 0.75,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 0.75,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 0.8,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 0.85,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 0.85,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 0.9,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 33,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 36,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 36,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.35,
| "pbf_add": 1,
| "gaus_ratio": 0.35,
| "sharp_ratio": 13,
| "bf_gain": 0.4,
| "bf_ratio": 0.35,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.6,
| "bf_ratio": 0.4,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.9,
| "pbf_ratio": 0.5,
| "pbf_add": 6,
| "gaus_ratio": 0.55,
| "sharp_ratio": 8,
| "bf_gain": 0.9,
| "bf_ratio": 0.55,
| "bf_add": 8,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.55,
| "pbf_add": 8,
| "gaus_ratio": 0.6,
| "sharp_ratio": 7,
| "bf_gain": 1,
| "bf_ratio": 0.6,
| "bf_add": 10,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [512, 640, 768, 896, 896, 896, 896, 896]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.1,
| "pbf_ratio": 0.55,
| "pbf_add": 10,
| "gaus_ratio": 0.65,
| "sharp_ratio": 6,
| "bf_gain": 1.1,
| "bf_ratio": 0.65,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.6,
| "pbf_add": 12,
| "gaus_ratio": 0.7,
| "sharp_ratio": 5,
| "bf_gain": 1.2,
| "bf_ratio": 0.7,
| "bf_add": 14,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.3,
| "pbf_ratio": 0.6,
| "pbf_add": 14,
| "gaus_ratio": 0.75,
| "sharp_ratio": 4,
| "bf_gain": 1.3,
| "bf_ratio": 0.75,
| "bf_add": 16,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.4,
| "pbf_ratio": 0.65,
| "pbf_add": 16,
| "gaus_ratio": 0.8,
| "sharp_ratio": 3,
| "bf_gain": 1.4,
| "bf_ratio": 0.8,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.5,
| "pbf_ratio": 0.7,
| "pbf_add": 18,
| "gaus_ratio": 0.85,
| "sharp_ratio": 2,
| "bf_gain": 1.5,
| "bf_ratio": 0.85,
| "bf_add": 20,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.6,
| "pbf_ratio": 0.75,
| "pbf_add": 20,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.6,
| "bf_ratio": 0.9,
| "bf_add": 22,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.7,
| "pbf_ratio": 0.8,
| "pbf_add": 22,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 1.8,
| "pbf_ratio": 0.8,
| "pbf_add": 24,
| "gaus_ratio": 0.9,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 26,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| }
| }
| }],
| "sub_scene_len": 1
| }],
| "main_scene_len": 1,
| "uapi": [],
| "uapi_len": 0,
| "sys_static_cfg": {
| "algoSwitch": {
| "enable": 0,
| "enable_algos": [],
| "enable_algos_len": 0
| }
| }
| }
|
|