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": 3264,
| "height": 2448
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 16, 128, 0, 1, 128, 2048],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 15.5
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 0,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 3.5,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 2
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 1.6,
| "EFL": 5.2,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_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.15,
| "DampBright2Dark": 0.25
| },
| "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, 2, 2, 15.5, 15.5],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 1],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.0465, 0.1395, 0.31, 0.62, 1.24],
| "ExpLevel_len": 6,
| "DySetpoint": [50, 50, 50, 50, 50, 50],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 1,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.096875, 0.19375, 0.3875, 0.62, 0.93, 1.24],
| "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, 15.5],
| "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, 15.5],
| "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, 15.5],
| "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.00465, 0.01395, 0.02325, 0.0465, 0.093],
| "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.02325, 0.0465, 0.093, 0.2325, 0.3255, 0.465],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.002325, 0.006975, 0.011625, 0.0186, 0.0279],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [1.06436, 1, 1, 2.24878],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_8X8",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [6],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [9],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [6],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [9],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.340133, 0.341128, 0.318739],
| "rotationMat": [-0.643598, 0.765363, -0.214043, 0.765363, 0.643598, 0.369116, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.046875, 0.138672, 0.0136719, 28.5625, -0.0859375, 0.00976562, 0.0703125, 131.188, 0.0449219, -0.0644531, 0.0527344, 114.188, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1278, -1202, 27, -3]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1106, -1044, -21, -49]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-739, -556, 48, -13]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-473, -447, -67, -99]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-329, -184, -11, -33]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [192, 231, -40, -57]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 1,
| "wpDiffWeiEnableTh": {
| "wpDiffWeiNoTh": 0.004,
| "wpDiffWeiLvValueTh": 64
| },
| "wpDiffwei_y": [0, 16, 32, 64, 96, 128, 192, 224, 240],
| "perfectBin": [0, 0, 0, 1, 1, 1, 1, 0],
| "wpDiffWeightLvSet": [{
| "LvValue": 256,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 8192,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.2, 0.7, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 1,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.06436, 1, 1, 2.24878],
| "uvRegion": {
| "u": [124, 58, 57, 124],
| "v": [129, 141, 113, 128]
| },
| "xyRegion": {
| "normal": [-1.13272, -0.819444, 0.0773762, -0.0915663],
| "big": [-1.13204, -0.820926, 0.126908, -0.109772]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 135.062, 114.062, 187.062, 97.375, 115],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.40451, 1, 1, 2.04506],
| "uvRegion": {
| "u": [58, 65, 124.5, 124],
| "v": [99, 78, 125.5, 127]
| },
| "xyRegion": {
| "normal": [-0.819444, -0.50537, -0.0273092, -0.097992],
| "big": [-0.817963, -0.506852, -0.0262383, -0.120482]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.438, 115, 190.125, 116.188, 108],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.8522, 1, 1, 1.6033],
| "uvRegion": {
| "u": [63, 100.5, 127, 125],
| "v": [84, 48, 126, 126]
| },
| "xyRegion": {
| "normal": [-0.506181, -0.0411343, 0.0766622, -0.122178],
| "big": [-0.507045, -0.0411343, 0.126997, -0.13253]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 130.938, 114.25, 191, 130.5, 112.25],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.74476, 1, 1, 1.38348],
| "uvRegion": {
| "u": [97.5, 116, 128, 127],
| "v": [53, 48, 125, 126]
| },
| "xyRegion": {
| "normal": [-0.0411343, 0.106481, 0.0784471, -0.141901],
| "big": [-0.0394059, 0.107963, 0.109772, -0.15502]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 130, 114.312, 190.625, 142.312, 113.938],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.85237, 1, 1, 1.27508],
| "uvRegion": {
| "u": [128, 127, 113, 124],
| "v": [124, 125, 50, 45]
| },
| "xyRegion": {
| "normal": [0.106481, 0.358017, 0.0572959, -0.102544],
| "big": [0.107963, 0.36061, 0.125212, -0.119411]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 129.188, 113.938, 189.875, 149.25, 115.938],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.897704, 1, 1, 2.4304],
| "uvRegion": {
| "u": [123.5, 63, 58, 124],
| "v": [130.5, 160, 136, 129]
| },
| "xyRegion": {
| "normal": [-1.38241, -1.13204, 0.0669344, -0.0615796],
| "big": [-1.38093, -1.13352, 0.115127, -0.0797858]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 137.062, 113.812, 183.25, 84.875, 119.438],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.26543, 1, 1, 2.06744],
| "uvRegion": {
| "u": [124, 56, 60, 124],
| "v": [128, 117, 91, 127]
| },
| "xyRegion": {
| "normal": [-0.817963, -0.50537, 0.0787149, -0.0262383],
| "big": [-0.817963, -0.50537, 0.119411, -0.0262383]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 133.438, 114.5, 189.438, 109.875, 111.125],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.40451, 1, 1, 2.04506],
| "defaultDayGainHigh": [1.50061, 1, 1, 1.59029],
| "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, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500],
| "cct_len": 5,
| "cri_bound_up": [0.091, 0.091, 0.18, 0.12, 0.12],
| "cri_bound_up_len": 5,
| "cri_bound_low": [0.07, 0.07, 0.16, 0.16, 0.16],
| "cri_bound_low_len": 5
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [80],
| "low_len": 1,
| "high": [160],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.06436, 1, 1, 2.24878],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 4.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.002,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [160],
| "forBigType_len": 1,
| "forExtraType": [160],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 22.648,
| "meanH": 28.6718
| }, {
| "index": 13,
| "meanC": 20.6951,
| "meanH": -78.5683
| }, {
| "index": 5,
| "meanC": 9.9683,
| "meanH": -72.2509
| }, {
| "index": 10,
| "meanC": 12.1074,
| "meanH": -41.7784
| }, {
| "index": 14,
| "meanC": 14.5203,
| "meanH": 149.059
| }, {
| "index": 16,
| "meanC": 22.9986,
| "meanH": 86.5912
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.06436,
| "BGain": 2.24878
| }, {
| "name": "TL84",
| "RGain": 1.55061,
| "BGain": 1.59029
| }, {
| "name": "D50",
| "RGain": 1.26543,
| "BGain": 2.06744
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.2099, 1, 1, 1.6302],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_segnum": "GAMMATYPE_LOG",
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 2, 4, 6, 9, 11, 13, 15, 17, 21, 26, 30, 34, 43, 51, 60, 68, 85, 103, 120, 137, 172, 207, 243, 279, 354, 432, 513, 599, 783, 978, 1173, 1360, 1683, 1941, 2146, 2313, 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": [64, 63.75, 62.25, 63.1875, 58, 64, 64, 64, 64, 64, 64, 64, 64],
| "R_Channel_len": 13,
| "Gr_Channel": [64, 62.375, 61.875, 61.25, 59, 64, 64, 64, 64, 64, 64, 64, 64],
| "Gr_Channel_len": 13,
| "Gb_Channel": [64, 62.625, 62.25, 60.0625, 58, 64, 64, 64, 64, 64, 64, 64, 64],
| "Gb_Channel_len": 13,
| "B_Channel": [65, 62.3125, 62.4375, 63.5, 58, 64, 64, 64, 64, 64, 64, 64, 64],
| "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": "3264x2448",
| "lsc_sect_size_x": [204, 204, 204, 204, 204, 204, 204, 204],
| "lsc_sect_size_y": [153, 153, 153, 153, 153, 153, 153, 153]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.0348, 2.3446],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.4041, 2.1625],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.8522, 1.6033],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.6833, 1.4494],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.7742, 1.3348],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.8721, 2.5246],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.2346, 2.1332],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 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, 10, 31, 64],
| "gains_len": 4,
| "vig": [90, 60, 25, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "3264x2448_A_100",
| "resolution": "3264x2448",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4201, 4018, 3715, 3315, 3005, 2708, 2506, 2377, 2385, 2416, 2549, 2738, 3055, 3455, 3851, 4249, 4225, 4201, 3791, 3391, 2993, 2622, 2355, 2168, 2059, 2026, 2059, 2181, 2400, 2688, 3093, 3555, 3933, 4298, 4040, 3555, 3119, 2698, 2303, 2042, 1867, 1764, 1735, 1773, 1886, 2077, 2362, 2748, 3228, 3678, 4177, 3891, 3391, 2866, 2432, 2065, 1808, 1636, 1534, 1506, 1540, 1658, 1835, 2094, 2448, 2934, 3487, 3975, 3678, 3187, 2640, 2187, 1867, 1621, 1464, 1354, 1330, 1362, 1464, 1639, 1891, 2268, 2708, 3271, 3791, 3607, 3055, 2448, 2031, 1703, 1473, 1318, 1220, 1204, 1230, 1332, 1491, 1756, 2106, 2541, 3080, 3660, 3504, 2877, 2355, 1925, 1604, 1369, 1224, 1136, 1110, 1143, 1234, 1387, 1628, 1961, 2424, 2981, 3607, 3376, 2822, 2261, 1848, 1521, 1309, 1161, 1084, 1049, 1090, 1174, 1327, 1550, 1905, 2325, 2866, 3555, 3345, 2769, 2247, 1826, 1491, 1284, 1139, 1050, 1024, 1053, 1139, 1302, 1547, 1867, 2310, 2855, 3504, 3455, 2759, 2247, 1835, 1509, 1290, 1144, 1059, 1035, 1059, 1157, 1306, 1540, 1876, 2318, 2833, 3521, 3455, 2866, 2289, 1876, 1550, 1327, 1187, 1103, 1075, 1105, 1194, 1349, 1590, 1920, 2377, 2899, 3521, 3521, 2957, 2408, 1966, 1643, 1416, 1262, 1179, 1152, 1179, 1275, 1436, 1680, 2020, 2473, 2993, 3538, 3642, 3093, 2558, 2106, 1764, 1534, 1369, 1273, 1257, 1288, 1400, 1556, 1817, 2155, 2613, 3187, 3697, 3772, 3257, 2728, 2303, 1966, 1696, 1531, 1436, 1411, 1441, 1547, 1723, 1998, 2362, 2811, 3361, 3871, 3975, 3471, 3005, 2549, 2175, 1905, 1735, 1628, 1611, 1643, 1756, 1930, 2234, 2567, 3055, 3538, 4085, 4153, 3697, 3271, 2811, 2456, 2175, 1987, 1886, 1858, 1881, 2009, 2200, 2506, 2877, 3286, 3753, 4249, 4225, 3975, 3607, 3146, 2855, 2541, 2340, 2214, 2214, 2220, 2347, 2567, 2888, 3187, 3642, 4062, 4249]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3135, 3012, 2693, 2460, 2263, 2101, 1982, 1912, 1893, 1922, 1997, 2137, 2325, 2541, 2772, 3048, 3255, 3161, 2792, 2508, 2277, 2067, 1875, 1771, 1719, 1700, 1723, 1787, 1908, 2062, 2332, 2575, 2865, 3228, 3000, 2638, 2361, 2090, 1875, 1719, 1604, 1536, 1509, 1545, 1614, 1723, 1884, 2119, 2405, 2703, 3035, 2833, 2484, 2198, 1932, 1723, 1558, 1454, 1393, 1364, 1386, 1463, 1577, 1735, 1966, 2217, 2558, 2876, 2802, 2390, 2073, 1800, 1587, 1449, 1328, 1254, 1244, 1262, 1335, 1460, 1610, 1821, 2084, 2421, 2823, 2665, 2283, 1987, 1711, 1506, 1344, 1236, 1164, 1154, 1171, 1236, 1359, 1515, 1727, 2002, 2318, 2713, 2550, 2217, 1889, 1628, 1432, 1264, 1161, 1097, 1079, 1104, 1179, 1297, 1432, 1649, 1912, 2250, 2620, 2584, 2173, 1848, 1597, 1378, 1230, 1120, 1059, 1041, 1065, 1128, 1236, 1401, 1610, 1866, 2185, 2558, 2541, 2149, 1830, 1571, 1361, 1208, 1104, 1044, 1024, 1038, 1109, 1224, 1386, 1590, 1848, 2149, 2558, 2516, 2149, 1830, 1580, 1373, 1218, 1113, 1042, 1030, 1059, 1118, 1226, 1393, 1604, 1852, 2161, 2533, 2584, 2179, 1875, 1621, 1409, 1248, 1142, 1083, 1062, 1080, 1150, 1271, 1414, 1645, 1884, 2204, 2558, 2629, 2263, 1937, 1667, 1465, 1305, 1199, 1138, 1123, 1143, 1201, 1319, 1477, 1685, 1956, 2277, 2593, 2713, 2332, 2024, 1758, 1548, 1396, 1279, 1212, 1201, 1218, 1286, 1398, 1567, 1771, 2040, 2368, 2703, 2802, 2421, 2137, 1875, 1659, 1500, 1401, 1319, 1305, 1333, 1404, 1512, 1674, 1903, 2155, 2475, 2823, 2942, 2593, 2270, 2029, 1808, 1642, 1533, 1463, 1454, 1468, 1536, 1663, 1830, 2034, 2304, 2602, 2909, 3048, 2703, 2468, 2198, 1971, 1808, 1696, 1621, 1610, 1631, 1692, 1804, 1982, 2217, 2475, 2752, 3084, 3269, 2942, 2693, 2413, 2198, 2040, 1912, 1866, 1826, 1852, 1922, 2045, 2237, 2444, 2675, 2942, 3241]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3283, 2965, 2722, 2484, 2283, 2101, 1961, 1893, 1889, 1927, 1997, 2101, 2304, 2533, 2792, 3109, 3297, 3122, 2792, 2508, 2263, 2056, 1879, 1763, 1685, 1677, 1696, 1763, 1884, 2073, 2311, 2593, 2887, 3201, 2920, 2647, 2354, 2096, 1861, 1704, 1577, 1527, 1494, 1518, 1610, 1707, 1879, 2125, 2413, 2722, 3084, 2865, 2500, 2211, 1917, 1723, 1548, 1441, 1366, 1359, 1383, 1457, 1571, 1735, 1956, 2243, 2567, 2931, 2752, 2383, 2079, 1800, 1600, 1441, 1323, 1252, 1236, 1262, 1330, 1454, 1610, 1834, 2119, 2452, 2865, 2629, 2304, 1956, 1715, 1509, 1344, 1232, 1171, 1142, 1168, 1236, 1347, 1524, 1723, 2008, 2339, 2752, 2575, 2230, 1908, 1638, 1435, 1275, 1166, 1102, 1085, 1096, 1170, 1273, 1451, 1659, 1941, 2277, 2693, 2558, 2179, 1861, 1600, 1398, 1230, 1133, 1067, 1042, 1068, 1133, 1234, 1406, 1610, 1889, 2211, 2675, 2500, 2167, 1834, 1587, 1366, 1222, 1110, 1041, 1024, 1042, 1117, 1234, 1383, 1597, 1870, 2217, 2593, 2575, 2179, 1843, 1597, 1373, 1224, 1115, 1052, 1034, 1055, 1122, 1224, 1398, 1604, 1866, 2204, 2593, 2593, 2198, 1879, 1621, 1419, 1252, 1149, 1090, 1065, 1093, 1155, 1264, 1427, 1631, 1898, 2256, 2620, 2629, 2283, 1937, 1685, 1480, 1317, 1205, 1143, 1123, 1143, 1214, 1323, 1494, 1704, 1977, 2311, 2713, 2782, 2339, 2034, 1754, 1567, 1398, 1283, 1228, 1203, 1220, 1301, 1414, 1567, 1787, 2067, 2405, 2792, 2854, 2484, 2143, 1893, 1681, 1512, 1391, 1335, 1308, 1340, 1398, 1524, 1689, 1908, 2179, 2516, 2897, 2942, 2593, 2297, 2034, 1804, 1652, 1527, 1474, 1454, 1468, 1539, 1659, 1826, 2062, 2354, 2665, 3012, 3084, 2742, 2468, 2185, 1977, 1808, 1700, 1631, 1621, 1634, 1704, 1808, 1982, 2230, 2516, 2792, 3161, 3241, 2965, 2665, 2398, 2192, 2029, 1922, 1830, 1817, 1830, 1908, 2062, 2217, 2452, 2713, 3084, 3297]
| },
| "lsc_samples_blue": {
| "uCoeff": [3067, 2930, 2625, 2394, 2201, 2050, 1895, 1863, 1853, 1874, 1929, 2076, 2262, 2485, 2805, 3096, 3250, 3011, 2689, 2412, 2172, 1964, 1821, 1708, 1656, 1639, 1647, 1735, 1842, 2037, 2262, 2523, 2805, 3156, 2879, 2523, 2262, 1975, 1782, 1623, 1532, 1477, 1463, 1497, 1561, 1690, 1821, 2062, 2343, 2667, 3067, 2711, 2394, 2102, 1832, 1623, 1483, 1395, 1322, 1327, 1360, 1407, 1532, 1690, 1885, 2158, 2504, 2879, 2689, 2294, 1975, 1699, 1525, 1383, 1295, 1232, 1223, 1251, 1301, 1413, 1569, 1792, 2050, 2394, 2757, 2543, 2186, 1885, 1607, 1438, 1285, 1187, 1146, 1146, 1158, 1227, 1327, 1477, 1690, 1940, 2262, 2667, 2504, 2116, 1811, 1561, 1360, 1227, 1142, 1082, 1085, 1103, 1158, 1270, 1419, 1615, 1874, 2186, 2583, 2504, 2062, 1763, 1511, 1332, 1200, 1103, 1054, 1040, 1071, 1134, 1223, 1377, 1591, 1842, 2158, 2563, 2448, 2062, 1763, 1497, 1311, 1187, 1085, 1037, 1024, 1040, 1111, 1218, 1371, 1561, 1821, 2130, 2504, 2504, 2076, 1763, 1504, 1327, 1187, 1107, 1044, 1024, 1054, 1126, 1227, 1366, 1584, 1821, 2143, 2523, 2466, 2089, 1792, 1539, 1354, 1209, 1126, 1078, 1067, 1092, 1150, 1241, 1401, 1591, 1885, 2158, 2504, 2625, 2186, 1863, 1615, 1413, 1275, 1183, 1126, 1115, 1134, 1192, 1301, 1457, 1639, 1918, 2231, 2504, 2625, 2247, 1940, 1681, 1497, 1343, 1256, 1192, 1183, 1209, 1270, 1383, 1511, 1735, 1987, 2294, 2689, 2805, 2394, 2050, 1792, 1599, 1457, 1338, 1301, 1285, 1290, 1354, 1463, 1615, 1853, 2116, 2430, 2829, 2829, 2523, 2201, 1952, 1735, 1569, 1483, 1419, 1407, 1425, 1497, 1607, 1763, 1987, 2247, 2543, 2879, 2957, 2646, 2377, 2130, 1906, 1708, 1623, 1576, 1539, 1569, 1639, 1763, 1906, 2130, 2412, 2689, 3096, 3126, 2879, 2625, 2377, 2116, 1952, 1863, 1772, 1753, 1772, 1842, 1975, 2143, 2394, 2646, 2930, 3218]
| }
| }, {
| "name": "3264x2448_A_70",
| "resolution": "3264x2448",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3248, 3260, 3132, 2890, 2689, 2474, 2322, 2221, 2232, 2255, 2359, 2499, 2731, 3004, 3239, 3432, 3265, 3336, 3156, 2935, 2676, 2406, 2203, 2054, 1966, 1939, 1966, 2066, 2243, 2463, 2760, 3067, 3266, 3406, 3283, 3027, 2759, 2464, 2158, 1948, 1802, 1714, 1689, 1722, 1820, 1980, 2210, 2507, 2849, 3124, 3385, 3221, 2938, 2582, 2261, 1966, 1751, 1601, 1509, 1484, 1515, 1621, 1776, 1993, 2275, 2640, 3016, 3286, 3096, 2805, 2415, 2063, 1800, 1587, 1446, 1343, 1321, 1351, 1446, 1604, 1822, 2135, 2474, 2874, 3184, 3069, 2719, 2266, 1936, 1657, 1453, 1309, 1216, 1201, 1226, 1323, 1470, 1707, 2004, 2347, 2740, 3111, 3007, 2585, 2196, 1847, 1570, 1356, 1220, 1135, 1109, 1142, 1230, 1374, 1593, 1880, 2257, 2673, 3090, 2916, 2548, 2120, 1781, 1495, 1300, 1159, 1084, 1049, 1090, 1172, 1318, 1522, 1834, 2176, 2585, 3060, 2895, 2506, 2109, 1762, 1467, 1276, 1138, 1050, 1024, 1053, 1138, 1294, 1520, 1800, 2165, 2579, 3023, 2980, 2494, 2107, 1769, 1483, 1282, 1142, 1059, 1035, 1059, 1155, 1297, 1513, 1807, 2170, 2557, 3033, 2968, 2576, 2138, 1803, 1519, 1316, 1184, 1102, 1075, 1104, 1191, 1337, 1557, 1843, 2216, 2604, 3021, 3001, 2637, 2231, 1877, 1601, 1398, 1255, 1176, 1150, 1176, 1268, 1417, 1636, 1926, 2288, 2667, 3015, 3068, 2727, 2344, 1991, 1705, 1505, 1355, 1265, 1250, 1279, 1384, 1525, 1754, 2034, 2392, 2805, 3111, 3130, 2830, 2466, 2147, 1877, 1647, 1502, 1416, 1394, 1421, 1517, 1672, 1906, 2199, 2536, 2914, 3206, 3234, 2960, 2665, 2336, 2045, 1824, 1680, 1587, 1573, 1601, 1700, 1846, 2097, 2351, 2706, 3013, 3316, 3301, 3084, 2838, 2523, 2263, 2044, 1891, 1808, 1785, 1804, 1911, 2066, 2306, 2578, 2850, 3127, 3371, 3265, 3228, 3048, 2753, 2563, 2330, 2176, 2077, 2080, 2082, 2182, 2352, 2591, 2786, 3075, 3293, 3282]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2502, 2508, 2332, 2194, 2065, 1951, 1863, 1809, 1795, 1818, 1876, 1982, 2117, 2260, 2394, 2535, 2586, 2579, 2386, 2222, 2075, 1926, 1778, 1697, 1656, 1641, 1660, 1711, 1807, 1922, 2121, 2276, 2443, 2628, 2504, 2301, 2131, 1941, 1779, 1655, 1559, 1501, 1478, 1510, 1569, 1659, 1787, 1966, 2168, 2353, 2530, 2410, 2205, 2017, 1822, 1657, 1519, 1429, 1375, 1349, 1368, 1438, 1536, 1668, 1851, 2033, 2265, 2443, 2412, 2148, 1927, 1717, 1542, 1425, 1315, 1247, 1238, 1254, 1322, 1435, 1564, 1736, 1936, 2174, 2428, 2323, 2075, 1864, 1646, 1474, 1330, 1230, 1161, 1152, 1168, 1230, 1344, 1482, 1660, 1877, 2104, 2361, 2244, 2029, 1786, 1576, 1408, 1255, 1158, 1096, 1079, 1103, 1176, 1287, 1408, 1595, 1806, 2057, 2300, 2279, 1998, 1754, 1551, 1359, 1224, 1119, 1059, 1041, 1065, 1126, 1229, 1381, 1563, 1770, 2008, 2258, 2247, 1979, 1739, 1528, 1344, 1203, 1103, 1044, 1024, 1038, 1108, 1218, 1367, 1545, 1755, 1979, 2261, 2224, 1977, 1738, 1535, 1354, 1212, 1112, 1042, 1030, 1059, 1117, 1220, 1373, 1557, 1757, 1988, 2238, 2272, 1997, 1774, 1570, 1387, 1240, 1140, 1082, 1062, 1079, 1147, 1262, 1391, 1592, 1781, 2018, 2251, 2295, 2058, 1821, 1606, 1435, 1292, 1194, 1136, 1121, 1141, 1196, 1306, 1447, 1622, 1837, 2070, 2266, 2343, 2101, 1885, 1680, 1506, 1375, 1268, 1206, 1196, 1212, 1275, 1376, 1524, 1691, 1899, 2130, 2335, 2387, 2154, 1966, 1771, 1599, 1465, 1379, 1305, 1292, 1318, 1382, 1476, 1612, 1796, 1981, 2198, 2403, 2460, 2265, 2056, 1888, 1719, 1585, 1494, 1433, 1426, 1438, 1497, 1604, 1739, 1893, 2084, 2273, 2436, 2497, 2318, 2190, 2009, 1843, 1718, 1629, 1567, 1559, 1576, 1626, 1715, 1853, 2025, 2195, 2356, 2523, 2596, 2456, 2332, 2156, 2011, 1899, 1801, 1769, 1736, 1756, 1810, 1903, 2043, 2181, 2318, 2456, 2576]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2605, 2473, 2354, 2213, 2082, 1951, 1844, 1793, 1792, 1823, 1876, 1951, 2100, 2253, 2409, 2581, 2615, 2551, 2386, 2222, 2063, 1917, 1781, 1690, 1625, 1620, 1635, 1690, 1786, 1931, 2104, 2291, 2460, 2608, 2444, 2308, 2126, 1946, 1766, 1641, 1534, 1493, 1464, 1485, 1565, 1644, 1782, 1971, 2174, 2368, 2567, 2435, 2218, 2028, 1808, 1657, 1510, 1417, 1349, 1344, 1366, 1432, 1531, 1668, 1843, 2055, 2272, 2486, 2373, 2143, 1932, 1717, 1554, 1417, 1310, 1245, 1230, 1254, 1317, 1429, 1564, 1748, 1967, 2200, 2461, 2295, 2092, 1837, 1650, 1476, 1330, 1226, 1168, 1140, 1165, 1230, 1332, 1490, 1657, 1882, 2121, 2392, 2264, 2040, 1803, 1585, 1411, 1266, 1163, 1101, 1085, 1095, 1167, 1264, 1426, 1604, 1832, 2080, 2359, 2258, 2003, 1765, 1553, 1378, 1224, 1131, 1067, 1042, 1068, 1131, 1228, 1386, 1563, 1790, 2030, 2352, 2214, 1995, 1743, 1542, 1348, 1216, 1109, 1041, 1024, 1042, 1116, 1228, 1365, 1552, 1775, 2037, 2289, 2272, 2003, 1749, 1551, 1354, 1218, 1114, 1052, 1034, 1055, 1121, 1218, 1378, 1557, 1770, 2024, 2286, 2279, 2013, 1777, 1570, 1396, 1244, 1146, 1089, 1065, 1092, 1152, 1255, 1403, 1579, 1794, 2062, 2300, 2295, 2075, 1821, 1622, 1449, 1304, 1200, 1141, 1121, 1141, 1208, 1309, 1462, 1640, 1855, 2098, 2361, 2396, 2107, 1893, 1676, 1524, 1376, 1272, 1221, 1198, 1214, 1289, 1392, 1524, 1706, 1922, 2161, 2404, 2427, 2205, 1971, 1787, 1619, 1476, 1370, 1320, 1295, 1325, 1376, 1487, 1626, 1800, 2001, 2231, 2459, 2460, 2265, 2078, 1893, 1716, 1594, 1488, 1444, 1426, 1438, 1499, 1600, 1735, 1917, 2126, 2322, 2513, 2523, 2348, 2190, 1998, 1848, 1718, 1633, 1576, 1569, 1579, 1637, 1718, 1853, 2036, 2229, 2386, 2579, 2576, 2473, 2310, 2143, 2006, 1889, 1810, 1737, 1728, 1737, 1798, 1918, 2027, 2187, 2347, 2562, 2615]
| },
| "lsc_samples_blue": {
| "uCoeff": [2454, 2447, 2278, 2140, 2013, 1907, 1787, 1766, 1760, 1776, 1816, 1930, 2064, 2214, 2419, 2571, 2582, 2470, 2307, 2145, 1987, 1837, 1730, 1640, 1599, 1585, 1591, 1664, 1749, 1900, 2062, 2234, 2396, 2575, 2413, 2210, 2049, 1842, 1696, 1568, 1493, 1446, 1435, 1465, 1520, 1629, 1731, 1917, 2116, 2324, 2554, 2317, 2132, 1936, 1734, 1566, 1449, 1374, 1308, 1313, 1344, 1385, 1495, 1627, 1780, 1983, 2221, 2446, 2324, 2069, 1843, 1627, 1485, 1362, 1284, 1225, 1217, 1244, 1289, 1391, 1526, 1710, 1907, 2152, 2377, 2227, 1994, 1775, 1552, 1410, 1273, 1182, 1144, 1144, 1155, 1221, 1313, 1447, 1627, 1823, 2057, 2325, 2208, 1944, 1717, 1515, 1340, 1220, 1140, 1081, 1085, 1102, 1155, 1261, 1396, 1564, 1773, 2003, 2271, 2215, 1904, 1679, 1472, 1316, 1195, 1102, 1054, 1040, 1071, 1132, 1217, 1358, 1545, 1749, 1985, 2262, 2172, 1905, 1680, 1460, 1296, 1182, 1084, 1037, 1024, 1040, 1110, 1212, 1353, 1518, 1731, 1963, 2217, 2215, 1916, 1679, 1465, 1311, 1182, 1106, 1044, 1024, 1054, 1124, 1221, 1348, 1539, 1730, 1972, 2230, 2177, 1921, 1700, 1495, 1335, 1202, 1124, 1077, 1067, 1091, 1147, 1233, 1379, 1542, 1782, 1980, 2208, 2292, 1994, 1756, 1559, 1387, 1264, 1178, 1124, 1114, 1132, 1187, 1288, 1428, 1581, 1804, 2031, 2196, 2274, 2031, 1813, 1611, 1460, 1325, 1246, 1187, 1178, 1203, 1260, 1362, 1472, 1659, 1853, 2069, 2324, 2389, 2132, 1892, 1699, 1545, 1425, 1320, 1288, 1273, 1277, 1335, 1431, 1559, 1752, 1948, 2161, 2407, 2376, 2210, 1999, 1822, 1654, 1519, 1448, 1392, 1382, 1398, 1461, 1553, 1679, 1852, 2037, 2226, 2413, 2431, 2274, 2116, 1952, 1787, 1630, 1564, 1526, 1494, 1520, 1578, 1679, 1787, 1952, 2145, 2307, 2532, 2495, 2409, 2278, 2126, 1942, 1823, 1759, 1686, 1671, 1686, 1740, 1843, 1964, 2140, 2295, 2447, 2560]
| }
| }, {
| "name": "3264x2448_CWF_100",
| "resolution": "3264x2448",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3393, 3286, 2984, 2704, 2393, 2209, 2068, 1989, 1974, 2020, 2110, 2257, 2472, 2776, 3127, 3438, 3532, 3350, 3036, 2704, 2415, 2136, 1952, 1822, 1754, 1725, 1760, 1828, 1997, 2209, 2496, 2837, 3166, 3532, 3286, 2868, 2508, 2200, 1923, 1725, 1612, 1531, 1509, 1545, 1633, 1766, 1982, 2267, 2622, 2967, 3328, 3185, 2718, 2318, 1997, 1754, 1559, 1446, 1377, 1352, 1388, 1462, 1593, 1790, 2052, 2382, 2791, 3166, 2984, 2545, 2163, 1854, 1607, 1434, 1314, 1251, 1233, 1251, 1331, 1458, 1633, 1902, 2257, 2676, 3127, 2868, 2461, 2044, 1713, 1483, 1328, 1210, 1159, 1141, 1169, 1233, 1342, 1523, 1784, 2102, 2508, 2984, 2747, 2360, 1930, 1638, 1411, 1251, 1149, 1098, 1086, 1102, 1169, 1282, 1446, 1691, 2036, 2437, 2950, 2791, 2277, 1881, 1597, 1363, 1196, 1107, 1060, 1043, 1068, 1121, 1233, 1407, 1633, 1952, 2360, 2837, 2718, 2247, 1848, 1564, 1331, 1191, 1091, 1036, 1024, 1045, 1112, 1222, 1384, 1627, 1930, 2328, 2853, 2718, 2267, 1868, 1564, 1348, 1193, 1098, 1040, 1034, 1055, 1114, 1224, 1384, 1617, 1937, 2339, 2837, 2837, 2318, 1902, 1602, 1377, 1216, 1117, 1075, 1051, 1082, 1144, 1239, 1418, 1669, 1974, 2404, 2868, 2868, 2404, 1989, 1669, 1438, 1282, 1175, 1119, 1098, 1119, 1191, 1301, 1483, 1725, 2044, 2449, 2917, 2967, 2496, 2110, 1772, 1536, 1370, 1257, 1193, 1177, 1199, 1282, 1392, 1573, 1841, 2163, 2570, 3018, 3072, 2622, 2267, 1909, 1659, 1488, 1359, 1282, 1269, 1314, 1377, 1514, 1697, 1974, 2307, 2718, 3166, 3245, 2806, 2426, 2085, 1809, 1638, 1514, 1438, 1430, 1442, 1536, 1653, 1861, 2145, 2484, 2853, 3350, 3307, 2984, 2662, 2318, 2012, 1822, 1697, 1602, 1583, 1622, 1719, 1841, 2068, 2360, 2690, 3036, 3461, 3556, 3205, 2853, 2622, 2307, 2077, 1952, 1868, 1848, 1874, 1959, 2136, 2328, 2609, 2950, 3307, 3532]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3098, 2834, 2584, 2328, 2157, 2014, 1894, 1837, 1796, 1828, 1914, 2031, 2216, 2382, 2649, 2913, 3111, 3034, 2659, 2389, 2157, 1955, 1814, 1696, 1639, 1610, 1639, 1708, 1814, 2003, 2229, 2470, 2718, 3059, 2834, 2504, 2236, 1987, 1792, 1647, 1536, 1483, 1459, 1465, 1539, 1654, 1801, 1992, 2285, 2593, 2913, 2708, 2389, 2095, 1837, 1677, 1507, 1401, 1342, 1322, 1351, 1406, 1517, 1662, 1846, 2132, 2429, 2769, 2602, 2278, 1981, 1733, 1552, 1401, 1296, 1231, 1212, 1233, 1303, 1403, 1556, 1758, 2003, 2321, 2621, 2530, 2183, 1884, 1639, 1465, 1315, 1210, 1148, 1134, 1150, 1212, 1327, 1468, 1658, 1904, 2222, 2574, 2462, 2119, 1819, 1589, 1393, 1241, 1155, 1091, 1085, 1096, 1155, 1256, 1403, 1610, 1832, 2138, 2530, 2445, 2071, 1779, 1536, 1351, 1206, 1111, 1064, 1040, 1061, 1115, 1217, 1364, 1552, 1792, 2101, 2478, 2397, 2059, 1762, 1533, 1332, 1193, 1101, 1044, 1024, 1044, 1109, 1204, 1346, 1530, 1770, 2059, 2437, 2405, 2059, 1753, 1533, 1332, 1197, 1111, 1054, 1037, 1052, 1108, 1208, 1351, 1526, 1775, 2077, 2405, 2453, 2077, 1788, 1556, 1374, 1229, 1132, 1075, 1060, 1072, 1135, 1243, 1385, 1569, 1819, 2101, 2437, 2504, 2144, 1856, 1618, 1425, 1287, 1181, 1135, 1118, 1125, 1181, 1289, 1436, 1625, 1865, 2170, 2512, 2565, 2243, 1939, 1704, 1498, 1364, 1256, 1199, 1181, 1197, 1261, 1367, 1511, 1700, 1955, 2243, 2556, 2668, 2351, 2059, 1805, 1603, 1462, 1356, 1296, 1280, 1287, 1361, 1462, 1610, 1810, 2059, 2351, 2678, 2823, 2462, 2189, 1939, 1741, 1583, 1480, 1409, 1401, 1425, 1477, 1593, 1733, 1944, 2202, 2487, 2801, 2960, 2602, 2351, 2089, 1884, 1728, 1639, 1566, 1542, 1566, 1625, 1741, 1889, 2113, 2351, 2630, 2972, 3151, 2801, 2556, 2306, 2101, 1929, 1810, 1766, 1741, 1762, 1842, 1960, 2101, 2299, 2530, 2856, 3059]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2947, 2821, 2562, 2302, 2126, 1959, 1845, 1808, 1799, 1808, 1883, 1997, 2171, 2385, 2599, 2888, 3085, 2983, 2617, 2369, 2145, 1928, 1777, 1674, 1622, 1593, 1618, 1686, 1795, 1954, 2177, 2441, 2726, 3046, 2810, 2491, 2197, 1954, 1760, 1626, 1533, 1465, 1444, 1462, 1526, 1629, 1795, 2019, 2266, 2553, 2900, 2675, 2346, 2077, 1822, 1633, 1489, 1400, 1330, 1318, 1338, 1408, 1495, 1655, 1864, 2114, 2425, 2767, 2599, 2238, 1938, 1706, 1526, 1384, 1292, 1227, 1204, 1227, 1292, 1389, 1546, 1730, 2003, 2324, 2665, 2491, 2177, 1873, 1615, 1438, 1302, 1198, 1142, 1129, 1145, 1206, 1304, 1465, 1655, 1908, 2210, 2636, 2458, 2083, 1803, 1569, 1368, 1235, 1142, 1087, 1069, 1085, 1144, 1248, 1394, 1593, 1831, 2145, 2509, 2377, 2060, 1755, 1520, 1338, 1202, 1100, 1055, 1040, 1055, 1107, 1202, 1350, 1539, 1790, 2101, 2483, 2362, 2031, 1739, 1510, 1321, 1185, 1090, 1039, 1024, 1036, 1093, 1190, 1335, 1526, 1777, 2065, 2458, 2401, 2025, 1760, 1526, 1340, 1194, 1093, 1045, 1027, 1052, 1103, 1198, 1340, 1536, 1781, 2089, 2458, 2441, 2095, 1777, 1562, 1368, 1216, 1133, 1085, 1054, 1077, 1135, 1229, 1378, 1569, 1812, 2114, 2474, 2474, 2158, 1835, 1597, 1413, 1270, 1177, 1121, 1109, 1122, 1187, 1276, 1436, 1622, 1864, 2184, 2544, 2571, 2217, 1923, 1682, 1489, 1360, 1248, 1192, 1183, 1202, 1256, 1358, 1510, 1710, 1965, 2266, 2599, 2665, 2346, 2031, 1781, 1593, 1456, 1360, 1295, 1276, 1297, 1358, 1465, 1604, 1817, 2065, 2385, 2715, 2799, 2449, 2171, 1918, 1726, 1580, 1489, 1416, 1402, 1419, 1483, 1586, 1734, 1944, 2217, 2500, 2821, 2959, 2580, 2339, 2071, 1878, 1722, 1626, 1569, 1539, 1562, 1626, 1739, 1893, 2101, 2354, 2636, 2983, 3059, 2767, 2491, 2294, 2083, 1938, 1799, 1747, 1726, 1743, 1831, 1928, 2101, 2302, 2526, 2832, 3085]
| },
| "lsc_samples_blue": {
| "uCoeff": [2969, 2685, 2487, 2270, 2075, 1910, 1798, 1752, 1716, 1752, 1808, 1932, 2114, 2333, 2563, 2843, 3077, 2892, 2506, 2285, 2050, 1828, 1708, 1618, 1558, 1551, 1565, 1625, 1734, 1889, 2101, 2365, 2643, 2892, 2685, 2382, 2140, 1868, 1665, 1530, 1463, 1403, 1391, 1426, 1470, 1572, 1716, 1910, 2168, 2469, 2843, 2582, 2270, 1978, 1725, 1551, 1420, 1325, 1275, 1271, 1310, 1357, 1438, 1587, 1779, 2037, 2317, 2643, 2487, 2127, 1868, 1633, 1432, 1325, 1220, 1190, 1178, 1198, 1252, 1347, 1470, 1674, 1889, 2225, 2582, 2434, 2062, 1761, 1530, 1368, 1229, 1161, 1123, 1104, 1123, 1173, 1266, 1408, 1580, 1828, 2114, 2487, 2349, 2001, 1708, 1476, 1310, 1186, 1119, 1063, 1066, 1076, 1119, 1216, 1352, 1523, 1761, 2062, 2399, 2317, 1943, 1690, 1438, 1266, 1161, 1080, 1046, 1033, 1049, 1101, 1190, 1320, 1502, 1725, 2001, 2365, 2301, 1932, 1657, 1438, 1256, 1142, 1066, 1027, 1024, 1037, 1087, 1173, 1305, 1476, 1708, 1989, 2349, 2333, 1943, 1649, 1426, 1266, 1153, 1080, 1040, 1027, 1037, 1097, 1169, 1300, 1496, 1708, 2001, 2349, 2333, 1978, 1674, 1438, 1285, 1178, 1087, 1053, 1043, 1063, 1112, 1203, 1336, 1523, 1752, 2025, 2365, 2399, 2062, 1752, 1516, 1331, 1211, 1130, 1094, 1090, 1101, 1138, 1238, 1368, 1565, 1779, 2075, 2365, 2451, 2168, 1818, 1595, 1408, 1290, 1194, 1142, 1138, 1153, 1224, 1305, 1445, 1625, 1858, 2154, 2525, 2582, 2225, 1921, 1699, 1496, 1385, 1285, 1233, 1233, 1243, 1295, 1397, 1530, 1752, 1978, 2285, 2664, 2707, 2365, 2050, 1808, 1633, 1496, 1397, 1336, 1331, 1357, 1414, 1502, 1657, 1838, 2101, 2382, 2728, 2796, 2506, 2210, 1978, 1770, 1618, 1530, 1483, 1463, 1489, 1544, 1649, 1798, 2001, 2255, 2525, 2943, 3022, 2643, 2416, 2196, 1989, 1858, 1725, 1641, 1665, 1682, 1752, 1828, 2025, 2182, 2434, 2707, 2943]
| }
| }, {
| "name": "3264x2448_CWF_70",
| "resolution": "3264x2448",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2682, 2713, 2560, 2393, 2175, 2044, 1938, 1878, 1867, 1905, 1975, 2085, 2241, 2451, 2672, 2827, 2780, 2717, 2575, 2380, 2191, 1986, 1846, 1743, 1688, 1664, 1694, 1748, 1886, 2049, 2259, 2488, 2675, 2849, 2718, 2483, 2253, 2035, 1821, 1660, 1567, 1497, 1478, 1510, 1586, 1698, 1873, 2093, 2347, 2561, 2749, 2680, 2394, 2119, 1879, 1685, 1520, 1422, 1360, 1337, 1370, 1437, 1551, 1717, 1927, 2173, 2453, 2666, 2554, 2276, 2004, 1766, 1561, 1410, 1302, 1244, 1227, 1244, 1318, 1433, 1585, 1808, 2085, 2384, 2666, 2484, 2223, 1914, 1648, 1452, 1314, 1205, 1156, 1139, 1166, 1227, 1328, 1490, 1712, 1964, 2262, 2576, 2402, 2150, 1822, 1585, 1388, 1243, 1146, 1097, 1086, 1101, 1166, 1273, 1421, 1634, 1915, 2215, 2564, 2446, 2086, 1783, 1551, 1345, 1191, 1106, 1060, 1043, 1068, 1120, 1227, 1387, 1584, 1846, 2156, 2483, 2390, 2063, 1755, 1521, 1315, 1186, 1090, 1036, 1024, 1045, 1111, 1216, 1366, 1579, 1828, 2131, 2498, 2387, 2077, 1772, 1520, 1331, 1188, 1097, 1040, 1034, 1055, 1113, 1218, 1365, 1569, 1833, 2138, 2483, 2474, 2114, 1797, 1552, 1356, 1209, 1115, 1074, 1051, 1081, 1142, 1231, 1395, 1613, 1861, 2187, 2499, 2484, 2176, 1866, 1608, 1410, 1270, 1171, 1117, 1097, 1117, 1186, 1288, 1452, 1659, 1914, 2213, 2523, 2541, 2236, 1959, 1692, 1495, 1350, 1247, 1188, 1173, 1193, 1271, 1371, 1529, 1754, 2004, 2297, 2581, 2594, 2316, 2076, 1801, 1599, 1454, 1340, 1270, 1258, 1300, 1357, 1478, 1633, 1858, 2109, 2394, 2666, 2687, 2434, 2185, 1937, 1720, 1581, 1476, 1410, 1404, 1414, 1497, 1595, 1766, 1988, 2233, 2471, 2766, 2685, 2534, 2346, 2109, 1879, 1731, 1630, 1550, 1534, 1568, 1650, 1748, 1927, 2145, 2369, 2575, 2797, 2796, 2653, 2457, 2326, 2102, 1930, 1837, 1770, 1755, 1776, 1843, 1981, 2120, 2315, 2533, 2729, 2780]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2476, 2376, 2246, 2086, 1976, 1876, 1786, 1743, 1709, 1735, 1803, 1891, 2026, 2130, 2297, 2435, 2485, 2487, 2284, 2126, 1974, 1829, 1724, 1629, 1584, 1559, 1584, 1640, 1724, 1871, 2035, 2191, 2329, 2505, 2379, 2195, 2028, 1852, 1705, 1590, 1497, 1452, 1431, 1435, 1499, 1596, 1713, 1857, 2068, 2265, 2439, 2315, 2128, 1930, 1738, 1615, 1472, 1379, 1327, 1309, 1335, 1384, 1481, 1602, 1746, 1961, 2160, 2361, 2256, 2056, 1848, 1657, 1510, 1379, 1285, 1224, 1207, 1226, 1291, 1381, 1514, 1680, 1867, 2092, 2271, 2216, 1991, 1774, 1581, 1435, 1302, 1205, 1146, 1132, 1148, 1206, 1313, 1438, 1598, 1792, 2024, 2251, 2174, 1947, 1724, 1540, 1371, 1233, 1152, 1090, 1085, 1095, 1152, 1248, 1381, 1560, 1736, 1963, 2228, 2167, 1911, 1693, 1495, 1334, 1200, 1110, 1064, 1040, 1061, 1114, 1211, 1346, 1509, 1704, 1937, 2194, 2131, 1903, 1679, 1493, 1316, 1188, 1100, 1044, 1024, 1044, 1108, 1199, 1329, 1490, 1686, 1903, 2163, 2135, 1901, 1670, 1492, 1316, 1192, 1110, 1054, 1037, 1052, 1107, 1202, 1334, 1485, 1689, 1916, 2135, 2167, 1911, 1697, 1510, 1354, 1222, 1130, 1074, 1060, 1071, 1133, 1235, 1364, 1522, 1724, 1932, 2154, 2196, 1959, 1750, 1562, 1398, 1275, 1176, 1133, 1116, 1123, 1176, 1277, 1408, 1568, 1758, 1980, 2202, 2227, 2027, 1812, 1632, 1460, 1344, 1246, 1193, 1176, 1191, 1251, 1347, 1472, 1628, 1825, 2027, 2220, 2284, 2097, 1900, 1710, 1548, 1430, 1337, 1283, 1268, 1274, 1342, 1430, 1555, 1714, 1900, 2097, 2292, 2371, 2162, 1989, 1811, 1660, 1531, 1445, 1383, 1377, 1398, 1442, 1541, 1653, 1815, 2000, 2182, 2355, 2433, 2240, 2095, 1917, 1768, 1648, 1578, 1517, 1497, 1517, 1565, 1659, 1772, 1937, 2095, 2262, 2442, 2513, 2351, 2224, 2068, 1929, 1803, 1712, 1680, 1660, 1677, 1740, 1830, 1929, 2063, 2204, 2392, 2449]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2370, 2366, 2229, 2065, 1950, 1829, 1743, 1717, 1712, 1717, 1776, 1862, 1988, 2133, 2258, 2416, 2467, 2450, 2252, 2110, 1964, 1806, 1691, 1610, 1568, 1543, 1564, 1620, 1707, 1828, 1991, 2168, 2336, 2495, 2361, 2185, 1995, 1824, 1677, 1570, 1494, 1435, 1417, 1432, 1487, 1573, 1708, 1880, 2053, 2234, 2429, 2289, 2093, 1915, 1725, 1575, 1455, 1378, 1315, 1305, 1323, 1386, 1460, 1595, 1762, 1946, 2157, 2360, 2254, 2023, 1811, 1633, 1486, 1363, 1281, 1220, 1199, 1220, 1281, 1368, 1505, 1655, 1867, 2094, 2305, 2186, 1986, 1765, 1559, 1410, 1289, 1193, 1140, 1127, 1143, 1201, 1291, 1435, 1595, 1795, 2014, 2300, 2171, 1916, 1710, 1522, 1348, 1227, 1140, 1086, 1069, 1084, 1142, 1240, 1372, 1544, 1735, 1969, 2212, 2113, 1902, 1671, 1480, 1321, 1196, 1099, 1055, 1040, 1055, 1106, 1196, 1333, 1497, 1702, 1937, 2198, 2103, 1879, 1659, 1471, 1306, 1180, 1089, 1039, 1024, 1036, 1092, 1185, 1319, 1486, 1692, 1908, 2180, 2132, 1872, 1676, 1485, 1323, 1189, 1092, 1045, 1027, 1052, 1102, 1193, 1323, 1495, 1695, 1927, 2178, 2157, 1926, 1687, 1516, 1348, 1209, 1131, 1084, 1054, 1076, 1133, 1222, 1357, 1522, 1718, 1942, 2184, 2172, 1970, 1732, 1543, 1387, 1259, 1173, 1119, 1108, 1120, 1182, 1265, 1408, 1565, 1757, 1992, 2228, 2232, 2006, 1798, 1612, 1452, 1341, 1239, 1187, 1178, 1196, 1246, 1339, 1471, 1637, 1834, 2046, 2254, 2282, 2093, 1876, 1689, 1539, 1424, 1341, 1282, 1265, 1284, 1339, 1433, 1549, 1721, 1905, 2125, 2320, 2353, 2152, 1974, 1793, 1646, 1529, 1453, 1389, 1378, 1392, 1448, 1534, 1654, 1815, 2012, 2192, 2370, 2432, 2223, 2086, 1902, 1763, 1642, 1566, 1520, 1494, 1514, 1566, 1657, 1776, 1927, 2098, 2266, 2450, 2449, 2326, 2173, 2059, 1914, 1811, 1703, 1663, 1647, 1660, 1731, 1802, 1929, 2065, 2201, 2374, 2467]
| },
| "lsc_samples_blue": {
| "uCoeff": [2386, 2264, 2170, 2039, 1907, 1787, 1702, 1668, 1638, 1668, 1710, 1806, 1940, 2090, 2230, 2382, 2461, 2383, 2166, 2042, 1885, 1719, 1630, 1559, 1510, 1505, 1516, 1565, 1653, 1772, 1927, 2107, 2272, 2383, 2268, 2099, 1948, 1750, 1592, 1483, 1429, 1377, 1367, 1399, 1436, 1521, 1638, 1786, 1971, 2167, 2386, 2218, 2032, 1831, 1640, 1501, 1391, 1308, 1263, 1260, 1296, 1338, 1408, 1534, 1687, 1881, 2070, 2265, 2166, 1932, 1751, 1568, 1400, 1308, 1212, 1185, 1174, 1192, 1242, 1328, 1435, 1605, 1769, 2013, 2240, 2140, 1890, 1667, 1482, 1345, 1220, 1157, 1121, 1103, 1121, 1169, 1255, 1382, 1527, 1725, 1934, 2182, 2084, 1847, 1626, 1437, 1293, 1180, 1117, 1063, 1066, 1075, 1117, 1209, 1333, 1480, 1673, 1899, 2124, 2064, 1803, 1614, 1404, 1253, 1157, 1079, 1046, 1033, 1049, 1100, 1185, 1304, 1463, 1645, 1852, 2103, 2053, 1795, 1586, 1405, 1244, 1139, 1065, 1027, 1024, 1037, 1086, 1169, 1291, 1440, 1631, 1843, 2092, 2077, 1803, 1578, 1393, 1253, 1149, 1079, 1040, 1027, 1037, 1096, 1165, 1285, 1458, 1630, 1852, 2090, 2071, 1828, 1596, 1402, 1270, 1172, 1086, 1053, 1043, 1063, 1110, 1197, 1318, 1480, 1665, 1867, 2096, 2113, 1890, 1659, 1469, 1310, 1203, 1127, 1093, 1089, 1099, 1135, 1228, 1345, 1514, 1683, 1901, 2086, 2138, 1966, 1707, 1534, 1378, 1275, 1187, 1138, 1135, 1149, 1216, 1289, 1412, 1561, 1742, 1954, 2196, 2218, 1995, 1783, 1617, 1451, 1359, 1270, 1223, 1224, 1232, 1279, 1370, 1482, 1663, 1831, 2044, 2281, 2284, 2085, 1874, 1698, 1564, 1452, 1368, 1315, 1311, 1334, 1384, 1458, 1585, 1724, 1916, 2099, 2300, 2313, 2166, 1982, 1824, 1669, 1550, 1480, 1442, 1425, 1447, 1492, 1578, 1694, 1844, 2018, 2181, 2420, 2423, 2233, 2115, 1979, 1835, 1742, 1638, 1570, 1593, 1606, 1661, 1716, 1865, 1967, 2129, 2281, 2367]
| }
| }, {
| "name": "3264x2448_D50_100",
| "resolution": "3264x2448",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3820, 3573, 3333, 2939, 2729, 2411, 2278, 2178, 2141, 2197, 2278, 2459, 2744, 3085, 3402, 3791, 3942, 3706, 3356, 3028, 2656, 2343, 2122, 1979, 1910, 1846, 1903, 1995, 2169, 2447, 2744, 3123, 3498, 3911, 3599, 3143, 2759, 2423, 2104, 1874, 1736, 1639, 1623, 1661, 1730, 1903, 2169, 2459, 2871, 3333, 3850, 3449, 3010, 2587, 2169, 1896, 1672, 1528, 1448, 1435, 1465, 1557, 1707, 1940, 2247, 2642, 3123, 3599, 3356, 2822, 2365, 2003, 1724, 1519, 1387, 1310, 1290, 1310, 1391, 1552, 1749, 2061, 2471, 2939, 3402, 3225, 2656, 2207, 1846, 1582, 1399, 1270, 1182, 1182, 1205, 1277, 1423, 1645, 1910, 2321, 2790, 3333, 3047, 2573, 2113, 1761, 1496, 1314, 1191, 1116, 1104, 1121, 1203, 1328, 1538, 1833, 2207, 2670, 3184, 3028, 2521, 2052, 1689, 1440, 1251, 1139, 1075, 1054, 1070, 1155, 1273, 1478, 1761, 2141, 2600, 3184, 2956, 2471, 2003, 1672, 1411, 1229, 1109, 1050, 1024, 1052, 1131, 1261, 1461, 1736, 2104, 2534, 3104, 3010, 2459, 2035, 1684, 1419, 1232, 1124, 1052, 1033, 1061, 1150, 1270, 1461, 1755, 2113, 2560, 3085, 3085, 2521, 2087, 1736, 1465, 1277, 1155, 1082, 1066, 1096, 1180, 1314, 1510, 1787, 2159, 2614, 3163, 3143, 2628, 2150, 1793, 1514, 1339, 1211, 1139, 1124, 1152, 1239, 1372, 1572, 1867, 2258, 2685, 3289, 3246, 2759, 2299, 1918, 1639, 1440, 1307, 1229, 1214, 1245, 1331, 1483, 1684, 1979, 2388, 2838, 3402, 3379, 2904, 2447, 2069, 1793, 1592, 1440, 1353, 1317, 1364, 1456, 1618, 1833, 2122, 2534, 2992, 3449, 3599, 3066, 2670, 2289, 1971, 1749, 1607, 1528, 1496, 1533, 1628, 1780, 2035, 2343, 2729, 3163, 3706, 3625, 3246, 2887, 2496, 2197, 1987, 1813, 1730, 1707, 1743, 1833, 2011, 2268, 2560, 2939, 3333, 3763, 3880, 3473, 3163, 2822, 2521, 2278, 2131, 2052, 1995, 2052, 2122, 2343, 2573, 2939, 3268, 3706, 3820]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3030, 2832, 2583, 2367, 2191, 2039, 1902, 1831, 1818, 1850, 1902, 2023, 2211, 2414, 2697, 2922, 3146, 3005, 2658, 2406, 2165, 1974, 1831, 1700, 1647, 1625, 1647, 1720, 1831, 1984, 2211, 2446, 2717, 3106, 2843, 2521, 2231, 2001, 1809, 1651, 1553, 1481, 1464, 1493, 1557, 1673, 1818, 2039, 2294, 2583, 2910, 2737, 2375, 2110, 1864, 1673, 1512, 1410, 1346, 1324, 1344, 1421, 1527, 1673, 1873, 2140, 2430, 2799, 2611, 2301, 1979, 1745, 1563, 1413, 1299, 1235, 1223, 1239, 1305, 1410, 1567, 1766, 2012, 2308, 2668, 2521, 2218, 1898, 1662, 1467, 1315, 1211, 1150, 1138, 1156, 1219, 1331, 1490, 1673, 1917, 2218, 2602, 2496, 2128, 1841, 1594, 1405, 1256, 1152, 1096, 1083, 1102, 1172, 1267, 1416, 1611, 1836, 2165, 2496, 2471, 2086, 1787, 1560, 1363, 1231, 1114, 1056, 1047, 1067, 1121, 1225, 1371, 1567, 1809, 2110, 2462, 2422, 2068, 1778, 1540, 1351, 1203, 1104, 1037, 1024, 1049, 1107, 1209, 1356, 1553, 1783, 2080, 2438, 2430, 2086, 1787, 1550, 1358, 1209, 1102, 1049, 1031, 1062, 1112, 1211, 1361, 1557, 1791, 2098, 2438, 2471, 2104, 1813, 1573, 1387, 1239, 1138, 1084, 1059, 1076, 1141, 1248, 1384, 1594, 1827, 2122, 2479, 2487, 2165, 1869, 1629, 1432, 1280, 1186, 1122, 1114, 1129, 1187, 1303, 1438, 1643, 1869, 2172, 2504, 2574, 2258, 1958, 1704, 1512, 1361, 1261, 1199, 1187, 1203, 1278, 1374, 1521, 1708, 1969, 2265, 2574, 2648, 2345, 2086, 1805, 1618, 1461, 1361, 1301, 1278, 1296, 1368, 1475, 1611, 1827, 2057, 2375, 2687, 2821, 2479, 2198, 1948, 1741, 1601, 1493, 1427, 1410, 1421, 1496, 1597, 1745, 1953, 2211, 2479, 2821, 2922, 2611, 2345, 2104, 1907, 1736, 1622, 1563, 1550, 1570, 1636, 1749, 1898, 2110, 2360, 2620, 2945, 3106, 2810, 2556, 2323, 2080, 1938, 1827, 1761, 1761, 1778, 1827, 1943, 2110, 2330, 2556, 2843, 3055]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3059, 2847, 2542, 2363, 2175, 2014, 1905, 1839, 1834, 1871, 1935, 2065, 2221, 2402, 2662, 2937, 3098, 2985, 2662, 2394, 2143, 1956, 1816, 1703, 1657, 1638, 1653, 1735, 1839, 1993, 2227, 2466, 2751, 3085, 2836, 2499, 2227, 2003, 1798, 1657, 1539, 1483, 1480, 1489, 1565, 1672, 1816, 2025, 2304, 2605, 2949, 2671, 2378, 2089, 1857, 1664, 1511, 1418, 1350, 1340, 1358, 1423, 1526, 1687, 1881, 2131, 2441, 2782, 2596, 2262, 1971, 1739, 1542, 1396, 1300, 1241, 1227, 1254, 1307, 1410, 1565, 1760, 2031, 2326, 2662, 2491, 2168, 1881, 1649, 1454, 1324, 1221, 1154, 1138, 1168, 1221, 1331, 1477, 1676, 1940, 2248, 2633, 2458, 2112, 1812, 1569, 1391, 1254, 1159, 1097, 1081, 1104, 1163, 1269, 1418, 1617, 1857, 2162, 2542, 2394, 2065, 1777, 1539, 1350, 1215, 1114, 1059, 1043, 1064, 1126, 1231, 1378, 1569, 1820, 2131, 2499, 2394, 2042, 1760, 1526, 1331, 1199, 1107, 1041, 1024, 1049, 1110, 1213, 1355, 1555, 1789, 2106, 2458, 2425, 2048, 1768, 1536, 1343, 1205, 1112, 1053, 1031, 1058, 1112, 1219, 1368, 1559, 1798, 2106, 2466, 2433, 2077, 1816, 1575, 1378, 1229, 1138, 1092, 1072, 1092, 1147, 1250, 1394, 1596, 1834, 2137, 2534, 2508, 2156, 1862, 1631, 1426, 1293, 1191, 1138, 1133, 1147, 1199, 1303, 1460, 1646, 1886, 2194, 2569, 2578, 2234, 1961, 1703, 1523, 1368, 1269, 1213, 1195, 1217, 1280, 1388, 1536, 1727, 1971, 2290, 2605, 2701, 2348, 2048, 1816, 1617, 1472, 1378, 1314, 1298, 1324, 1388, 1489, 1638, 1848, 2083, 2394, 2761, 2803, 2482, 2181, 1940, 1751, 1606, 1508, 1446, 1434, 1446, 1511, 1620, 1777, 1966, 2248, 2516, 2858, 2937, 2624, 2348, 2089, 1920, 1747, 1653, 1596, 1575, 1586, 1672, 1764, 1930, 2143, 2394, 2671, 3009, 3111, 2836, 2525, 2297, 2112, 1940, 1843, 1772, 1751, 1803, 1862, 1950, 2143, 2348, 2587, 2869, 3098]
| },
| "lsc_samples_blue": {
| "uCoeff": [3013, 2735, 2477, 2263, 2092, 1921, 1819, 1783, 1783, 1842, 1849, 1946, 2123, 2334, 2562, 2914, 2973, 2877, 2533, 2310, 2063, 1873, 1741, 1638, 1580, 1574, 1580, 1669, 1754, 1913, 2133, 2384, 2607, 2953, 2719, 2397, 2143, 1905, 1701, 1574, 1495, 1442, 1437, 1447, 1521, 1591, 1741, 1929, 2185, 2477, 2804, 2577, 2286, 2008, 1761, 1586, 1447, 1362, 1310, 1291, 1306, 1384, 1485, 1614, 1812, 2063, 2359, 2702, 2477, 2185, 1880, 1657, 1471, 1334, 1255, 1224, 1201, 1217, 1277, 1362, 1500, 1694, 1938, 2263, 2607, 2436, 2092, 1797, 1558, 1392, 1277, 1175, 1136, 1131, 1142, 1194, 1291, 1433, 1626, 1865, 2133, 2491, 2346, 2008, 1727, 1521, 1342, 1211, 1128, 1089, 1084, 1097, 1148, 1241, 1384, 1569, 1790, 2063, 2449, 2359, 1990, 1707, 1466, 1318, 1179, 1103, 1046, 1038, 1058, 1116, 1207, 1330, 1526, 1727, 2035, 2397, 2334, 1972, 1694, 1456, 1288, 1166, 1084, 1038, 1024, 1046, 1105, 1191, 1326, 1490, 1727, 2008, 2334, 2310, 1972, 1701, 1490, 1291, 1175, 1081, 1043, 1041, 1058, 1114, 1198, 1318, 1505, 1734, 2017, 2371, 2346, 2008, 1727, 1516, 1326, 1204, 1122, 1068, 1058, 1084, 1139, 1227, 1358, 1547, 1761, 2054, 2397, 2436, 2083, 1761, 1558, 1375, 1248, 1163, 1116, 1092, 1116, 1169, 1262, 1405, 1580, 1804, 2102, 2449, 2491, 2133, 1865, 1614, 1461, 1326, 1224, 1179, 1166, 1194, 1238, 1342, 1480, 1657, 1896, 2185, 2491, 2548, 2240, 1955, 1727, 1553, 1405, 1330, 1273, 1255, 1269, 1338, 1414, 1558, 1754, 1999, 2263, 2623, 2719, 2359, 2083, 1834, 1663, 1536, 1447, 1384, 1367, 1388, 1442, 1547, 1694, 1888, 2153, 2397, 2686, 2804, 2491, 2229, 1981, 1819, 1657, 1580, 1526, 1516, 1521, 1580, 1682, 1826, 2026, 2251, 2548, 2822, 3013, 2686, 2449, 2218, 2008, 1888, 1754, 1701, 1694, 1727, 1768, 1888, 2017, 2207, 2449, 2719, 2934]
| }
| }, {
| "name": "3264x2448_D50_70",
| "resolution": "3264x2448",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2981, 2927, 2833, 2584, 2457, 2218, 2122, 2045, 2015, 2061, 2122, 2259, 2470, 2703, 2887, 3090, 3067, 2976, 2821, 2642, 2393, 2165, 1997, 1884, 1830, 1774, 1824, 1899, 2038, 2255, 2467, 2719, 2931, 3125, 2952, 2701, 2461, 2227, 1982, 1796, 1681, 1597, 1584, 1618, 1676, 1822, 2039, 2258, 2554, 2851, 3140, 2883, 2630, 2346, 2030, 1813, 1625, 1499, 1427, 1416, 1444, 1526, 1657, 1853, 2098, 2393, 2722, 2997, 2845, 2504, 2178, 1899, 1669, 1491, 1372, 1301, 1282, 1301, 1376, 1522, 1692, 1950, 2270, 2600, 2880, 2767, 2386, 2056, 1768, 1545, 1382, 1263, 1179, 1179, 1201, 1270, 1405, 1603, 1826, 2156, 2498, 2852, 2642, 2329, 1983, 1698, 1468, 1303, 1188, 1115, 1103, 1120, 1199, 1317, 1508, 1763, 2066, 2411, 2751, 2636, 2293, 1935, 1635, 1418, 1244, 1137, 1075, 1054, 1070, 1153, 1265, 1454, 1701, 2013, 2360, 2762, 2581, 2253, 1893, 1621, 1391, 1223, 1108, 1050, 1024, 1052, 1130, 1254, 1439, 1680, 1982, 2306, 2701, 2622, 2240, 1920, 1631, 1398, 1226, 1123, 1052, 1033, 1061, 1148, 1262, 1438, 1696, 1989, 2326, 2682, 2672, 2285, 1960, 1675, 1439, 1268, 1152, 1081, 1066, 1095, 1177, 1303, 1482, 1721, 2024, 2364, 2735, 2702, 2363, 2006, 1720, 1481, 1325, 1206, 1137, 1122, 1149, 1233, 1356, 1535, 1787, 2101, 2410, 2817, 2759, 2452, 2122, 1823, 1590, 1416, 1295, 1222, 1208, 1238, 1318, 1457, 1632, 1877, 2198, 2517, 2880, 2829, 2544, 2228, 1942, 1720, 1550, 1416, 1337, 1304, 1348, 1431, 1574, 1756, 1988, 2302, 2616, 2883, 2952, 2640, 2387, 2112, 1864, 1682, 1562, 1494, 1466, 1499, 1582, 1710, 1920, 2158, 2436, 2716, 3032, 2917, 2736, 2528, 2259, 2039, 1877, 1735, 1666, 1648, 1678, 1753, 1898, 2100, 2312, 2570, 2803, 3017, 3023, 2853, 2700, 2489, 2282, 2103, 1993, 1933, 1886, 1933, 1985, 2159, 2326, 2584, 2782, 3027, 2981]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2428, 2374, 2245, 2118, 2005, 1898, 1793, 1738, 1729, 1755, 1793, 1884, 2022, 2156, 2335, 2441, 2509, 2466, 2283, 2140, 1981, 1846, 1739, 1633, 1591, 1573, 1591, 1651, 1739, 1854, 2020, 2172, 2329, 2539, 2386, 2209, 2024, 1864, 1720, 1593, 1512, 1450, 1436, 1461, 1516, 1613, 1728, 1897, 2076, 2258, 2436, 2337, 2117, 1943, 1762, 1612, 1476, 1388, 1330, 1310, 1329, 1398, 1490, 1612, 1770, 1968, 2161, 2384, 2263, 2075, 1846, 1668, 1520, 1391, 1287, 1228, 1217, 1232, 1293, 1388, 1524, 1687, 1874, 2081, 2307, 2209, 2020, 1786, 1602, 1437, 1302, 1206, 1148, 1136, 1153, 1213, 1317, 1459, 1612, 1803, 2020, 2273, 2201, 1954, 1744, 1545, 1383, 1248, 1149, 1095, 1083, 1101, 1169, 1258, 1393, 1560, 1739, 1985, 2201, 2188, 1924, 1700, 1517, 1345, 1225, 1113, 1056, 1047, 1067, 1120, 1219, 1353, 1523, 1719, 1944, 2181, 2151, 1911, 1693, 1499, 1334, 1198, 1103, 1037, 1024, 1049, 1106, 1204, 1339, 1511, 1698, 1921, 2164, 2155, 1924, 1700, 1507, 1340, 1203, 1101, 1049, 1031, 1062, 1111, 1205, 1343, 1514, 1703, 1934, 2162, 2181, 1934, 1719, 1526, 1366, 1231, 1136, 1083, 1059, 1075, 1139, 1240, 1363, 1545, 1731, 1949, 2188, 2182, 1976, 1761, 1572, 1405, 1268, 1181, 1120, 1113, 1127, 1182, 1290, 1410, 1584, 1761, 1982, 2196, 2234, 2040, 1828, 1632, 1473, 1342, 1251, 1193, 1182, 1197, 1267, 1354, 1482, 1635, 1837, 2046, 2234, 2269, 2092, 1923, 1710, 1562, 1429, 1342, 1288, 1267, 1283, 1348, 1442, 1555, 1729, 1898, 2117, 2299, 2370, 2175, 1996, 1819, 1660, 1548, 1457, 1400, 1385, 1394, 1460, 1544, 1663, 1823, 2007, 2175, 2370, 2405, 2247, 2091, 1930, 1788, 1655, 1563, 1514, 1504, 1521, 1575, 1666, 1780, 1935, 2103, 2254, 2422, 2481, 2358, 2224, 2082, 1912, 1811, 1727, 1676, 1678, 1691, 1727, 1815, 1937, 2088, 2224, 2382, 2446]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2449, 2385, 2213, 2115, 1991, 1876, 1795, 1745, 1743, 1773, 1822, 1920, 2030, 2147, 2307, 2452, 2476, 2451, 2286, 2130, 1963, 1830, 1726, 1636, 1600, 1585, 1596, 1664, 1746, 1862, 2033, 2188, 2355, 2524, 2381, 2191, 2020, 1866, 1710, 1599, 1499, 1452, 1451, 1458, 1523, 1612, 1726, 1885, 2084, 2275, 2466, 2286, 2119, 1925, 1756, 1603, 1475, 1395, 1334, 1326, 1342, 1400, 1489, 1624, 1777, 1961, 2170, 2371, 2251, 2043, 1839, 1663, 1501, 1375, 1288, 1234, 1221, 1247, 1295, 1388, 1522, 1682, 1891, 2096, 2303, 2186, 1979, 1772, 1590, 1425, 1310, 1215, 1151, 1136, 1165, 1215, 1317, 1447, 1614, 1823, 2045, 2298, 2171, 1941, 1718, 1522, 1370, 1246, 1156, 1096, 1081, 1103, 1160, 1260, 1395, 1566, 1758, 1983, 2238, 2126, 1906, 1691, 1497, 1333, 1209, 1113, 1059, 1043, 1064, 1124, 1225, 1359, 1525, 1729, 1962, 2211, 2128, 1888, 1677, 1486, 1315, 1194, 1106, 1041, 1024, 1049, 1109, 1207, 1338, 1513, 1703, 1943, 2180, 2151, 1892, 1683, 1495, 1326, 1199, 1111, 1053, 1031, 1058, 1111, 1213, 1350, 1516, 1710, 1941, 2184, 2151, 1911, 1722, 1528, 1357, 1222, 1136, 1091, 1072, 1091, 1145, 1242, 1372, 1547, 1737, 1962, 2232, 2199, 1969, 1755, 1574, 1399, 1281, 1186, 1136, 1131, 1145, 1194, 1290, 1431, 1587, 1776, 2000, 2247, 2237, 2020, 1831, 1631, 1483, 1348, 1259, 1207, 1190, 1211, 1269, 1367, 1495, 1652, 1839, 2066, 2258, 2309, 2095, 1890, 1720, 1561, 1439, 1358, 1300, 1286, 1309, 1367, 1455, 1580, 1748, 1920, 2132, 2355, 2356, 2178, 1982, 1812, 1669, 1552, 1471, 1417, 1408, 1417, 1474, 1565, 1692, 1834, 2038, 2205, 2397, 2416, 2257, 2093, 1917, 1799, 1664, 1591, 1544, 1527, 1535, 1608, 1679, 1808, 1963, 2130, 2293, 2468, 2485, 2377, 2200, 2061, 1938, 1813, 1741, 1686, 1669, 1713, 1758, 1821, 1964, 2103, 2249, 2402, 2476]
| },
| "lsc_samples_blue": {
| "uCoeff": [2416, 2302, 2162, 2033, 1922, 1796, 1720, 1695, 1698, 1747, 1746, 1818, 1948, 2091, 2229, 2435, 2388, 2372, 2187, 2062, 1896, 1758, 1659, 1577, 1530, 1526, 1530, 1605, 1671, 1793, 1954, 2122, 2244, 2428, 2293, 2110, 1951, 1782, 1624, 1523, 1459, 1414, 1410, 1418, 1483, 1539, 1660, 1802, 1986, 2174, 2357, 2214, 2045, 1857, 1671, 1533, 1416, 1342, 1296, 1279, 1292, 1363, 1451, 1558, 1716, 1903, 2104, 2310, 2158, 1980, 1761, 1590, 1436, 1316, 1245, 1218, 1196, 1211, 1266, 1343, 1462, 1623, 1811, 2044, 2260, 2142, 1915, 1698, 1507, 1367, 1266, 1171, 1134, 1129, 1140, 1189, 1279, 1406, 1569, 1758, 1949, 2186, 2081, 1853, 1643, 1478, 1323, 1204, 1126, 1088, 1084, 1096, 1145, 1233, 1363, 1522, 1699, 1899, 2164, 2098, 1843, 1629, 1430, 1302, 1174, 1102, 1046, 1038, 1058, 1115, 1201, 1314, 1485, 1647, 1881, 2129, 2080, 1829, 1619, 1422, 1274, 1162, 1083, 1038, 1024, 1046, 1104, 1186, 1311, 1453, 1648, 1860, 2080, 2059, 1827, 1624, 1452, 1277, 1170, 1080, 1043, 1041, 1058, 1113, 1193, 1302, 1466, 1653, 1866, 2108, 2081, 1853, 1643, 1474, 1308, 1197, 1120, 1068, 1058, 1083, 1137, 1220, 1339, 1502, 1673, 1892, 2122, 2142, 1908, 1667, 1507, 1351, 1238, 1159, 1114, 1091, 1114, 1165, 1251, 1379, 1527, 1704, 1924, 2152, 2169, 1937, 1748, 1551, 1426, 1309, 1216, 1174, 1162, 1189, 1229, 1324, 1444, 1590, 1775, 1980, 2169, 2192, 2007, 1812, 1641, 1503, 1377, 1312, 1261, 1245, 1257, 1320, 1385, 1507, 1665, 1849, 2026, 2249, 2293, 2080, 1901, 1721, 1591, 1489, 1414, 1360, 1345, 1363, 1410, 1499, 1618, 1767, 1959, 2110, 2269, 2319, 2155, 1997, 1827, 1712, 1585, 1525, 1481, 1473, 1476, 1525, 1607, 1718, 1865, 2015, 2198, 2332, 2416, 2265, 2140, 1997, 1851, 1768, 1663, 1623, 1619, 1646, 1675, 1768, 1859, 1988, 2140, 2290, 2361]
| }
| }, {
| "name": "3264x2448_D65_100",
| "resolution": "3264x2448",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3575, 3514, 3291, 2921, 2642, 2454, 2218, 2160, 2127, 2183, 2266, 2439, 2747, 3005, 3344, 3736, 3736, 3638, 3291, 2962, 2625, 2317, 2095, 1956, 1860, 1843, 1860, 1956, 2127, 2370, 2728, 3095, 3456, 3840, 3485, 3118, 2711, 2397, 2063, 1827, 1693, 1620, 1589, 1646, 1735, 1885, 2138, 2468, 2860, 3265, 3736, 3427, 2921, 2498, 2138, 1868, 1652, 1525, 1440, 1420, 1455, 1542, 1700, 1902, 2206, 2608, 3072, 3606, 3215, 2728, 2330, 1966, 1679, 1492, 1360, 1292, 1276, 1300, 1378, 1530, 1742, 2033, 2425, 2880, 3427, 3142, 2625, 2206, 1835, 1553, 1382, 1245, 1181, 1162, 1199, 1284, 1411, 1639, 1911, 2242, 2728, 3265, 3005, 2529, 2074, 1721, 1476, 1284, 1181, 1118, 1088, 1115, 1206, 1329, 1525, 1811, 2183, 2625, 3095, 2984, 2439, 2013, 1659, 1415, 1238, 1133, 1061, 1047, 1080, 1146, 1268, 1465, 1750, 2105, 2544, 3142, 2962, 2411, 2003, 1626, 1387, 1220, 1109, 1039, 1024, 1053, 1130, 1261, 1445, 1714, 2084, 2529, 3095, 2921, 2425, 2003, 1646, 1387, 1216, 1115, 1047, 1029, 1058, 1136, 1264, 1460, 1714, 2095, 2529, 3118, 2984, 2498, 2043, 1707, 1430, 1249, 1146, 1083, 1058, 1097, 1168, 1288, 1497, 1772, 2138, 2576, 3166, 3049, 2576, 2127, 1757, 1492, 1317, 1202, 1142, 1112, 1139, 1227, 1351, 1559, 1819, 2183, 2676, 3166, 3142, 2676, 2254, 1876, 1620, 1415, 1288, 1216, 1202, 1231, 1321, 1460, 1672, 1956, 2330, 2802, 3318, 3291, 2880, 2411, 2033, 1750, 1547, 1406, 1338, 1317, 1346, 1450, 1589, 1803, 2116, 2483, 2941, 3456, 3485, 3049, 2608, 2254, 1929, 1721, 1583, 1492, 1476, 1514, 1607, 1757, 1994, 2291, 2711, 3095, 3544, 3638, 3215, 2821, 2454, 2183, 1938, 1795, 1707, 1686, 1714, 1819, 2003, 2230, 2544, 2941, 3265, 3770, 3703, 3456, 3142, 2860, 2498, 2254, 2105, 2003, 1956, 2003, 2116, 2279, 2560, 2900, 3215, 3606, 3840]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3132, 2827, 2635, 2375, 2189, 2042, 1877, 1828, 1805, 1862, 1908, 2018, 2238, 2468, 2655, 2934, 3146, 3023, 2676, 2442, 2210, 1978, 1819, 1712, 1651, 1617, 1643, 1716, 1838, 1967, 2231, 2477, 2771, 3104, 2874, 2530, 2267, 2018, 1814, 1659, 1542, 1483, 1461, 1483, 1562, 1659, 1823, 2036, 2328, 2596, 2922, 2717, 2408, 2142, 1867, 1679, 1522, 1419, 1348, 1330, 1346, 1414, 1512, 1679, 1872, 2162, 2485, 2827, 2635, 2297, 2001, 1759, 1566, 1414, 1293, 1243, 1212, 1236, 1305, 1408, 1576, 1768, 2024, 2328, 2686, 2540, 2217, 1929, 1667, 1470, 1315, 1208, 1158, 1137, 1158, 1221, 1323, 1480, 1679, 1929, 2246, 2635, 2485, 2136, 1838, 1602, 1414, 1263, 1160, 1095, 1078, 1091, 1166, 1258, 1414, 1613, 1872, 2169, 2521, 2485, 2097, 1805, 1559, 1367, 1217, 1116, 1061, 1045, 1065, 1123, 1223, 1369, 1569, 1823, 2129, 2521, 2450, 2079, 1791, 1545, 1343, 1208, 1107, 1039, 1024, 1041, 1102, 1215, 1353, 1555, 1795, 2104, 2477, 2450, 2072, 1782, 1555, 1361, 1204, 1110, 1047, 1029, 1050, 1110, 1215, 1364, 1559, 1805, 2085, 2459, 2485, 2116, 1819, 1591, 1383, 1245, 1136, 1083, 1063, 1076, 1139, 1234, 1400, 1580, 1838, 2129, 2503, 2540, 2182, 1867, 1636, 1440, 1296, 1184, 1116, 1112, 1125, 1180, 1296, 1443, 1639, 1898, 2196, 2558, 2616, 2282, 1973, 1707, 1505, 1369, 1258, 1204, 1182, 1192, 1265, 1375, 1528, 1729, 1973, 2282, 2635, 2686, 2367, 2066, 1819, 1617, 1467, 1361, 1296, 1277, 1293, 1356, 1473, 1620, 1819, 2072, 2367, 2686, 2850, 2485, 2210, 1945, 1742, 1594, 1480, 1425, 1402, 1411, 1489, 1598, 1755, 1956, 2224, 2503, 2827, 2972, 2655, 2359, 2123, 1893, 1733, 1643, 1566, 1549, 1562, 1647, 1750, 1898, 2123, 2375, 2666, 3036, 3146, 2850, 2596, 2320, 2104, 1924, 1828, 1759, 1737, 1759, 1833, 1967, 2110, 2343, 2616, 2827, 3175]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3045, 2846, 2573, 2372, 2193, 2010, 1911, 1845, 1855, 1855, 1905, 2045, 2221, 2473, 2662, 2967, 3113, 2894, 2652, 2396, 2159, 1964, 1807, 1726, 1656, 1641, 1656, 1709, 1835, 1998, 2214, 2482, 2756, 3072, 2823, 2500, 2242, 1975, 1797, 1652, 1546, 1484, 1474, 1487, 1560, 1668, 1835, 2033, 2294, 2612, 2967, 2745, 2388, 2088, 1850, 1649, 1506, 1412, 1346, 1331, 1351, 1420, 1533, 1684, 1875, 2152, 2455, 2767, 2583, 2264, 1970, 1722, 1536, 1395, 1294, 1241, 1221, 1241, 1316, 1423, 1560, 1757, 2021, 2324, 2745, 2518, 2179, 1890, 1626, 1462, 1311, 1209, 1149, 1139, 1158, 1226, 1326, 1471, 1668, 1916, 2235, 2592, 2464, 2113, 1811, 1571, 1384, 1243, 1155, 1091, 1075, 1091, 1156, 1254, 1414, 1596, 1850, 2166, 2536, 2380, 2051, 1774, 1533, 1341, 1194, 1110, 1060, 1044, 1063, 1119, 1213, 1375, 1571, 1816, 2100, 2508, 2396, 2045, 1757, 1519, 1326, 1188, 1098, 1039, 1024, 1047, 1107, 1202, 1351, 1553, 1793, 2107, 2447, 2396, 2063, 1757, 1533, 1336, 1196, 1103, 1049, 1036, 1058, 1114, 1213, 1359, 1546, 1793, 2113, 2500, 2464, 2094, 1793, 1571, 1375, 1221, 1132, 1083, 1058, 1081, 1143, 1245, 1381, 1581, 1826, 2120, 2508, 2518, 2159, 1860, 1614, 1420, 1277, 1186, 1138, 1112, 1132, 1198, 1294, 1450, 1641, 1905, 2207, 2564, 2602, 2235, 1942, 1697, 1509, 1362, 1266, 1209, 1194, 1215, 1275, 1378, 1533, 1735, 1987, 2301, 2672, 2713, 2356, 2051, 1816, 1618, 1468, 1370, 1318, 1301, 1323, 1370, 1484, 1629, 1845, 2088, 2388, 2756, 2858, 2491, 2186, 1948, 1757, 1596, 1500, 1450, 1432, 1432, 1503, 1610, 1770, 1981, 2249, 2527, 2894, 2967, 2632, 2364, 2107, 1895, 1748, 1660, 1599, 1578, 1599, 1664, 1770, 1921, 2120, 2396, 2692, 3032, 3155, 2858, 2573, 2324, 2107, 1964, 1860, 1802, 1765, 1774, 1840, 1959, 2139, 2332, 2564, 2906, 3155]
| },
| "lsc_samples_blue": {
| "uCoeff": [2987, 2764, 2506, 2325, 2149, 1982, 1881, 1804, 1778, 1804, 1881, 1974, 2130, 2348, 2573, 2880, 3183, 2897, 2587, 2325, 2084, 1889, 1765, 1667, 1601, 1596, 1612, 1691, 1784, 1919, 2149, 2394, 2673, 2950, 2780, 2418, 2159, 1911, 1733, 1585, 1516, 1456, 1426, 1456, 1511, 1612, 1771, 1966, 2249, 2493, 2863, 2601, 2303, 2015, 1804, 1612, 1469, 1366, 1335, 1306, 1328, 1393, 1488, 1628, 1818, 2084, 2383, 2733, 2546, 2218, 1896, 1685, 1478, 1354, 1279, 1221, 1205, 1230, 1292, 1373, 1520, 1721, 1966, 2260, 2615, 2443, 2130, 1818, 1596, 1418, 1282, 1191, 1145, 1129, 1156, 1205, 1296, 1443, 1628, 1874, 2178, 2480, 2443, 2049, 1752, 1535, 1362, 1224, 1143, 1084, 1086, 1091, 1162, 1239, 1381, 1575, 1791, 2112, 2443, 2325, 2007, 1715, 1497, 1324, 1199, 1106, 1060, 1048, 1072, 1114, 1208, 1347, 1540, 1765, 2058, 2406, 2348, 1990, 1702, 1474, 1306, 1182, 1094, 1046, 1024, 1042, 1111, 1199, 1332, 1511, 1752, 2032, 2394, 2359, 1998, 1702, 1501, 1310, 1185, 1104, 1046, 1037, 1053, 1116, 1202, 1328, 1535, 1758, 2049, 2394, 2371, 2023, 1745, 1520, 1339, 1211, 1129, 1079, 1065, 1094, 1143, 1224, 1358, 1540, 1771, 2049, 2431, 2431, 2094, 1791, 1565, 1389, 1262, 1170, 1114, 1104, 1124, 1179, 1275, 1409, 1596, 1839, 2121, 2455, 2506, 2159, 1889, 1650, 1469, 1335, 1243, 1191, 1165, 1193, 1252, 1343, 1488, 1667, 1919, 2198, 2546, 2615, 2271, 1990, 1733, 1570, 1418, 1332, 1279, 1269, 1279, 1339, 1430, 1580, 1771, 2015, 2292, 2615, 2703, 2406, 2130, 1874, 1685, 1550, 1443, 1393, 1381, 1414, 1461, 1560, 1696, 1889, 2159, 2406, 2749, 2846, 2532, 2271, 2015, 1832, 1685, 1590, 1530, 1511, 1525, 1580, 1696, 1839, 2049, 2292, 2573, 2932, 3062, 2813, 2455, 2229, 2049, 1919, 1778, 1758, 1721, 1715, 1791, 1896, 2032, 2260, 2480, 2796, 3043]
| }
| }, {
| "name": "3264x2448_D65_70",
| "resolution": "3264x2448",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2810, 2883, 2800, 2569, 2384, 2255, 2069, 2029, 2003, 2049, 2111, 2242, 2472, 2638, 2842, 3049, 2922, 2926, 2771, 2589, 2367, 2142, 1973, 1864, 1785, 1772, 1785, 1864, 2001, 2188, 2453, 2696, 2898, 3073, 2867, 2681, 2421, 2205, 1945, 1753, 1642, 1580, 1553, 1604, 1680, 1806, 2012, 2266, 2545, 2797, 3055, 2866, 2558, 2271, 2002, 1788, 1606, 1496, 1420, 1402, 1434, 1512, 1650, 1819, 2062, 2364, 2680, 3003, 2734, 2427, 2148, 1866, 1627, 1465, 1346, 1283, 1269, 1291, 1363, 1501, 1685, 1925, 2230, 2552, 2900, 2701, 2360, 2055, 1758, 1518, 1366, 1239, 1178, 1160, 1196, 1276, 1394, 1598, 1827, 2087, 2446, 2798, 2608, 2292, 1949, 1661, 1450, 1275, 1178, 1117, 1088, 1114, 1202, 1318, 1496, 1743, 2045, 2373, 2680, 2601, 2223, 1900, 1608, 1394, 1231, 1131, 1061, 1047, 1080, 1144, 1260, 1442, 1691, 1982, 2312, 2728, 2586, 2202, 1893, 1578, 1368, 1214, 1108, 1039, 1024, 1053, 1129, 1254, 1423, 1659, 1965, 2302, 2693, 2550, 2211, 1891, 1596, 1368, 1210, 1114, 1047, 1029, 1058, 1134, 1257, 1437, 1658, 1973, 2300, 2709, 2591, 2266, 1921, 1648, 1406, 1241, 1144, 1082, 1058, 1096, 1165, 1278, 1469, 1708, 2005, 2332, 2737, 2627, 2319, 1986, 1688, 1461, 1304, 1197, 1140, 1111, 1137, 1221, 1336, 1523, 1744, 2035, 2403, 2720, 2677, 2384, 2083, 1785, 1573, 1392, 1277, 1210, 1197, 1224, 1309, 1435, 1621, 1857, 2148, 2488, 2815, 2761, 2525, 2197, 1910, 1681, 1509, 1384, 1323, 1304, 1330, 1425, 1548, 1729, 1983, 2258, 2574, 2888, 2867, 2626, 2336, 2082, 1826, 1657, 1540, 1460, 1447, 1481, 1562, 1689, 1884, 2114, 2421, 2663, 2911, 2926, 2712, 2475, 2224, 2027, 1834, 1719, 1645, 1628, 1652, 1740, 1891, 2067, 2299, 2572, 2751, 3022, 2899, 2840, 2683, 2520, 2263, 2083, 1970, 1890, 1851, 1890, 1980, 2104, 2315, 2552, 2741, 2952, 2995]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2500, 2370, 2286, 2125, 2003, 1900, 1771, 1735, 1717, 1765, 1798, 1880, 2044, 2200, 2302, 2450, 2509, 2479, 2297, 2169, 2019, 1849, 1728, 1644, 1594, 1565, 1587, 1647, 1745, 1840, 2036, 2197, 2370, 2538, 2409, 2216, 2053, 1879, 1724, 1600, 1502, 1452, 1433, 1452, 1521, 1600, 1732, 1894, 2104, 2268, 2445, 2322, 2143, 1970, 1764, 1617, 1486, 1396, 1332, 1316, 1330, 1391, 1476, 1617, 1769, 1987, 2206, 2406, 2282, 2072, 1865, 1681, 1523, 1392, 1282, 1236, 1207, 1229, 1293, 1386, 1532, 1689, 1885, 2097, 2321, 2224, 2020, 1814, 1606, 1440, 1302, 1203, 1155, 1135, 1155, 1215, 1309, 1449, 1617, 1814, 2044, 2300, 2192, 1961, 1741, 1552, 1391, 1254, 1157, 1094, 1078, 1090, 1163, 1250, 1391, 1562, 1771, 1989, 2221, 2199, 1933, 1716, 1516, 1349, 1211, 1115, 1061, 1045, 1065, 1122, 1217, 1351, 1525, 1732, 1960, 2228, 2174, 1920, 1705, 1504, 1327, 1203, 1106, 1039, 1024, 1041, 1101, 1209, 1336, 1513, 1708, 1941, 2195, 2171, 1912, 1695, 1512, 1343, 1198, 1109, 1047, 1029, 1050, 1109, 1209, 1346, 1516, 1716, 1923, 2178, 2192, 1944, 1724, 1542, 1362, 1237, 1134, 1082, 1063, 1075, 1137, 1226, 1378, 1532, 1741, 1955, 2207, 2224, 1990, 1759, 1578, 1412, 1284, 1179, 1114, 1111, 1123, 1175, 1284, 1415, 1581, 1786, 2002, 2239, 2267, 2060, 1841, 1634, 1467, 1349, 1248, 1198, 1177, 1187, 1255, 1355, 1488, 1654, 1841, 2060, 2282, 2298, 2110, 1906, 1722, 1561, 1435, 1342, 1283, 1266, 1280, 1337, 1440, 1564, 1722, 1911, 2110, 2298, 2391, 2180, 2006, 1816, 1661, 1541, 1445, 1398, 1378, 1385, 1453, 1545, 1672, 1826, 2018, 2194, 2374, 2442, 2281, 2102, 1946, 1776, 1652, 1582, 1517, 1503, 1514, 1585, 1667, 1780, 1946, 2115, 2289, 2488, 2509, 2388, 2256, 2080, 1932, 1799, 1728, 1674, 1657, 1674, 1732, 1836, 1937, 2099, 2271, 2370, 2530]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2439, 2385, 2238, 2122, 2006, 1873, 1801, 1750, 1761, 1759, 1795, 1903, 2030, 2204, 2307, 2475, 2486, 2385, 2279, 2132, 1976, 1837, 1718, 1656, 1599, 1587, 1599, 1641, 1742, 1867, 2022, 2201, 2359, 2514, 2371, 2192, 2033, 1842, 1709, 1594, 1506, 1453, 1445, 1456, 1519, 1609, 1743, 1892, 2076, 2281, 2479, 2343, 2127, 1924, 1749, 1590, 1471, 1390, 1330, 1317, 1335, 1397, 1496, 1622, 1771, 1978, 2181, 2360, 2241, 2045, 1838, 1648, 1495, 1374, 1283, 1234, 1215, 1234, 1304, 1400, 1518, 1679, 1882, 2094, 2368, 2207, 1988, 1780, 1569, 1433, 1298, 1204, 1147, 1137, 1155, 1220, 1312, 1441, 1607, 1802, 2035, 2266, 2176, 1942, 1717, 1524, 1363, 1235, 1152, 1090, 1075, 1090, 1153, 1246, 1391, 1547, 1751, 1986, 2233, 2115, 1894, 1688, 1492, 1324, 1189, 1109, 1060, 1044, 1063, 1118, 1207, 1356, 1527, 1726, 1936, 2218, 2130, 1891, 1674, 1480, 1311, 1183, 1097, 1039, 1024, 1047, 1106, 1197, 1334, 1511, 1706, 1944, 2171, 2128, 1905, 1673, 1492, 1319, 1191, 1102, 1049, 1036, 1058, 1113, 1207, 1341, 1504, 1705, 1947, 2211, 2176, 1926, 1701, 1524, 1355, 1214, 1130, 1082, 1058, 1080, 1141, 1237, 1360, 1533, 1730, 1948, 2211, 2207, 1971, 1753, 1558, 1393, 1266, 1181, 1136, 1111, 1130, 1193, 1282, 1421, 1583, 1793, 2011, 2243, 2256, 2021, 1814, 1625, 1471, 1343, 1256, 1203, 1189, 1209, 1264, 1358, 1493, 1659, 1853, 2075, 2311, 2318, 2101, 1893, 1720, 1562, 1435, 1350, 1304, 1288, 1309, 1350, 1450, 1572, 1745, 1924, 2127, 2351, 2397, 2185, 1986, 1819, 1674, 1543, 1463, 1421, 1406, 1404, 1466, 1556, 1685, 1847, 2039, 2213, 2424, 2438, 2263, 2106, 1932, 1777, 1665, 1597, 1547, 1530, 1547, 1600, 1685, 1800, 1943, 2132, 2309, 2485, 2516, 2393, 2238, 2083, 1934, 1833, 1756, 1712, 1682, 1687, 1738, 1829, 1961, 2090, 2231, 2429, 2516]
| },
| "lsc_samples_blue": {
| "uCoeff": [2398, 2323, 2185, 2084, 1970, 1849, 1774, 1714, 1693, 1714, 1774, 1842, 1954, 2103, 2238, 2410, 2535, 2387, 2228, 2074, 1913, 1772, 1680, 1603, 1549, 1546, 1559, 1625, 1697, 1798, 1968, 2130, 2295, 2425, 2339, 2127, 1964, 1787, 1653, 1533, 1478, 1427, 1400, 1427, 1474, 1558, 1686, 1834, 2039, 2186, 2401, 2233, 2058, 1862, 1709, 1556, 1436, 1346, 1320, 1293, 1313, 1372, 1454, 1571, 1721, 1921, 2123, 2334, 2212, 2007, 1775, 1615, 1442, 1335, 1268, 1215, 1200, 1223, 1281, 1353, 1481, 1647, 1835, 2041, 2266, 2148, 1947, 1717, 1542, 1392, 1270, 1186, 1143, 1127, 1153, 1200, 1284, 1415, 1571, 1766, 1987, 2177, 2159, 1888, 1665, 1491, 1342, 1217, 1141, 1083, 1086, 1090, 1159, 1231, 1360, 1528, 1700, 1941, 2159, 2071, 1857, 1636, 1459, 1308, 1194, 1105, 1060, 1048, 1072, 1113, 1202, 1330, 1498, 1680, 1900, 2136, 2091, 1844, 1626, 1438, 1292, 1177, 1093, 1046, 1024, 1042, 1110, 1194, 1316, 1472, 1670, 1880, 2128, 2098, 1849, 1625, 1462, 1295, 1180, 1103, 1046, 1037, 1053, 1115, 1196, 1312, 1494, 1674, 1893, 2126, 2101, 1866, 1659, 1477, 1321, 1204, 1127, 1078, 1065, 1093, 1141, 1217, 1339, 1496, 1682, 1888, 2149, 2138, 1917, 1693, 1514, 1365, 1251, 1166, 1112, 1103, 1122, 1174, 1264, 1383, 1542, 1735, 1939, 2157, 2181, 1958, 1769, 1583, 1434, 1317, 1234, 1186, 1161, 1188, 1242, 1325, 1451, 1598, 1794, 1990, 2212, 2243, 2033, 1841, 1647, 1518, 1389, 1314, 1267, 1258, 1267, 1321, 1400, 1527, 1680, 1862, 2050, 2243, 2281, 2118, 1940, 1755, 1610, 1501, 1411, 1368, 1358, 1388, 1427, 1511, 1620, 1768, 1964, 2118, 2316, 2350, 2186, 2031, 1855, 1723, 1609, 1534, 1484, 1469, 1480, 1525, 1619, 1729, 1884, 2048, 2218, 2412, 2451, 2360, 2145, 2006, 1885, 1794, 1684, 1673, 1643, 1635, 1696, 1775, 1871, 2031, 2165, 2347, 2437]
| }
| }, {
| "name": "3264x2448_D75_100",
| "resolution": "3264x2448",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3654, 3376, 3088, 2786, 2537, 2289, 2165, 2108, 2053, 2086, 2177, 2343, 2604, 2887, 3212, 3556, 3556, 3494, 3112, 2805, 2521, 2250, 2012, 1897, 1811, 1794, 1819, 1888, 2053, 2276, 2604, 2951, 3319, 3654, 3404, 2951, 2604, 2250, 1992, 1794, 1646, 1587, 1574, 1600, 1695, 1861, 2032, 2343, 2728, 3112, 3556, 3187, 2805, 2400, 2075, 1794, 1619, 1475, 1408, 1383, 1428, 1515, 1653, 1844, 2142, 2505, 2951, 3376, 3112, 2656, 2263, 1897, 1633, 1459, 1346, 1277, 1265, 1302, 1378, 1515, 1717, 1972, 2302, 2766, 3265, 3018, 2505, 2108, 1778, 1515, 1355, 1229, 1189, 1168, 1189, 1273, 1393, 1606, 1861, 2189, 2638, 3161, 2866, 2414, 2002, 1695, 1449, 1281, 1172, 1116, 1091, 1113, 1200, 1323, 1503, 1755, 2096, 2521, 2995, 2866, 2357, 1962, 1639, 1378, 1226, 1122, 1065, 1037, 1082, 1151, 1265, 1449, 1702, 2043, 2474, 2951, 2825, 2329, 1906, 1587, 1359, 1200, 1106, 1045, 1024, 1048, 1122, 1249, 1423, 1681, 2022, 2444, 2951, 2825, 2357, 1934, 1600, 1374, 1214, 1103, 1051, 1035, 1057, 1128, 1253, 1428, 1695, 2022, 2429, 2973, 2825, 2429, 1982, 1646, 1408, 1237, 1135, 1079, 1059, 1082, 1161, 1281, 1459, 1732, 2064, 2459, 3018, 2951, 2459, 2043, 1724, 1470, 1302, 1193, 1132, 1116, 1128, 1203, 1341, 1538, 1786, 2130, 2570, 3041, 3064, 2604, 2153, 1827, 1574, 1383, 1285, 1211, 1200, 1222, 1310, 1433, 1639, 1906, 2263, 2656, 3187, 3212, 2692, 2329, 1972, 1688, 1515, 1393, 1319, 1302, 1332, 1428, 1568, 1770, 2022, 2429, 2805, 3238, 3319, 2866, 2505, 2165, 1879, 1688, 1550, 1470, 1443, 1509, 1556, 1717, 1915, 2225, 2570, 2973, 3404, 3494, 3088, 2728, 2371, 2096, 1870, 1747, 1660, 1639, 1660, 1762, 1915, 2153, 2444, 2805, 3187, 3588, 3621, 3292, 2995, 2673, 2385, 2142, 2043, 1924, 1915, 1915, 2022, 2213, 2429, 2766, 3064, 3494, 3688]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2981, 2826, 2506, 2317, 2115, 1996, 1869, 1798, 1775, 1830, 1859, 1990, 2141, 2363, 2646, 2884, 3085, 2872, 2607, 2355, 2141, 1941, 1780, 1674, 1617, 1602, 1628, 1682, 1784, 1957, 2181, 2403, 2687, 3019, 2804, 2470, 2229, 1968, 1780, 1628, 1533, 1460, 1448, 1469, 1526, 1636, 1798, 1996, 2265, 2551, 2861, 2676, 2363, 2078, 1826, 1651, 1491, 1399, 1338, 1308, 1336, 1407, 1513, 1662, 1850, 2103, 2420, 2697, 2588, 2265, 1968, 1732, 1543, 1396, 1299, 1229, 1206, 1237, 1294, 1410, 1553, 1753, 1990, 2279, 2687, 2515, 2201, 1869, 1647, 1445, 1311, 1202, 1147, 1130, 1156, 1208, 1308, 1472, 1662, 1910, 2208, 2569, 2453, 2097, 1807, 1588, 1396, 1251, 1151, 1089, 1072, 1094, 1155, 1262, 1399, 1595, 1835, 2128, 2479, 2420, 2060, 1789, 1553, 1364, 1210, 1106, 1056, 1033, 1056, 1120, 1214, 1359, 1553, 1807, 2066, 2428, 2395, 2054, 1762, 1520, 1336, 1200, 1104, 1038, 1025, 1038, 1107, 1202, 1354, 1536, 1771, 2066, 2403, 2387, 2042, 1758, 1533, 1343, 1206, 1104, 1041, 1024, 1050, 1104, 1216, 1348, 1523, 1784, 2060, 2403, 2411, 2078, 1798, 1567, 1385, 1235, 1134, 1075, 1053, 1074, 1136, 1237, 1385, 1581, 1807, 2097, 2395, 2453, 2122, 1850, 1621, 1413, 1282, 1180, 1120, 1102, 1122, 1180, 1280, 1436, 1624, 1854, 2148, 2479, 2598, 2229, 1930, 1690, 1500, 1351, 1251, 1192, 1180, 1190, 1259, 1356, 1507, 1694, 1941, 2222, 2579, 2636, 2317, 2024, 1780, 1595, 1448, 1343, 1289, 1266, 1289, 1351, 1460, 1609, 1807, 2042, 2332, 2646, 2749, 2436, 2161, 1915, 1719, 1563, 1463, 1402, 1396, 1407, 1466, 1577, 1727, 1920, 2188, 2436, 2782, 2884, 2560, 2324, 2066, 1864, 1719, 1606, 1543, 1536, 1546, 1613, 1715, 1864, 2072, 2317, 2607, 2956, 3019, 2739, 2542, 2279, 2054, 1884, 1802, 1715, 1698, 1719, 1784, 1904, 2072, 2309, 2506, 2782, 3019]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2973, 2753, 2518, 2290, 2125, 1955, 1882, 1796, 1814, 1828, 1923, 2004, 2204, 2374, 2592, 2888, 3063, 2888, 2582, 2312, 2106, 1933, 1800, 1689, 1630, 1627, 1642, 1697, 1810, 1976, 2184, 2440, 2721, 2998, 2753, 2440, 2184, 1971, 1769, 1627, 1542, 1483, 1456, 1487, 1548, 1657, 1814, 2016, 2268, 2564, 2888, 2640, 2328, 2057, 1819, 1627, 1487, 1398, 1340, 1320, 1353, 1421, 1525, 1665, 1843, 2100, 2407, 2743, 2518, 2211, 1949, 1709, 1515, 1390, 1298, 1233, 1220, 1246, 1301, 1401, 1542, 1743, 1988, 2305, 2701, 2465, 2138, 1833, 1608, 1438, 1296, 1203, 1149, 1132, 1160, 1222, 1318, 1471, 1669, 1897, 2191, 2582, 2399, 2075, 1782, 1562, 1366, 1235, 1143, 1094, 1082, 1097, 1154, 1250, 1398, 1587, 1814, 2138, 2483, 2366, 2027, 1747, 1518, 1330, 1197, 1107, 1055, 1041, 1064, 1121, 1212, 1343, 1552, 1787, 2093, 2457, 2351, 2010, 1722, 1502, 1313, 1183, 1100, 1041, 1024, 1038, 1104, 1207, 1353, 1535, 1765, 2057, 2407, 2343, 2016, 1730, 1506, 1330, 1191, 1100, 1050, 1028, 1053, 1111, 1207, 1345, 1535, 1773, 2069, 2432, 2390, 2045, 1765, 1532, 1363, 1222, 1132, 1085, 1061, 1084, 1141, 1239, 1396, 1559, 1805, 2100, 2448, 2448, 2112, 1814, 1583, 1418, 1273, 1181, 1127, 1120, 1138, 1193, 1291, 1432, 1634, 1867, 2177, 2545, 2509, 2204, 1923, 1669, 1506, 1358, 1261, 1201, 1203, 1212, 1268, 1374, 1518, 1713, 1949, 2239, 2592, 2621, 2290, 2027, 1787, 1590, 1459, 1363, 1310, 1294, 1313, 1377, 1471, 1615, 1814, 2063, 2359, 2690, 2743, 2440, 2157, 1897, 1726, 1587, 1487, 1429, 1415, 1432, 1502, 1612, 1747, 1928, 2211, 2474, 2797, 2876, 2573, 2297, 2069, 1882, 1730, 1627, 1579, 1569, 1583, 1646, 1743, 1897, 2112, 2351, 2621, 2948, 3090, 2775, 2465, 2275, 2087, 1912, 1824, 1751, 1743, 1796, 1867, 1944, 2131, 2328, 2536, 2819, 3076]
| },
| "lsc_samples_blue": {
| "uCoeff": [2901, 2681, 2435, 2230, 2041, 1937, 1817, 1751, 1740, 1775, 1836, 1937, 2073, 2318, 2504, 2809, 2966, 2824, 2480, 2258, 2041, 1842, 1723, 1638, 1574, 1579, 1584, 1643, 1734, 1888, 2114, 2338, 2589, 2901, 2668, 2369, 2114, 1895, 1701, 1574, 1482, 1438, 1434, 1446, 1494, 1593, 1763, 1923, 2166, 2446, 2809, 2552, 2239, 1980, 1745, 1584, 1442, 1357, 1307, 1297, 1330, 1374, 1478, 1608, 1781, 2041, 2328, 2615, 2457, 2149, 1862, 1643, 1478, 1353, 1254, 1208, 1200, 1225, 1278, 1360, 1507, 1674, 1909, 2221, 2540, 2391, 2057, 1799, 1565, 1396, 1260, 1181, 1138, 1129, 1148, 1200, 1294, 1419, 1603, 1836, 2123, 2446, 2338, 2003, 1717, 1512, 1343, 1225, 1143, 1087, 1087, 1096, 1143, 1237, 1364, 1547, 1787, 2033, 2424, 2278, 1958, 1690, 1478, 1320, 1192, 1103, 1057, 1036, 1063, 1121, 1208, 1333, 1529, 1745, 2010, 2369, 2298, 1965, 1674, 1466, 1291, 1174, 1087, 1044, 1024, 1046, 1098, 1200, 1330, 1499, 1712, 2003, 2348, 2288, 1944, 1684, 1470, 1307, 1179, 1101, 1048, 1038, 1061, 1110, 1189, 1326, 1516, 1734, 2010, 2338, 2298, 1995, 1728, 1503, 1330, 1197, 1117, 1076, 1061, 1080, 1133, 1217, 1357, 1529, 1763, 2018, 2348, 2402, 2041, 1769, 1542, 1374, 1260, 1168, 1117, 1107, 1119, 1168, 1263, 1400, 1574, 1805, 2081, 2402, 2457, 2140, 1842, 1638, 1454, 1323, 1228, 1184, 1171, 1179, 1245, 1323, 1474, 1648, 1868, 2157, 2480, 2540, 2211, 1944, 1723, 1547, 1419, 1330, 1284, 1257, 1272, 1320, 1430, 1551, 1745, 1958, 2268, 2654, 2641, 2328, 2065, 1823, 1653, 1512, 1442, 1389, 1367, 1392, 1438, 1542, 1674, 1862, 2106, 2348, 2751, 2765, 2435, 2211, 1988, 1793, 1653, 1574, 1516, 1512, 1529, 1574, 1674, 1811, 1995, 2249, 2480, 2839, 2933, 2602, 2424, 2166, 1980, 1868, 1740, 1669, 1679, 1690, 1781, 1868, 2033, 2239, 2424, 2668, 2949]
| }
| }, {
| "name": "3264x2448_D75_70",
| "resolution": "3264x2448",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2865, 2780, 2641, 2459, 2296, 2113, 2023, 1983, 1937, 1963, 2034, 2159, 2352, 2542, 2738, 2915, 2796, 2821, 2633, 2462, 2280, 2085, 1899, 1810, 1740, 1727, 1747, 1802, 1935, 2107, 2349, 2580, 2793, 2938, 2806, 2549, 2333, 2078, 1882, 1723, 1598, 1549, 1538, 1561, 1643, 1784, 1918, 2158, 2435, 2676, 2920, 2682, 2464, 2188, 1947, 1721, 1575, 1449, 1389, 1367, 1408, 1487, 1607, 1766, 2006, 2277, 2583, 2827, 2654, 2367, 2091, 1804, 1585, 1434, 1333, 1269, 1258, 1293, 1363, 1487, 1662, 1871, 2124, 2458, 2773, 2603, 2260, 1970, 1707, 1482, 1340, 1223, 1186, 1166, 1186, 1266, 1376, 1567, 1782, 2040, 2371, 2716, 2497, 2195, 1885, 1637, 1424, 1272, 1169, 1115, 1091, 1112, 1196, 1312, 1475, 1692, 1968, 2285, 2600, 2506, 2154, 1855, 1589, 1359, 1220, 1121, 1065, 1037, 1082, 1149, 1258, 1426, 1647, 1927, 2253, 2574, 2476, 2132, 1807, 1542, 1342, 1195, 1105, 1045, 1024, 1048, 1121, 1242, 1403, 1629, 1910, 2230, 2577, 2473, 2154, 1830, 1553, 1355, 1208, 1102, 1051, 1035, 1057, 1126, 1246, 1407, 1641, 1908, 2215, 2592, 2464, 2208, 1868, 1592, 1386, 1229, 1133, 1078, 1059, 1081, 1158, 1272, 1434, 1671, 1940, 2233, 2619, 2550, 2222, 1913, 1658, 1440, 1289, 1188, 1130, 1114, 1126, 1198, 1327, 1504, 1714, 1989, 2314, 2621, 2617, 2325, 1996, 1741, 1530, 1362, 1274, 1205, 1195, 1216, 1298, 1409, 1590, 1812, 2091, 2367, 2713, 2701, 2373, 2128, 1857, 1625, 1479, 1372, 1305, 1289, 1317, 1405, 1528, 1699, 1901, 2213, 2464, 2721, 2743, 2481, 2251, 2005, 1782, 1627, 1510, 1440, 1416, 1476, 1515, 1653, 1814, 2057, 2304, 2566, 2806, 2821, 2615, 2400, 2154, 1951, 1773, 1675, 1603, 1585, 1603, 1689, 1813, 2001, 2215, 2462, 2691, 2890, 2842, 2718, 2568, 2367, 2168, 1986, 1916, 1820, 1815, 1812, 1898, 2048, 2205, 2443, 2622, 2868, 2889]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2394, 2370, 2185, 2077, 1941, 1861, 1764, 1709, 1690, 1737, 1755, 1856, 1963, 2115, 2295, 2413, 2467, 2369, 2244, 2099, 1961, 1817, 1694, 1610, 1564, 1552, 1574, 1617, 1697, 1831, 1995, 2137, 2306, 2476, 2357, 2168, 2022, 1836, 1694, 1572, 1494, 1430, 1421, 1439, 1487, 1580, 1710, 1860, 2052, 2232, 2400, 2290, 2107, 1916, 1728, 1592, 1457, 1377, 1323, 1295, 1321, 1385, 1477, 1602, 1749, 1937, 2153, 2306, 2245, 2046, 1837, 1657, 1502, 1375, 1287, 1222, 1201, 1230, 1283, 1388, 1511, 1675, 1856, 2057, 2322, 2205, 2006, 1761, 1588, 1417, 1298, 1197, 1145, 1128, 1153, 1203, 1295, 1442, 1602, 1797, 2012, 2247, 2167, 1928, 1714, 1539, 1374, 1243, 1148, 1088, 1072, 1093, 1152, 1253, 1377, 1546, 1738, 1954, 2188, 2147, 1902, 1702, 1510, 1346, 1204, 1105, 1056, 1033, 1056, 1119, 1208, 1341, 1510, 1718, 1907, 2154, 2129, 1899, 1679, 1481, 1320, 1195, 1103, 1038, 1025, 1038, 1106, 1197, 1337, 1495, 1687, 1909, 2136, 2121, 1887, 1674, 1492, 1326, 1200, 1103, 1041, 1024, 1050, 1103, 1210, 1331, 1483, 1697, 1902, 2133, 2133, 1912, 1706, 1520, 1364, 1227, 1132, 1074, 1053, 1073, 1134, 1229, 1364, 1533, 1714, 1928, 2120, 2155, 1940, 1745, 1564, 1387, 1270, 1175, 1118, 1101, 1120, 1175, 1268, 1408, 1567, 1748, 1962, 2176, 2253, 2016, 1804, 1619, 1462, 1332, 1241, 1187, 1175, 1185, 1249, 1337, 1469, 1623, 1813, 2010, 2238, 2259, 2070, 1870, 1688, 1541, 1417, 1325, 1276, 1255, 1276, 1332, 1428, 1554, 1712, 1885, 2082, 2267, 2316, 2141, 1966, 1790, 1640, 1513, 1429, 1376, 1372, 1381, 1432, 1526, 1647, 1795, 1988, 2141, 2340, 2377, 2208, 2074, 1898, 1751, 1640, 1548, 1496, 1491, 1499, 1555, 1636, 1751, 1903, 2068, 2244, 2430, 2421, 2305, 2213, 2046, 1890, 1764, 1705, 1635, 1622, 1639, 1689, 1782, 1905, 2071, 2185, 2337, 2421]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2388, 2315, 2195, 2055, 1949, 1825, 1775, 1707, 1725, 1735, 1811, 1868, 2016, 2124, 2253, 2416, 2451, 2380, 2225, 2064, 1932, 1810, 1711, 1623, 1575, 1574, 1586, 1630, 1720, 1848, 1997, 2167, 2332, 2460, 2319, 2144, 1985, 1839, 1685, 1571, 1502, 1452, 1428, 1456, 1508, 1599, 1724, 1877, 2054, 2243, 2420, 2262, 2079, 1898, 1722, 1570, 1453, 1376, 1325, 1307, 1337, 1398, 1488, 1604, 1743, 1934, 2143, 2341, 2190, 2001, 1820, 1636, 1476, 1369, 1287, 1226, 1214, 1239, 1289, 1379, 1501, 1666, 1854, 2079, 2333, 2165, 1954, 1730, 1553, 1410, 1284, 1198, 1147, 1130, 1157, 1216, 1305, 1441, 1608, 1786, 1998, 2258, 2124, 1910, 1692, 1516, 1346, 1227, 1141, 1093, 1082, 1096, 1151, 1242, 1376, 1539, 1720, 1963, 2191, 2104, 1874, 1664, 1478, 1314, 1192, 1106, 1055, 1041, 1064, 1120, 1206, 1326, 1509, 1700, 1930, 2177, 2094, 1861, 1643, 1464, 1298, 1178, 1099, 1041, 1024, 1038, 1103, 1202, 1336, 1495, 1682, 1901, 2139, 2085, 1865, 1649, 1467, 1314, 1186, 1099, 1050, 1028, 1053, 1110, 1201, 1328, 1494, 1687, 1910, 2157, 2116, 1884, 1677, 1488, 1343, 1215, 1130, 1084, 1061, 1083, 1139, 1231, 1374, 1513, 1712, 1931, 2163, 2151, 1932, 1713, 1530, 1392, 1262, 1176, 1125, 1118, 1136, 1188, 1279, 1405, 1576, 1759, 1986, 2228, 2183, 1995, 1798, 1600, 1468, 1339, 1251, 1195, 1198, 1206, 1258, 1354, 1479, 1640, 1820, 2024, 2248, 2248, 2048, 1873, 1694, 1536, 1427, 1343, 1296, 1282, 1299, 1357, 1438, 1559, 1718, 1903, 2104, 2301, 2311, 2144, 1962, 1775, 1646, 1535, 1451, 1402, 1390, 1404, 1465, 1558, 1665, 1802, 2007, 2171, 2352, 2372, 2218, 2052, 1901, 1766, 1649, 1567, 1529, 1522, 1533, 1584, 1661, 1779, 1937, 2095, 2255, 2424, 2470, 2331, 2153, 2043, 1917, 1788, 1724, 1667, 1662, 1707, 1762, 1816, 1954, 2086, 2209, 2364, 2460]
| },
| "lsc_samples_blue": {
| "uCoeff": [2338, 2261, 2130, 2006, 1879, 1810, 1718, 1667, 1659, 1688, 1735, 1810, 1906, 2078, 2184, 2357, 2383, 2334, 2146, 2020, 1877, 1732, 1643, 1577, 1524, 1531, 1534, 1582, 1653, 1771, 1938, 2085, 2230, 2390, 2255, 2088, 1927, 1773, 1624, 1523, 1447, 1410, 1408, 1417, 1458, 1541, 1679, 1797, 1970, 2149, 2361, 2195, 2007, 1833, 1657, 1531, 1411, 1338, 1293, 1285, 1315, 1354, 1445, 1553, 1689, 1884, 2079, 2243, 2143, 1950, 1745, 1577, 1442, 1334, 1244, 1202, 1195, 1219, 1267, 1341, 1469, 1605, 1786, 2009, 2208, 2106, 1886, 1700, 1514, 1371, 1249, 1176, 1136, 1127, 1146, 1195, 1282, 1392, 1548, 1732, 1941, 2150, 2075, 1849, 1634, 1470, 1324, 1218, 1141, 1086, 1087, 1095, 1141, 1229, 1344, 1502, 1696, 1874, 2144, 2033, 1816, 1614, 1441, 1304, 1187, 1102, 1057, 1036, 1063, 1120, 1202, 1317, 1488, 1663, 1860, 2106, 2051, 1823, 1601, 1431, 1277, 1170, 1086, 1044, 1024, 1046, 1097, 1195, 1314, 1461, 1635, 1855, 2091, 2041, 1804, 1609, 1434, 1292, 1174, 1100, 1048, 1038, 1061, 1109, 1184, 1310, 1476, 1653, 1860, 2081, 2043, 1842, 1644, 1462, 1312, 1191, 1115, 1075, 1061, 1079, 1131, 1210, 1338, 1486, 1675, 1862, 2083, 2115, 1873, 1674, 1493, 1351, 1249, 1164, 1115, 1106, 1117, 1164, 1252, 1375, 1522, 1705, 1906, 2115, 2143, 1943, 1728, 1573, 1420, 1306, 1219, 1179, 1167, 1174, 1236, 1306, 1438, 1582, 1751, 1957, 2161, 2186, 1984, 1802, 1638, 1497, 1390, 1312, 1271, 1246, 1260, 1303, 1400, 1501, 1657, 1814, 2030, 2273, 2235, 2056, 1886, 1711, 1582, 1467, 1410, 1364, 1345, 1367, 1406, 1494, 1600, 1745, 1920, 2072, 2317, 2291, 2111, 1982, 1833, 1689, 1581, 1519, 1472, 1470, 1483, 1519, 1600, 1705, 1838, 2013, 2146, 2345, 2360, 2202, 2121, 1954, 1827, 1751, 1651, 1594, 1605, 1613, 1687, 1751, 1872, 2014, 2121, 2252, 2372]
| }
| }, {
| "name": "3264x2448_HZ_100",
| "resolution": "3264x2448",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4325, 4194, 3845, 3489, 3134, 2825, 2612, 2501, 2464, 2509, 2612, 2854, 3206, 3549, 3974, 4325, 4325, 4325, 3917, 3519, 3099, 2714, 2435, 2244, 2129, 2097, 2124, 2263, 2472, 2787, 3182, 3626, 4051, 4417, 4091, 3658, 3257, 2768, 2407, 2124, 1931, 1817, 1782, 1833, 1963, 2135, 2435, 2825, 3296, 3810, 4348, 4012, 3504, 2998, 2509, 2151, 1875, 1688, 1585, 1535, 1585, 1695, 1883, 2168, 2563, 3053, 3580, 4111, 3863, 3282, 2741, 2269, 1927, 1668, 1483, 1379, 1353, 1384, 1496, 1678, 1945, 2333, 2815, 3404, 3974, 3691, 3146, 2587, 2113, 1752, 1518, 1346, 1245, 1218, 1247, 1348, 1527, 1786, 2174, 2628, 3170, 3863, 3595, 2998, 2421, 1987, 1641, 1405, 1239, 1150, 1119, 1149, 1249, 1417, 1654, 2021, 2494, 3053, 3691, 3519, 2945, 2346, 1914, 1567, 1333, 1175, 1087, 1059, 1090, 1190, 1344, 1600, 1959, 2400, 2966, 3626, 3504, 2883, 2333, 1870, 1529, 1302, 1153, 1057, 1024, 1053, 1160, 1331, 1558, 1909, 2386, 2935, 3595, 3519, 2914, 2339, 1883, 1558, 1312, 1157, 1065, 1032, 1069, 1168, 1331, 1579, 1927, 2400, 2945, 3658, 3595, 2945, 2393, 1931, 1600, 1370, 1198, 1116, 1081, 1110, 1214, 1375, 1638, 1991, 2443, 3031, 3675, 3626, 3053, 2501, 2025, 1695, 1449, 1278, 1188, 1158, 1193, 1296, 1460, 1719, 2081, 2555, 3122, 3758, 3775, 3244, 2645, 2180, 1833, 1579, 1408, 1302, 1276, 1320, 1417, 1603, 1858, 2232, 2714, 3257, 3863, 3936, 3404, 2844, 2386, 2025, 1752, 1570, 1467, 1432, 1472, 1576, 1767, 2056, 2428, 2904, 3432, 3993, 4111, 3595, 3122, 2636, 2257, 1977, 1798, 1681, 1651, 1695, 1809, 1987, 2294, 2679, 3158, 3626, 4194, 4259, 3863, 3390, 2935, 2547, 2275, 2066, 1936, 1918, 1959, 2076, 2288, 2571, 2966, 3404, 3899, 4417, 4513, 4132, 3707, 3322, 2955, 2662, 2428, 2339, 2263, 2300, 2450, 2653, 2945, 3322, 3741, 4194, 4303]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3360, 3063, 2826, 2576, 2367, 2196, 2048, 1987, 1960, 1987, 2060, 2209, 2398, 2613, 2893, 3129, 3407, 3184, 2859, 2576, 2352, 2138, 1960, 1841, 1778, 1748, 1783, 1846, 1981, 2157, 2390, 2661, 2964, 3284, 3076, 2700, 2438, 2163, 1934, 1757, 1646, 1588, 1561, 1599, 1661, 1787, 1949, 2196, 2497, 2793, 3129, 2928, 2595, 2264, 1997, 1783, 1624, 1494, 1418, 1408, 1427, 1503, 1627, 1800, 2014, 2315, 2623, 3000, 2848, 2447, 2113, 1865, 1642, 1476, 1360, 1286, 1272, 1293, 1373, 1488, 1661, 1874, 2163, 2480, 2848, 2720, 2352, 2025, 1757, 1538, 1381, 1261, 1199, 1176, 1205, 1272, 1391, 1558, 1783, 2065, 2383, 2751, 2671, 2307, 1944, 1676, 1476, 1293, 1193, 1120, 1103, 1125, 1199, 1316, 1482, 1707, 1981, 2293, 2690, 2642, 2216, 1904, 1617, 1421, 1257, 1139, 1069, 1054, 1082, 1152, 1275, 1441, 1653, 1934, 2271, 2671, 2576, 2216, 1869, 1617, 1399, 1232, 1117, 1049, 1024, 1052, 1137, 1246, 1424, 1642, 1904, 2230, 2632, 2613, 2203, 1889, 1635, 1408, 1251, 1122, 1060, 1037, 1072, 1145, 1253, 1427, 1631, 1904, 2236, 2623, 2671, 2243, 1914, 1661, 1447, 1277, 1167, 1100, 1080, 1101, 1178, 1297, 1449, 1680, 1955, 2264, 2642, 2690, 2344, 1987, 1707, 1509, 1340, 1225, 1157, 1145, 1172, 1229, 1348, 1522, 1753, 2014, 2329, 2710, 2772, 2422, 2107, 1818, 1599, 1435, 1314, 1251, 1232, 1251, 1333, 1447, 1606, 1832, 2095, 2438, 2804, 2905, 2531, 2223, 1949, 1711, 1555, 1438, 1370, 1350, 1368, 1430, 1558, 1728, 1949, 2223, 2549, 2916, 3038, 2671, 2375, 2095, 1879, 1684, 1582, 1516, 1488, 1525, 1588, 1703, 1879, 2101, 2398, 2661, 3051, 3156, 2826, 2540, 2271, 2042, 1869, 1753, 1696, 1668, 1672, 1765, 1884, 2054, 2286, 2540, 2826, 3198, 3345, 3051, 2772, 2488, 2286, 2083, 1997, 1894, 1884, 1939, 1976, 2113, 2278, 2523, 2783, 3089, 3345]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3316, 3025, 2791, 2510, 2302, 2133, 2019, 1954, 1943, 1959, 2036, 2165, 2332, 2582, 2835, 3143, 3271, 3227, 2824, 2564, 2302, 2096, 1918, 1807, 1738, 1705, 1721, 1803, 1928, 2114, 2378, 2648, 2963, 3316, 3038, 2718, 2410, 2120, 1913, 1738, 1614, 1551, 1525, 1551, 1628, 1759, 1933, 2171, 2484, 2791, 3171, 2939, 2564, 2259, 1997, 1746, 1585, 1472, 1390, 1377, 1409, 1472, 1599, 1785, 2014, 2302, 2648, 3000, 2791, 2451, 2133, 1844, 1636, 1460, 1344, 1273, 1253, 1280, 1344, 1469, 1654, 1888, 2171, 2519, 2892, 2678, 2363, 2036, 1746, 1551, 1377, 1246, 1179, 1164, 1181, 1255, 1380, 1541, 1785, 2066, 2378, 2802, 2658, 2288, 1964, 1685, 1466, 1289, 1181, 1114, 1087, 1112, 1187, 1303, 1475, 1701, 1981, 2332, 2738, 2610, 2252, 1918, 1628, 1420, 1242, 1140, 1066, 1039, 1073, 1142, 1255, 1429, 1666, 1943, 2281, 2688, 2610, 2204, 1902, 1625, 1404, 1238, 1128, 1048, 1024, 1046, 1126, 1244, 1415, 1643, 1907, 2266, 2668, 2610, 2238, 1913, 1632, 1409, 1244, 1130, 1057, 1027, 1058, 1131, 1255, 1426, 1647, 1918, 2259, 2678, 2658, 2266, 1949, 1666, 1449, 1275, 1160, 1090, 1068, 1090, 1174, 1280, 1460, 1681, 1964, 2310, 2688, 2749, 2355, 2003, 1738, 1500, 1341, 1225, 1153, 1130, 1157, 1230, 1351, 1519, 1742, 2014, 2370, 2813, 2813, 2418, 2114, 1807, 1603, 1429, 1310, 1236, 1219, 1242, 1314, 1437, 1636, 1840, 2133, 2476, 2880, 2903, 2555, 2218, 1933, 1713, 1532, 1432, 1356, 1329, 1356, 1434, 1545, 1717, 1959, 2266, 2573, 2963, 3050, 2678, 2355, 2083, 1854, 1693, 1572, 1494, 1472, 1491, 1568, 1689, 1873, 2108, 2410, 2708, 3116, 3157, 2813, 2510, 2259, 2031, 1840, 1738, 1666, 1636, 1666, 1738, 1873, 2042, 2252, 2537, 2857, 3242, 3378, 3038, 2770, 2476, 2252, 2083, 1943, 1888, 1863, 1913, 1975, 2096, 2273, 2493, 2813, 3116, 3286]
| },
| "lsc_samples_blue": {
| "uCoeff": [3203, 3066, 2745, 2484, 2304, 2149, 1986, 1959, 1959, 2000, 2014, 2182, 2361, 2596, 2745, 3100, 3314, 3066, 2745, 2550, 2268, 2043, 1870, 1788, 1735, 1724, 1724, 1811, 1920, 2102, 2323, 2620, 2911, 3276, 3002, 2668, 2361, 2072, 1882, 1724, 1617, 1548, 1539, 1573, 1645, 1745, 1959, 2134, 2463, 2745, 3168, 2825, 2528, 2199, 1933, 1704, 1573, 1461, 1384, 1397, 1425, 1492, 1617, 1756, 2014, 2304, 2620, 3002, 2825, 2381, 2072, 1777, 1608, 1447, 1326, 1285, 1285, 1308, 1391, 1476, 1645, 1870, 2166, 2484, 2825, 2668, 2286, 1959, 1684, 1499, 1345, 1241, 1209, 1184, 1220, 1285, 1404, 1565, 1777, 2057, 2381, 2745, 2596, 2182, 1894, 1627, 1432, 1291, 1189, 1129, 1115, 1147, 1209, 1332, 1492, 1704, 2000, 2286, 2719, 2620, 2149, 1834, 1590, 1377, 1241, 1151, 1078, 1058, 1098, 1175, 1296, 1454, 1655, 1920, 2233, 2620, 2550, 2166, 1834, 1582, 1377, 1241, 1133, 1058, 1024, 1066, 1160, 1268, 1447, 1655, 1907, 2216, 2644, 2573, 2166, 1846, 1590, 1397, 1235, 1147, 1070, 1043, 1090, 1175, 1285, 1432, 1684, 1946, 2233, 2644, 2644, 2182, 1882, 1608, 1411, 1279, 1170, 1115, 1094, 1124, 1184, 1296, 1484, 1694, 1973, 2268, 2668, 2644, 2286, 1933, 1684, 1476, 1326, 1220, 1175, 1151, 1189, 1246, 1364, 1539, 1745, 2000, 2342, 2668, 2745, 2401, 2043, 1777, 1565, 1411, 1308, 1251, 1246, 1257, 1351, 1447, 1608, 1822, 2102, 2421, 2825, 2854, 2463, 2149, 1870, 1674, 1515, 1418, 1364, 1332, 1364, 1432, 1548, 1714, 1946, 2233, 2573, 2911, 2971, 2644, 2323, 2028, 1822, 1664, 1565, 1484, 1476, 1499, 1573, 1684, 1846, 2087, 2381, 2693, 3100, 3100, 2745, 2484, 2182, 1986, 1788, 1714, 1627, 1636, 1655, 1745, 1858, 2000, 2250, 2550, 2798, 3314, 3353, 2971, 2693, 2506, 2182, 2043, 1946, 1882, 1907, 1907, 1973, 2087, 2268, 2506, 2798, 3066, 3276]
| }
| }, {
| "name": "3264x2448_HZ_70",
| "resolution": "3264x2448",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3335, 3391, 3234, 3032, 2797, 2574, 2414, 2330, 2302, 2337, 2414, 2599, 2858, 3081, 3335, 3489, 3335, 3426, 3253, 3038, 2765, 2486, 2274, 2123, 2029, 2004, 2025, 2140, 2307, 2549, 2834, 3125, 3357, 3493, 3321, 3108, 2873, 2524, 2250, 2023, 1861, 1763, 1733, 1778, 1891, 2033, 2275, 2573, 2906, 3228, 3513, 3314, 3030, 2694, 2328, 2044, 1813, 1650, 1558, 1512, 1558, 1656, 1820, 2060, 2376, 2741, 3091, 3390, 3240, 2883, 2502, 2136, 1855, 1631, 1464, 1368, 1343, 1372, 1476, 1640, 1872, 2194, 2566, 2983, 3327, 3136, 2795, 2388, 2010, 1703, 1496, 1337, 1241, 1215, 1243, 1338, 1504, 1735, 2065, 2423, 2815, 3272, 3080, 2687, 2254, 1904, 1605, 1391, 1235, 1149, 1118, 1148, 1244, 1403, 1617, 1935, 2319, 2734, 3157, 3031, 2652, 2195, 1842, 1538, 1323, 1173, 1087, 1059, 1090, 1188, 1334, 1569, 1883, 2243, 2670, 3117, 3023, 2603, 2186, 1803, 1503, 1294, 1151, 1057, 1024, 1053, 1158, 1322, 1531, 1839, 2233, 2647, 3097, 3031, 2626, 2189, 1813, 1530, 1303, 1155, 1065, 1032, 1069, 1166, 1322, 1550, 1854, 2243, 2652, 3143, 3080, 2643, 2230, 1853, 1566, 1357, 1194, 1115, 1081, 1109, 1210, 1362, 1602, 1908, 2274, 2715, 3144, 3084, 2717, 2313, 1930, 1650, 1430, 1271, 1185, 1156, 1190, 1288, 1440, 1672, 1981, 2360, 2775, 3189, 3172, 2852, 2419, 2057, 1769, 1547, 1392, 1293, 1269, 1310, 1401, 1570, 1792, 2103, 2479, 2862, 3240, 3256, 2949, 2564, 2220, 1930, 1699, 1538, 1446, 1414, 1450, 1544, 1713, 1958, 2257, 2615, 2972, 3299, 3336, 3058, 2762, 2410, 2117, 1889, 1738, 1637, 1611, 1650, 1749, 1898, 2150, 2447, 2791, 3083, 3398, 3378, 3212, 2934, 2627, 2341, 2132, 1963, 1854, 1840, 1875, 1972, 2144, 2362, 2653, 2945, 3240, 3493, 3466, 3345, 3126, 2896, 2647, 2434, 2253, 2187, 2124, 2153, 2273, 2426, 2639, 2896, 3153, 3391, 3319]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2659, 2547, 2436, 2288, 2153, 2033, 1921, 1876, 1855, 1876, 1931, 2044, 2179, 2318, 2488, 2596, 2692, 2596, 2438, 2277, 2138, 1988, 1853, 1760, 1710, 1685, 1715, 1764, 1872, 2004, 2170, 2346, 2519, 2669, 2561, 2350, 2195, 2004, 1831, 1689, 1598, 1550, 1526, 1560, 1612, 1717, 1844, 2032, 2244, 2424, 2600, 2483, 2295, 2073, 1879, 1711, 1580, 1467, 1399, 1391, 1408, 1475, 1583, 1727, 1894, 2116, 2317, 2538, 2448, 2195, 1961, 1775, 1593, 1450, 1346, 1278, 1265, 1284, 1358, 1461, 1611, 1783, 2004, 2223, 2448, 2367, 2132, 1897, 1688, 1504, 1365, 1254, 1196, 1173, 1201, 1265, 1374, 1522, 1711, 1932, 2158, 2391, 2341, 2105, 1834, 1620, 1450, 1283, 1190, 1119, 1102, 1124, 1195, 1305, 1455, 1648, 1867, 2093, 2356, 2326, 2034, 1803, 1569, 1400, 1250, 1137, 1069, 1054, 1082, 1150, 1267, 1419, 1602, 1830, 2081, 2349, 2275, 2036, 1774, 1570, 1380, 1226, 1116, 1049, 1024, 1052, 1136, 1240, 1403, 1593, 1805, 2048, 2320, 2302, 2023, 1790, 1586, 1388, 1244, 1121, 1060, 1037, 1072, 1143, 1246, 1406, 1582, 1803, 2051, 2310, 2341, 2051, 1808, 1606, 1422, 1268, 1164, 1099, 1080, 1100, 1175, 1287, 1424, 1623, 1844, 2069, 2318, 2343, 2126, 1864, 1642, 1476, 1326, 1219, 1154, 1143, 1169, 1223, 1333, 1489, 1684, 1888, 2113, 2359, 2389, 2175, 1956, 1733, 1553, 1411, 1302, 1244, 1226, 1244, 1320, 1423, 1560, 1746, 1946, 2188, 2414, 2466, 2243, 2038, 1836, 1646, 1516, 1414, 1353, 1335, 1351, 1407, 1519, 1661, 1836, 2038, 2257, 2474, 2532, 2327, 2143, 1945, 1782, 1623, 1539, 1483, 1458, 1491, 1545, 1640, 1782, 1950, 2162, 2319, 2542, 2575, 2413, 2248, 2070, 1905, 1772, 1681, 1635, 1612, 1614, 1691, 1786, 1915, 2083, 2248, 2413, 2606, 2649, 2538, 2394, 2217, 2085, 1936, 1876, 1793, 1787, 1833, 1858, 1961, 2078, 2245, 2402, 2566, 2649]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2628, 2518, 2408, 2235, 2098, 1979, 1895, 1847, 1840, 1851, 1910, 2006, 2123, 2293, 2443, 2606, 2597, 2627, 2411, 2267, 2096, 1951, 1816, 1729, 1674, 1646, 1658, 1726, 1825, 1967, 2160, 2335, 2518, 2692, 2532, 2364, 2172, 1967, 1812, 1672, 1569, 1515, 1493, 1515, 1582, 1691, 1830, 2011, 2233, 2422, 2632, 2492, 2270, 2069, 1879, 1678, 1544, 1446, 1372, 1361, 1390, 1446, 1557, 1713, 1894, 2105, 2337, 2538, 2403, 2199, 1979, 1757, 1588, 1435, 1331, 1265, 1246, 1272, 1331, 1443, 1604, 1796, 2011, 2255, 2482, 2334, 2141, 1907, 1678, 1516, 1361, 1239, 1176, 1162, 1178, 1248, 1364, 1506, 1713, 1933, 2154, 2432, 2331, 2089, 1852, 1628, 1440, 1279, 1178, 1113, 1087, 1111, 1184, 1293, 1449, 1643, 1867, 2126, 2395, 2300, 2065, 1816, 1579, 1399, 1235, 1138, 1066, 1039, 1073, 1140, 1248, 1408, 1614, 1838, 2089, 2363, 2302, 2026, 1803, 1577, 1385, 1232, 1127, 1048, 1024, 1046, 1125, 1238, 1395, 1594, 1808, 2079, 2349, 2300, 2053, 1811, 1583, 1389, 1237, 1128, 1057, 1027, 1058, 1129, 1248, 1405, 1597, 1816, 2071, 2355, 2331, 2071, 1839, 1611, 1424, 1266, 1157, 1089, 1068, 1089, 1171, 1271, 1435, 1624, 1852, 2108, 2355, 2390, 2135, 1878, 1670, 1468, 1327, 1219, 1150, 1128, 1154, 1224, 1336, 1486, 1674, 1888, 2147, 2440, 2421, 2172, 1962, 1724, 1557, 1406, 1298, 1229, 1213, 1235, 1302, 1413, 1588, 1753, 1979, 2219, 2473, 2464, 2262, 2034, 1822, 1648, 1495, 1408, 1340, 1315, 1340, 1410, 1507, 1651, 1845, 2075, 2277, 2510, 2541, 2333, 2126, 1935, 1760, 1631, 1530, 1462, 1443, 1459, 1526, 1628, 1777, 1956, 2172, 2356, 2591, 2576, 2403, 2224, 2060, 1895, 1747, 1667, 1608, 1583, 1608, 1667, 1776, 1905, 2054, 2246, 2437, 2638, 2672, 2528, 2392, 2207, 2056, 1936, 1829, 1788, 1769, 1810, 1857, 1947, 2074, 2221, 2426, 2586, 2607]
| },
| "lsc_samples_blue": {
| "uCoeff": [2549, 2549, 2372, 2213, 2100, 1992, 1866, 1851, 1854, 1887, 1891, 2021, 2148, 2305, 2372, 2574, 2627, 2510, 2350, 2256, 2067, 1905, 1773, 1712, 1671, 1663, 1661, 1733, 1818, 1957, 2114, 2313, 2478, 2663, 2505, 2325, 2131, 1925, 1785, 1659, 1571, 1513, 1506, 1536, 1597, 1679, 1853, 1979, 2216, 2386, 2630, 2404, 2240, 2018, 1822, 1640, 1533, 1436, 1367, 1380, 1406, 1465, 1574, 1687, 1894, 2107, 2315, 2540, 2430, 2141, 1926, 1697, 1562, 1423, 1313, 1277, 1277, 1299, 1376, 1450, 1596, 1780, 2007, 2226, 2430, 2326, 2077, 1840, 1622, 1467, 1330, 1235, 1205, 1181, 1216, 1277, 1387, 1529, 1706, 1925, 2156, 2387, 2281, 2000, 1790, 1575, 1408, 1281, 1186, 1128, 1114, 1146, 1205, 1321, 1465, 1645, 1884, 2087, 2380, 2308, 1977, 1741, 1544, 1358, 1234, 1149, 1078, 1058, 1098, 1173, 1288, 1431, 1604, 1818, 2049, 2308, 2254, 1994, 1743, 1538, 1359, 1235, 1132, 1058, 1024, 1066, 1158, 1261, 1425, 1605, 1808, 2036, 2330, 2270, 1992, 1752, 1544, 1377, 1228, 1145, 1070, 1043, 1090, 1173, 1277, 1410, 1631, 1841, 2049, 2327, 2320, 2000, 1780, 1558, 1388, 1270, 1167, 1114, 1093, 1123, 1181, 1286, 1457, 1636, 1860, 2072, 2339, 2307, 2077, 1817, 1622, 1446, 1312, 1214, 1172, 1149, 1186, 1239, 1349, 1504, 1677, 1875, 2124, 2326, 2368, 2158, 1901, 1697, 1522, 1389, 1296, 1244, 1240, 1249, 1337, 1423, 1562, 1737, 1952, 2174, 2430, 2427, 2188, 1976, 1767, 1612, 1479, 1395, 1348, 1318, 1348, 1408, 1510, 1649, 1834, 2047, 2277, 2470, 2482, 2306, 2100, 1888, 1732, 1605, 1523, 1453, 1447, 1467, 1531, 1623, 1753, 1938, 2148, 2345, 2579, 2535, 2350, 2203, 1995, 1856, 1701, 1646, 1573, 1583, 1598, 1673, 1763, 1868, 2052, 2256, 2391, 2690, 2654, 2478, 2332, 2231, 1997, 1901, 1831, 1783, 1808, 1805, 1855, 1939, 2070, 2231, 2414, 2549, 2600]
| }
| }, {
| "name": "3264x2448_TL84_100",
| "resolution": "3264x2448",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3502, 3461, 3199, 2818, 2596, 2330, 2144, 2077, 2041, 2091, 2192, 2367, 2630, 2989, 3325, 3587, 3609, 3544, 3288, 2930, 2585, 2242, 2006, 1873, 1783, 1767, 1788, 1873, 2062, 2312, 2642, 3004, 3401, 3699, 3523, 3067, 2690, 2312, 1993, 1777, 1640, 1558, 1518, 1566, 1640, 1810, 2041, 2367, 2753, 3148, 3653, 3382, 2916, 2476, 2091, 1783, 1578, 1451, 1370, 1348, 1376, 1461, 1591, 1810, 2114, 2519, 2989, 3461, 3199, 2728, 2276, 1903, 1613, 1440, 1318, 1259, 1236, 1251, 1321, 1465, 1667, 1934, 2349, 2818, 3344, 3067, 2596, 2137, 1762, 1510, 1330, 1223, 1156, 1140, 1165, 1238, 1345, 1541, 1799, 2168, 2690, 3148, 3004, 2487, 2034, 1672, 1423, 1254, 1161, 1096, 1094, 1104, 1161, 1270, 1440, 1711, 2084, 2551, 3083, 2959, 2416, 1979, 1613, 1380, 1215, 1113, 1065, 1046, 1063, 1130, 1223, 1403, 1649, 2027, 2487, 3083, 2959, 2387, 1934, 1591, 1345, 1191, 1108, 1055, 1024, 1053, 1106, 1215, 1380, 1644, 1979, 2446, 2974, 2989, 2406, 1941, 1587, 1364, 1201, 1100, 1061, 1048, 1055, 1119, 1223, 1389, 1626, 1993, 2446, 3051, 2989, 2466, 1979, 1644, 1399, 1230, 1132, 1082, 1068, 1076, 1140, 1254, 1419, 1691, 2048, 2519, 3020, 3035, 2562, 2062, 1736, 1458, 1295, 1179, 1123, 1113, 1123, 1186, 1304, 1495, 1767, 2129, 2596, 3115, 3182, 2654, 2192, 1832, 1562, 1373, 1254, 1191, 1179, 1191, 1278, 1403, 1595, 1873, 2250, 2728, 3217, 3306, 2805, 2396, 2000, 1716, 1498, 1370, 1304, 1278, 1312, 1386, 1518, 1731, 2048, 2436, 2873, 3382, 3421, 3035, 2596, 2192, 1897, 1677, 1533, 1451, 1440, 1454, 1558, 1701, 1922, 2242, 2630, 3067, 3565, 3544, 3234, 2818, 2436, 2129, 1891, 1746, 1653, 1617, 1649, 1741, 1909, 2152, 2466, 2887, 3252, 3676, 3699, 3421, 3115, 2740, 2436, 2160, 2041, 1941, 1879, 1915, 2041, 2208, 2466, 2792, 3132, 3502, 3699]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3068, 2863, 2655, 2386, 2206, 2034, 1916, 1863, 1825, 1867, 1921, 2068, 2233, 2458, 2724, 2980, 3133, 3029, 2704, 2450, 2219, 1984, 1807, 1714, 1656, 1626, 1644, 1730, 1830, 2017, 2253, 2518, 2766, 3107, 2863, 2544, 2274, 2017, 1803, 1648, 1537, 1487, 1454, 1484, 1550, 1659, 1848, 2057, 2310, 2617, 2968, 2755, 2434, 2135, 1863, 1667, 1512, 1412, 1337, 1320, 1345, 1426, 1531, 1671, 1882, 2173, 2467, 2808, 2636, 2310, 2006, 1755, 1544, 1393, 1285, 1237, 1211, 1235, 1299, 1407, 1563, 1759, 2034, 2340, 2684, 2553, 2212, 1901, 1656, 1449, 1313, 1215, 1143, 1132, 1157, 1215, 1320, 1466, 1663, 1921, 2253, 2626, 2509, 2147, 1834, 1580, 1383, 1242, 1139, 1086, 1080, 1096, 1157, 1257, 1396, 1598, 1844, 2173, 2562, 2483, 2086, 1798, 1537, 1342, 1209, 1106, 1058, 1043, 1060, 1116, 1217, 1357, 1550, 1816, 2141, 2483, 2450, 2080, 1768, 1531, 1318, 1187, 1091, 1037, 1024, 1042, 1108, 1213, 1355, 1537, 1794, 2086, 2458, 2475, 2098, 1781, 1540, 1335, 1191, 1098, 1054, 1036, 1057, 1108, 1203, 1350, 1547, 1798, 2104, 2458, 2483, 2110, 1807, 1560, 1370, 1227, 1128, 1071, 1061, 1082, 1139, 1231, 1383, 1570, 1834, 2129, 2509, 2553, 2167, 1877, 1608, 1426, 1279, 1174, 1127, 1103, 1123, 1178, 1288, 1434, 1633, 1877, 2186, 2562, 2655, 2267, 1963, 1702, 1499, 1355, 1252, 1189, 1168, 1193, 1268, 1362, 1515, 1714, 1973, 2274, 2645, 2684, 2394, 2068, 1816, 1619, 1463, 1352, 1290, 1274, 1295, 1350, 1460, 1615, 1825, 2074, 2426, 2745, 2797, 2509, 2212, 1942, 1742, 1587, 1481, 1415, 1409, 1423, 1487, 1594, 1755, 1952, 2233, 2518, 2897, 3005, 2645, 2386, 2116, 1901, 1738, 1630, 1567, 1560, 1557, 1630, 1764, 1911, 2141, 2378, 2684, 3005, 3133, 2841, 2608, 2340, 2147, 1952, 1844, 1768, 1759, 1785, 1834, 1968, 2135, 2355, 2608, 2980, 3120]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3081, 2932, 2598, 2394, 2186, 2011, 1896, 1844, 1821, 1844, 1921, 2028, 2233, 2458, 2674, 2992, 3174, 3017, 2714, 2450, 2186, 1968, 1807, 1706, 1637, 1622, 1637, 1714, 1816, 1989, 2247, 2492, 2787, 3094, 2874, 2544, 2267, 2011, 1803, 1641, 1534, 1469, 1460, 1478, 1557, 1652, 1816, 2051, 2340, 2636, 3029, 2745, 2402, 2135, 1863, 1678, 1508, 1407, 1330, 1320, 1350, 1412, 1505, 1682, 1882, 2173, 2483, 2852, 2636, 2310, 1995, 1747, 1544, 1393, 1279, 1227, 1213, 1235, 1304, 1401, 1550, 1759, 2045, 2386, 2745, 2544, 2233, 1896, 1656, 1454, 1306, 1205, 1148, 1135, 1155, 1207, 1311, 1469, 1686, 1937, 2282, 2665, 2535, 2135, 1830, 1577, 1385, 1244, 1146, 1098, 1078, 1093, 1157, 1257, 1407, 1594, 1863, 2186, 2562, 2475, 2116, 1785, 1547, 1352, 1209, 1115, 1058, 1039, 1064, 1116, 1207, 1360, 1560, 1807, 2154, 2553, 2442, 2080, 1776, 1518, 1327, 1195, 1098, 1040, 1024, 1043, 1108, 1199, 1355, 1544, 1807, 2135, 2518, 2458, 2092, 1785, 1524, 1340, 1201, 1101, 1055, 1034, 1051, 1103, 1203, 1342, 1550, 1794, 2129, 2526, 2509, 2110, 1812, 1563, 1375, 1225, 1127, 1080, 1058, 1083, 1134, 1237, 1385, 1587, 1834, 2160, 2535, 2571, 2206, 1887, 1626, 1423, 1283, 1181, 1134, 1113, 1123, 1189, 1288, 1437, 1648, 1896, 2233, 2636, 2645, 2274, 1973, 1694, 1508, 1360, 1261, 1199, 1189, 1203, 1263, 1378, 1527, 1738, 2011, 2325, 2704, 2724, 2386, 2068, 1821, 1619, 1463, 1362, 1299, 1288, 1301, 1367, 1481, 1637, 1839, 2104, 2434, 2808, 2863, 2526, 2206, 1957, 1755, 1594, 1493, 1429, 1404, 1418, 1496, 1601, 1772, 1995, 2253, 2562, 2909, 3017, 2674, 2386, 2135, 1916, 1751, 1644, 1574, 1553, 1580, 1648, 1747, 1926, 2160, 2426, 2714, 3042, 3147, 2874, 2580, 2318, 2122, 1952, 1844, 1759, 1747, 1798, 1848, 1963, 2154, 2386, 2617, 2897, 3161]
| },
| "lsc_samples_blue": {
| "uCoeff": [2886, 2815, 2544, 2304, 2132, 1939, 1816, 1769, 1760, 1797, 1855, 1928, 2146, 2385, 2622, 2936, 3152, 2962, 2582, 2336, 2068, 1876, 1725, 1634, 1567, 1567, 1574, 1642, 1760, 1928, 2146, 2418, 2704, 3014, 2726, 2453, 2159, 1918, 1708, 1546, 1473, 1406, 1400, 1430, 1498, 1596, 1760, 1973, 2244, 2544, 2911, 2683, 2320, 2019, 1760, 1574, 1430, 1351, 1285, 1285, 1310, 1351, 1466, 1619, 1806, 2093, 2401, 2748, 2563, 2187, 1876, 1627, 1454, 1325, 1239, 1191, 1191, 1212, 1271, 1346, 1498, 1716, 1950, 2274, 2622, 2488, 2132, 1788, 1546, 1378, 1248, 1171, 1129, 1107, 1136, 1179, 1280, 1424, 1611, 1845, 2187, 2582, 2401, 2031, 1725, 1492, 1330, 1187, 1121, 1069, 1065, 1079, 1132, 1230, 1362, 1539, 1806, 2106, 2488, 2336, 2008, 1674, 1466, 1280, 1163, 1089, 1046, 1036, 1056, 1103, 1195, 1330, 1512, 1751, 2043, 2418, 2352, 1962, 1691, 1442, 1275, 1140, 1075, 1043, 1024, 1049, 1096, 1179, 1320, 1479, 1725, 2031, 2418, 2401, 1984, 1682, 1442, 1285, 1159, 1079, 1043, 1040, 1059, 1100, 1179, 1320, 1512, 1725, 2019, 2435, 2471, 2008, 1708, 1492, 1305, 1171, 1107, 1056, 1059, 1069, 1129, 1208, 1335, 1532, 1797, 2081, 2418, 2435, 2081, 1760, 1525, 1351, 1217, 1136, 1100, 1089, 1107, 1159, 1243, 1372, 1581, 1826, 2132, 2453, 2563, 2173, 1855, 1619, 1418, 1285, 1212, 1159, 1147, 1163, 1225, 1305, 1460, 1642, 1907, 2215, 2582, 2602, 2259, 1996, 1716, 1525, 1389, 1285, 1243, 1234, 1257, 1320, 1389, 1553, 1760, 1984, 2304, 2642, 2792, 2385, 2119, 1855, 1650, 1518, 1430, 1372, 1362, 1367, 1436, 1532, 1674, 1886, 2173, 2418, 2792, 2911, 2563, 2289, 2019, 1816, 1650, 1560, 1512, 1473, 1512, 1553, 1666, 1816, 2056, 2304, 2582, 2911, 3014, 2748, 2525, 2229, 2056, 1865, 1733, 1733, 1674, 1708, 1778, 1886, 2043, 2274, 2525, 2839, 3040]
| }
| }, {
| "name": "3264x2448_TL84_70",
| "resolution": "3264x2448",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2759, 2844, 2728, 2485, 2345, 2148, 2005, 1955, 1927, 1968, 2047, 2180, 2374, 2625, 2827, 2938, 2834, 2858, 2769, 2563, 2333, 2078, 1894, 1789, 1715, 1702, 1719, 1789, 1943, 2138, 2381, 2623, 2856, 2971, 2895, 2641, 2404, 2132, 1883, 1708, 1593, 1522, 1486, 1529, 1593, 1738, 1926, 2179, 2456, 2705, 2993, 2831, 2554, 2252, 1961, 1711, 1537, 1426, 1353, 1333, 1359, 1436, 1549, 1736, 1981, 2289, 2613, 2892, 2722, 2427, 2102, 1809, 1566, 1416, 1306, 1251, 1230, 1244, 1309, 1440, 1616, 1837, 2165, 2501, 2835, 2642, 2336, 1995, 1692, 1477, 1316, 1217, 1153, 1138, 1162, 1232, 1330, 1506, 1726, 2022, 2414, 2706, 2607, 2257, 1914, 1616, 1400, 1246, 1158, 1095, 1093, 1103, 1158, 1261, 1416, 1652, 1958, 2311, 2671, 2581, 2204, 1870, 1565, 1361, 1209, 1112, 1065, 1046, 1063, 1128, 1217, 1383, 1598, 1912, 2264, 2680, 2584, 2181, 1832, 1546, 1329, 1186, 1107, 1055, 1024, 1053, 1105, 1209, 1362, 1595, 1872, 2231, 2596, 2605, 2195, 1836, 1541, 1346, 1196, 1099, 1061, 1048, 1055, 1118, 1217, 1370, 1577, 1882, 2229, 2655, 2595, 2239, 1865, 1591, 1377, 1223, 1130, 1081, 1068, 1075, 1138, 1246, 1396, 1634, 1926, 2284, 2620, 2616, 2307, 1930, 1669, 1429, 1283, 1174, 1121, 1112, 1121, 1181, 1291, 1463, 1697, 1988, 2336, 2680, 2709, 2366, 2029, 1746, 1519, 1353, 1244, 1186, 1174, 1186, 1267, 1381, 1550, 1783, 2079, 2427, 2736, 2773, 2464, 2185, 1881, 1650, 1463, 1350, 1290, 1267, 1298, 1365, 1482, 1664, 1923, 2219, 2519, 2831, 2819, 2615, 2326, 2029, 1798, 1617, 1494, 1422, 1413, 1425, 1517, 1639, 1820, 2072, 2354, 2641, 2927, 2858, 2727, 2472, 2208, 1980, 1792, 1674, 1596, 1565, 1593, 1670, 1808, 2000, 2234, 2528, 2741, 2954, 2897, 2814, 2662, 2422, 2211, 2002, 1914, 1835, 1783, 1812, 1914, 2043, 2236, 2464, 2676, 2874, 2897]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2455, 2397, 2302, 2134, 2017, 1893, 1805, 1766, 1735, 1770, 1809, 1923, 2040, 2192, 2356, 2485, 2500, 2483, 2319, 2175, 2026, 1854, 1718, 1646, 1599, 1574, 1588, 1660, 1738, 1883, 2055, 2230, 2366, 2540, 2401, 2227, 2059, 1878, 1715, 1590, 1498, 1456, 1426, 1453, 1510, 1600, 1755, 1912, 2089, 2284, 2480, 2351, 2164, 1964, 1761, 1606, 1476, 1390, 1322, 1307, 1329, 1403, 1494, 1610, 1778, 1996, 2191, 2391, 2282, 2083, 1869, 1677, 1503, 1372, 1274, 1230, 1206, 1228, 1287, 1385, 1520, 1681, 1893, 2107, 2320, 2235, 2015, 1789, 1596, 1420, 1300, 1209, 1141, 1130, 1154, 1209, 1307, 1436, 1602, 1807, 2050, 2292, 2212, 1970, 1737, 1532, 1362, 1234, 1137, 1085, 1080, 1095, 1154, 1249, 1374, 1549, 1746, 1992, 2254, 2198, 1924, 1710, 1495, 1325, 1203, 1105, 1058, 1043, 1060, 1115, 1211, 1339, 1507, 1726, 1971, 2198, 2174, 1921, 1684, 1491, 1303, 1182, 1090, 1037, 1024, 1042, 1107, 1207, 1338, 1496, 1707, 1926, 2180, 2191, 1934, 1695, 1498, 1318, 1186, 1097, 1054, 1036, 1057, 1107, 1197, 1333, 1505, 1710, 1939, 2178, 2191, 1939, 1714, 1514, 1350, 1220, 1126, 1071, 1061, 1081, 1137, 1223, 1362, 1523, 1737, 1955, 2212, 2235, 1978, 1768, 1553, 1399, 1267, 1170, 1125, 1102, 1121, 1173, 1276, 1406, 1575, 1768, 1994, 2242, 2297, 2047, 1832, 1630, 1461, 1336, 1242, 1184, 1164, 1188, 1258, 1343, 1476, 1640, 1841, 2053, 2289, 2296, 2132, 1907, 1720, 1563, 1431, 1333, 1277, 1263, 1282, 1331, 1428, 1559, 1728, 1912, 2158, 2343, 2352, 2199, 2008, 1814, 1661, 1535, 1446, 1389, 1384, 1396, 1451, 1541, 1672, 1822, 2025, 2206, 2427, 2466, 2273, 2124, 1940, 1783, 1656, 1570, 1518, 1513, 1509, 1570, 1679, 1791, 1961, 2117, 2303, 2466, 2500, 2381, 2265, 2096, 1968, 1823, 1742, 1682, 1676, 1697, 1733, 1837, 1958, 2108, 2265, 2485, 2491]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2464, 2449, 2257, 2140, 2001, 1874, 1787, 1749, 1731, 1749, 1809, 1888, 2040, 2192, 2317, 2494, 2529, 2474, 2326, 2175, 1999, 1841, 1718, 1638, 1582, 1570, 1582, 1646, 1726, 1859, 2050, 2209, 2383, 2530, 2409, 2227, 2053, 1873, 1715, 1584, 1495, 1439, 1432, 1447, 1516, 1594, 1726, 1907, 2114, 2299, 2525, 2343, 2138, 1964, 1761, 1616, 1473, 1385, 1315, 1307, 1334, 1390, 1470, 1620, 1778, 1996, 2204, 2425, 2282, 2083, 1860, 1670, 1503, 1372, 1268, 1220, 1207, 1228, 1292, 1379, 1508, 1681, 1903, 2145, 2368, 2228, 2033, 1785, 1596, 1425, 1293, 1200, 1146, 1133, 1152, 1202, 1298, 1439, 1623, 1821, 2074, 2323, 2232, 1960, 1734, 1529, 1364, 1236, 1144, 1097, 1078, 1092, 1154, 1249, 1385, 1545, 1763, 2003, 2254, 2191, 1949, 1698, 1505, 1335, 1203, 1114, 1058, 1039, 1064, 1115, 1201, 1342, 1517, 1718, 1982, 2254, 2167, 1921, 1691, 1479, 1311, 1190, 1097, 1040, 1024, 1043, 1107, 1194, 1338, 1503, 1719, 1967, 2228, 2178, 1929, 1698, 1484, 1323, 1196, 1100, 1055, 1034, 1051, 1102, 1197, 1325, 1507, 1706, 1960, 2232, 2212, 1939, 1718, 1517, 1355, 1218, 1125, 1079, 1058, 1082, 1132, 1229, 1364, 1539, 1737, 1981, 2232, 2249, 2010, 1777, 1569, 1396, 1271, 1176, 1132, 1112, 1121, 1184, 1276, 1409, 1589, 1785, 2033, 2300, 2289, 2053, 1841, 1623, 1470, 1341, 1251, 1193, 1184, 1197, 1253, 1358, 1487, 1662, 1874, 2095, 2336, 2327, 2126, 1907, 1724, 1563, 1431, 1342, 1286, 1276, 1288, 1347, 1448, 1579, 1740, 1938, 2164, 2391, 2401, 2212, 2003, 1826, 1672, 1541, 1457, 1402, 1379, 1391, 1460, 1548, 1687, 1859, 2042, 2241, 2436, 2474, 2296, 2124, 1956, 1796, 1668, 1582, 1524, 1507, 1530, 1586, 1664, 1804, 1977, 2156, 2326, 2492, 2510, 2405, 2243, 2078, 1947, 1823, 1742, 1674, 1666, 1709, 1745, 1832, 1974, 2134, 2272, 2423, 2520]
| },
| "lsc_samples_blue": {
| "uCoeff": [2327, 2361, 2215, 2067, 1955, 1812, 1717, 1683, 1677, 1708, 1752, 1802, 1967, 2133, 2276, 2452, 2514, 2434, 2225, 2083, 1900, 1761, 1645, 1573, 1518, 1520, 1524, 1581, 1676, 1806, 1965, 2149, 2319, 2472, 2299, 2155, 1964, 1793, 1631, 1498, 1438, 1380, 1376, 1403, 1462, 1543, 1677, 1840, 2034, 2227, 2437, 2295, 2072, 1866, 1670, 1522, 1400, 1332, 1272, 1273, 1296, 1332, 1434, 1563, 1711, 1928, 2138, 2345, 2225, 1981, 1757, 1563, 1420, 1308, 1230, 1186, 1186, 1206, 1261, 1327, 1460, 1642, 1821, 2053, 2272, 2183, 1949, 1691, 1497, 1354, 1238, 1167, 1127, 1106, 1134, 1174, 1268, 1397, 1555, 1740, 1995, 2258, 2125, 1873, 1641, 1452, 1312, 1181, 1119, 1069, 1065, 1078, 1130, 1223, 1342, 1495, 1713, 1936, 2195, 2080, 1858, 1600, 1430, 1266, 1159, 1088, 1046, 1036, 1056, 1102, 1190, 1314, 1472, 1668, 1888, 2145, 2095, 1820, 1616, 1409, 1262, 1137, 1074, 1043, 1024, 1049, 1095, 1174, 1305, 1443, 1646, 1879, 2148, 2132, 1838, 1607, 1408, 1271, 1155, 1078, 1043, 1040, 1059, 1099, 1174, 1304, 1472, 1645, 1867, 2159, 2181, 1853, 1626, 1452, 1289, 1166, 1105, 1056, 1059, 1069, 1127, 1201, 1317, 1488, 1705, 1915, 2139, 2141, 1906, 1666, 1478, 1329, 1208, 1133, 1099, 1088, 1105, 1155, 1233, 1349, 1528, 1724, 1949, 2155, 2225, 1970, 1739, 1556, 1387, 1270, 1204, 1155, 1143, 1159, 1217, 1289, 1425, 1576, 1784, 2004, 2240, 2233, 2023, 1846, 1632, 1478, 1362, 1270, 1232, 1225, 1246, 1303, 1362, 1503, 1670, 1836, 2059, 2264, 2348, 2101, 1931, 1739, 1579, 1472, 1399, 1348, 1340, 1344, 1404, 1485, 1600, 1765, 1976, 2127, 2348, 2397, 2210, 2045, 1859, 1709, 1578, 1507, 1468, 1434, 1468, 1501, 1593, 1709, 1890, 2057, 2225, 2397, 2417, 2311, 2200, 2006, 1891, 1748, 1645, 1651, 1601, 1629, 1684, 1766, 1880, 2042, 2200, 2379, 2435]
| }
| }, {
| "name": "3264x2448_GRAY_0",
| "resolution": "3264x2448",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }],
| "tableAll_len": 15
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lumaDetect": {
| "luma_detect_en": 1,
| "fixed_times": 0,
| "mutation_threshold": 0.0002,
| "mutation_threshold_level2": 1000
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
| }
| },
| "ccm_calib": {
| "control": {
| "enable": 1,
| "mode": "CALIB_CCM_MODE_AUTO",
| "wbgain_tolerance": 0.1,
| "gain_tolerance": 0.2
| },
| "lumaCCM": {
| "rgb2y_para": [38, 75, 15],
| "low_bound_pos_bit": 8,
| "y_alpha_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
| "gain_alphaScale_curve": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "scale": [1, 1, 0.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [1.064, 2.2573],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.406, 2.0439],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.8522, 1.6033],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.7459, 1.386],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.8537, 1.2766],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.8987, 2.4407],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.2641, 2.0667],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 8, 12],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.5829, -0.4634, -0.1195, -0.3982, 1.735, -0.3368, -0.1035, -1.2865, 2.39],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.238, -0.1741, -0.0639, -0.1478, 1.3739, -0.2261, -0.0078, -0.8072, 1.815],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.0114, -1.0567, 0.0453, -0.31, 1.5308, -0.2208, -0.0095, -0.934, 1.9435],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.4031, -0.4754, 0.0723, -0.1494, 1.238, -0.0886, 0.1566, -0.5367, 1.3801],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.0053, -0.9921, -0.0132, -0.2677, 1.5679, -0.3003, 0.1073, -0.7573, 1.65],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.5285, -0.5285, -0.0001, -0.0773, 1.2907, -0.2134, 0.2025, -0.466, 1.2635],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.9735, -0.9814, 0.008, -0.2345, 1.5886, -0.3541, 0.05, -0.6899, 1.6399],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.5399, -0.5449, 0.0049, -0.0418, 1.3057, -0.2639, 0.189, -0.4094, 1.2204],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.7472, -0.7579, 0.0107, -0.2003, 1.5516, -0.3513, -0.0087, -0.5945, 1.6031],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.5054, -0.5101, 0.0048, -0.0056, 1.2696, -0.2639, 0.1581, -0.3075, 1.1494],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.4939, -0.3044, -0.1895, -0.4992, 1.8269, -0.3277, -0.3301, -1.8763, 3.2064],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.1128, -0.0372, -0.0756, -0.3429, 1.5486, -0.2057, -0.0799, -0.9001, 1.98],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.9775, -0.9546, -0.0228, -0.3233, 1.5759, -0.2525, -0.0748, -0.9644, 2.0392],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.458, -0.4649, 0.007, -0.1241, 1.2881, -0.1641, 0.0814, -0.6075, 1.526],
| "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": [318, 286, 257, 230, 186, 155, 137, 130, 130, 131, 132, 129, 122, 110, 95, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [610, 532, 458, 390, 271, 179, 128, 130, 158, 185, 202, 204, 191, 162, 119, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [930, 805, 687, 576, 377, 215, 113, 133, 201, 256, 287, 291, 267, 214, 126, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1006, 884, 770, 664, 481, 343, 266, 255, 282, 315, 335, 335, 313, 266, 199, 124]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1014, 911, 816, 730, 583, 477, 412, 386, 384, 392, 398, 393, 374, 340, 295, 246]
| }, {
| "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": [318, 286, 257, 230, 186, 155, 137, 130, 130, 131, 132, 129, 122, 110, 95, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [610, 532, 458, 390, 271, 179, 128, 130, 158, 185, 202, 204, 191, 162, 119, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [930, 805, 687, 576, 377, 215, 113, 133, 201, 256, 287, 291, 267, 214, 126, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1006, 884, 770, 664, 481, 343, 266, 255, 282, 315, 335, 335, 313, 266, 199, 124]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1014, 911, 816, 730, 583, 477, 412, 386, 384, 392, 398, 393, 374, 340, 295, 246]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.2
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.3
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.4
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.55
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.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
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 1600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 3200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 6400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 12800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 25600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 51200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 102400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 204800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "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
| }],
| "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": 50,
| "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": 40,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 50,
| "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": 40,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.39394e-12, 1.35655e-08, -4.62176e-05, 0.0582483, 7.99637],
| "ynr_ci_l": 0.251197,
| "ynr_ci_h": 0.178393
| }, {
| "iso": 100,
| "sigma_curve": [-1.37668e-12, 1.34686e-08, -4.60683e-05, 0.0581753, 7.13424],
| "ynr_ci_l": 0.276401,
| "ynr_ci_h": 0.179183
| }, {
| "iso": 200,
| "sigma_curve": [-2.72934e-12, 2.67936e-08, -9.20155e-05, 0.115708, 13.4942],
| "ynr_ci_l": 0.238607,
| "ynr_ci_h": 0.15947
| }, {
| "iso": 400,
| "sigma_curve": [-3.71818e-12, 3.59837e-08, -0.000120236, 0.142735, 26.3241],
| "ynr_ci_l": 0.246139,
| "ynr_ci_h": 0.152118
| }, {
| "iso": 800,
| "sigma_curve": [-4.04588e-12, 3.90041e-08, -0.000130319, 0.154042, 40.6039],
| "ynr_ci_l": 0.264657,
| "ynr_ci_h": 0.156309
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.264657,
| "ynr_ci_h": 0.156309
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.39394e-12, 1.35655e-08, -4.62176e-05, 0.0582483, 7.99637],
| "ynr_ci_l": 0.251197,
| "ynr_ci_h": 0.178393
| }, {
| "iso": 100,
| "sigma_curve": [-1.37668e-12, 1.34686e-08, -4.60683e-05, 0.0581753, 7.13424],
| "ynr_ci_l": 0.276401,
| "ynr_ci_h": 0.179183
| }, {
| "iso": 200,
| "sigma_curve": [-2.72934e-12, 2.67936e-08, -9.20155e-05, 0.115708, 13.4942],
| "ynr_ci_l": 0.238607,
| "ynr_ci_h": 0.15947
| }, {
| "iso": 400,
| "sigma_curve": [-3.71818e-12, 3.59837e-08, -0.000120236, 0.142735, 26.3241],
| "ynr_ci_l": 0.246139,
| "ynr_ci_h": 0.152118
| }, {
| "iso": 800,
| "sigma_curve": [-4.04588e-12, 3.90041e-08, -0.000130319, 0.154042, 40.6039],
| "ynr_ci_l": 0.264657,
| "ynr_ci_h": 0.156309
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.264657,
| "ynr_ci_h": 0.156309
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 28,
| "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.95,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 28,
| "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.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.9,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 28,
| "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.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": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.2,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 95,
| "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": 1.5,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.75,
| "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": 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": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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": 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": 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": 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": 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": 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]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 32,
| "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.95,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 32,
| "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.7,
| "high_weight": 0.75,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.8,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 30,
| "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": 0.8,
| "high_weight": 0.7,
| "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": 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,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 28,
| "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": 0.9,
| "high_weight": 0.65,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 95,
| "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": 1.2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 24,
| "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": 1,
| "high_weight": 0.6,
| "hi_min_adj": 0.75,
| "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": 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": 22,
| "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": 20,
| "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": 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": 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": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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": 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": 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": 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": 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": 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]
| }],
| "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.3,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 0.3,
| "sharp_ratio": 13,
| "bf_gain": 0.3,
| "bf_ratio": 0.3,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.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": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 896, 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": 400,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.6,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.6,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "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": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.7,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.7,
| "bf_add": 9,
| "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": [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": 1600,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.8,
| "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.4,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.9,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.9,
| "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": [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": 18,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 1,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 1,
| "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": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "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]
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.2,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 0.2,
| "sharp_ratio": 14,
| "bf_gain": 0.2,
| "bf_ratio": 0.2,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.3,
| "pbf_add": 2,
| "gaus_ratio": 0.3,
| "sharp_ratio": 12,
| "bf_gain": 0.3,
| "bf_ratio": 0.3,
| "bf_add": 2,
| "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": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 3,
| "gaus_ratio": 0.4,
| "sharp_ratio": 10,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 3,
| "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": [768, 896, 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": 400,
| "pbf_gain": 0.5,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 9,
| "bf_gain": 0.5,
| "bf_ratio": 0.5,
| "bf_add": 4,
| "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": [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": 800,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 6,
| "gaus_ratio": 0.5,
| "sharp_ratio": 8,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "bf_add": 6,
| "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": [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": 1600,
| "pbf_gain": 0.9,
| "pbf_ratio": 0.6,
| "pbf_add": 9,
| "gaus_ratio": 0.6,
| "sharp_ratio": 6,
| "bf_gain": 0.9,
| "bf_ratio": 0.6,
| "bf_add": 9,
| "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.8,
| "pbf_add": 12,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.8,
| "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": [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.4,
| "pbf_ratio": 1,
| "pbf_add": 15,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 1,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [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": 18,
| "gaus_ratio": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 1,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "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": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "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
| }
| }
| }
|
|