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": 3840,
| "height": 2160
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 15.5, 128, 0, 1, 128, 1984],
| "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": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.015,
| "GainValue": 2,
| "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.45
| },
| "AecDelayFrmNum": {
| "BlackDelay": 4,
| "WhiteDelay": 4
| },
| "AecFrameRateMode": {
| "isFpsFix": 1,
| "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.01,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.03, 0.03, 0.06, 0.06, 0.06],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 2, 2, 8, 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.093, 0.186, 0.372, 0.651],
| "ExpLevel_len": 6,
| "DySetpoint": [36, 36, 32, 28, 24, 20],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.058125, 0.11625, 0.2325, 0.372, 0.558, 0.744],
| "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.28684, 1, 1, 2.7385],
| "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.368572, 0.368795, 0.262632],
| "rotationMat": [-0.577992, 0.816042, -0.392065, 0.816042, 0.577992, 0.569451, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0351562, 0.134766, 0.0117188, 35.625, -0.0820312, -0.00195312, 0.0722656, 134.188, 0.0507812, -0.0546875, 0.046875, 109, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1300, -1218, -47, -111]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [204, 233, -11, -40]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-177, -139, -70, -116]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-823, -618, 21, -52]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-330, -260, -18, -39]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-311, -296, 61, 49]
| }, {
| "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.28684, 1, 1, 2.7385],
| "uvRegion": {
| "u": [122, 55.5, 58.5, 122.5],
| "v": [128, 123.5, 90.5, 126]
| },
| "xyRegion": {
| "normal": [-1.35104, -0.969977, 0.104909, -0.103415],
| "big": [-1.35215, -0.968866, 0.141476, -0.142981]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 140.812, 109.25, 185.75, 97.375, 110],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.98454, 1, 1, 2.31585],
| "uvRegion": {
| "u": [65, 75, 125, 123.5],
| "v": [75, 59, 123.5, 125]
| },
| "xyRegion": {
| "normal": [-0.971088, -0.606643, -0.0744281, -0.157391],
| "big": [-0.972199, -0.606643, -0.0754276, -0.172384]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 136.875, 110.562, 190, 120.75, 99.9375],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.96857, 1, 1, 1.65052],
| "uvRegion": {
| "u": [72, 102, 127, 125.5],
| "v": [61, 51, 123, 124]
| },
| "xyRegion": {
| "normal": [-0.605486, -0.131875, 0.112905, -0.113119],
| "big": [-0.605532, -0.132986, 0.143766, -0.152393]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 134.688, 109.625, 191, 133.062, 107.375],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.24965, 1, 1, 1.38897],
| "uvRegion": {
| "u": [97.5, 120.5, 128, 127],
| "v": [53.5, 47, 123, 124.5]
| },
| "xyRegion": {
| "normal": [-0.13331, 0.100347, 0.0798138, -0.185087],
| "big": [-0.134097, 0.101458, 0.131772, -0.165096]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.812, 109.125, 190.562, 146.062, 109.312],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.43237, 1, 1, 1.26561],
| "uvRegion": {
| "u": [129, 128, 116.5, 128.5],
| "v": [122, 123, 48.5, 43.5]
| },
| "xyRegion": {
| "normal": [0.102569, 0.302569, 0.0608032, -0.101125],
| "big": [0.102569, 0.302569, 0.0867916, -0.123115]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 131.375, 109.312, 189.688, 153.188, 110.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.05632, 1, 1, 3.24079],
| "uvRegion": {
| "u": [121.5, 58.5, 56, 122],
| "v": [130.5, 144.5, 123.5, 128]
| },
| "xyRegion": {
| "normal": [-1.85553, -1.35104, 0.112488, -0.109996],
| "big": [-1.85553, -1.35104, 0.14689, -0.1364]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 143.125, 108.375, 181.125, 84.375, 114.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.7066, 1, 1, 2.31004],
| "uvRegion": {
| "u": [122.5, 57.5, 70, 124],
| "v": [126, 93, 67, 124.5]
| },
| "xyRegion": {
| "normal": [-0.966597, -0.604421, 0.0699241, -0.0734285],
| "big": [-0.971088, -0.605486, 0.0989112, -0.0734285]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 137.688, 109.688, 189.562, 115.5, 104.562],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 95, 90, 80, 75, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.98454, 1, 1, 2.31585],
| "defaultDayGainHigh": [1.96857, 1, 1, 1.65052],
| "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.28684, 1, 1, 2.7385],
| "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": 25.9941,
| "meanH": 39.406
| }, {
| "index": 13,
| "meanC": 24.0896,
| "meanH": -72.2739
| }, {
| "index": 5,
| "meanC": 11.0026,
| "meanH": -62.7378
| }, {
| "index": 10,
| "meanC": 11.061,
| "meanH": -36.9727
| }, {
| "index": 14,
| "meanC": 16.2652,
| "meanH": 153.484
| }, {
| "index": 16,
| "meanC": 30.9841,
| "meanH": 93.7382
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.28684,
| "BGain": 2.7385
| }, {
| "name": "TL84",
| "RGain": 1.96857,
| "BGain": 1.65052
| }, {
| "name": "D50",
| "RGain": 1.7066,
| "BGain": 2.31004
| }],
| "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, 3, 5, 6, 8, 9, 11, 13, 16, 19, 22, 25, 32, 38, 44, 51, 63, 76, 89, 101, 127, 153, 179, 205, 259, 314, 371, 430, 555, 687, 823, 959, 1224, 1471, 1692, 1889, 2220, 2476, 2703, 2883, 3197, 3476, 3772, 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": [255, 256.125, 256, 256.125, 256, 256, 256, 256, 256, 256, 256, 256, 256],
| "R_Channel_len": 13,
| "Gr_Channel": [256, 256.125, 256, 256.125, 256.375, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gr_Channel_len": 13,
| "Gb_Channel": [256, 256.188, 256.062, 256.25, 256.125, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gb_Channel_len": 13,
| "B_Channel": [256, 256.188, 256.062, 256.5, 256.062, 256, 256, 256, 256, 256, 256, 256, 256],
| "B_Channel_len": 13
| }
| }
| },
| "adegamma_calib": {
| "DegammaTuningPara": {
| "degamma_en": 0,
| "X_axis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_R": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_G": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_B": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "agic_calib_v21": {
| "GicTuningPara": {
| "enable": 0,
| "gr_ration": 0,
| "GicData": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "ISO_len": 9,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 9,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 9,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 9,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 9,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 9,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 9,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 9,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 9,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 9,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 9,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 9,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 9,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 9,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 9,
| "noiseCurve_0": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_0_len": 9,
| "noiseCurve_1": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_1_len": 9,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 9,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 9,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 9,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 9
| }
| }
| },
| "adehaze_calib_v21": {
| "DehazeTuningPara": {
| "Enable": 1,
| "cfg_alpha": 0,
| "ByPassThr": 0,
| "dehaze_setting": {
| "en": 0,
| "air_lc_en": 1,
| "stab_fnum": 8,
| "sigma": 6,
| "wt_sigma": 8,
| "air_sigma": 120,
| "tmax_sigma": 0.01,
| "pre_wet": 0.01,
| "DehazeData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "dc_min_th": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "dc_min_th_len": 9,
| "dc_max_th": [192, 192, 192, 192, 192, 192, 192, 192, 192],
| "dc_max_th_len": 9,
| "yhist_th": [249, 249, 249, 249, 249, 249, 249, 249, 249],
| "yhist_th_len": 9,
| "yblk_th": [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
| "yblk_th_len": 9,
| "dark_th": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "dark_th_len": 9,
| "bright_min": [180, 180, 180, 180, 180, 180, 180, 180, 180],
| "bright_min_len": 9,
| "bright_max": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "bright_max_len": 9,
| "wt_max": [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
| "wt_max_len": 9,
| "air_min": [200, 200, 200, 200, 200, 200, 200, 200, 200],
| "air_min_len": 9,
| "air_max": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "air_max_len": 9,
| "tmax_base": [125, 125, 125, 125, 125, 125, 125, 125, 125],
| "tmax_base_len": 9,
| "tmax_off": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
| "tmax_off_len": 9,
| "tmax_max": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "tmax_max_len": 9,
| "cfg_wt": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "cfg_wt_len": 9,
| "cfg_air": [210, 210, 210, 210, 210, 210, 210, 210, 210],
| "cfg_air_len": 9,
| "cfg_tmax": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "cfg_tmax_len": 9,
| "dc_weitcur": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "dc_weitcur_len": 9,
| "bf_weight": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
| "bf_weight_len": 9,
| "range_sigma": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "range_sigma_len": 9,
| "space_sigma_pre": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_pre_len": 9,
| "space_sigma_cur": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_cur_len": 9
| }
| },
| "enhance_setting": {
| "en": 1,
| "enhance_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
| "EnhanceData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "enhance_value": [1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.3, 1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1],
| "enhance_chroma_len": 9
| }
| },
| "hist_setting": {
| "en": 0,
| "hist_para_en": 1,
| "HistData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "hist_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_gratio_len": 9,
| "hist_th_off": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "hist_th_off_len": 9,
| "hist_k": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_k_len": 9,
| "hist_min": [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
| "hist_min_len": 9,
| "hist_scale": [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
| "hist_scale_len": 9,
| "cfg_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "cfg_gratio_len": 9
| }
| }
| }
| },
| "adpcc_calib": {
| "DpccTuningPara": {
| "Enable": 1,
| "Fast_Mode": {
| "Fast_mode_en": 0,
| "Single_enable": 0,
| "Double_enable": 0,
| "Triple_enable": 0,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Triple_level_len": 13
| }
| },
| "Expert_Mode": {
| "stage1_Enable": 1,
| "grayscale_mode": 0,
| "dpcc_out_sel": 1,
| "stage1_g_3x3": 0,
| "stage1_rb_3x3": 0,
| "stage1_inc_rb_center": 1,
| "stage1_inc_g_center": 1,
| "rk_out_sel": 1,
| "SetEnable": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "fix_set": [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "set1": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "sw_dis_scale_max": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "g_line_thr": [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_pg_fac": [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_thr": [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "amerge_calib": {
| "MergeTuningPara": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "ByPassThr": 0,
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| }
| },
| "adrc_calib": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalTMOSetting": {
| "LocalTMOData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
| },
| "Scale_y": [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
| "ByPassThr": 0,
| "Edge_Weit": 0.0627451,
| "OutPutLongFrame": 0,
| "IIR_frame": 16,
| "Tolerance": 0,
| "damp": 0.9
| }
| },
| "cpsl": {
| "param": {
| "enable": 0,
| "mode": "RK_AIQ_OP_MODE_AUTO",
| "force_gray": 1,
| "light_src": "LED",
| "auto_adjust_sens": 50,
| "auto_on2off_th": 3000,
| "auto_off2on_th": 100,
| "auto_sw_interval": 0,
| "manual_on": 0,
| "manual_strength": 100
| }
| },
| "orb": {
| "param": {
| "orb_en": 0
| }
| },
| "debayer": {
| "param": {
| "debayer_en": 1,
| "debayer_filter1": [2, -6, 0, 6, -2],
| "debayer_filter2": [2, -4, 4, -4, 2],
| "debayer_gain_offset": 4,
| "debayer_offset": 1,
| "debayer_clip_en": 1,
| "debayer_filter_g_en": 1,
| "debayer_filter_c_en": 1,
| "debayer_thed0": 3,
| "debayer_thed1": 6,
| "debayer_dist_scale": 8,
| "debayer_cnr_strength": 5,
| "debayer_shift_num": 2,
| "array": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "sharp_strength": [4, 4, 4, 4, 4, 4, 4, 4, 4],
| "debayer_hf_offset": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| }
| },
| "cproc": {
| "param": {
| "enable": 1,
| "brightness": 128,
| "contrast": 128,
| "saturation": 128,
| "hue": 128
| }
| },
| "ie": {
| "param": {
| "enable": 0,
| "mode": 0
| }
| },
| "lsc_v2": {
| "common": {
| "enable": 1,
| "resolutionAll": [{
| "name": "3840x2160",
| "lsc_sect_size_x": [240, 240, 240, 240, 240, 240, 240, 240],
| "lsc_sect_size_y": [135, 135, 135, 135, 135, 135, 135, 135]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.2108, 2.8935],
| "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.8804, 2.4713],
| "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.8121, 1.7442],
| "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": [2.0891, 1.4807],
| "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": [2.2634, 1.3393],
| "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": [1.0027, 3.4007],
| "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.6034, 2.4298],
| "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": "3840x2160_A_100",
| "resolution": "3840x2160",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1126, 1134, 1127, 1107, 1119, 1107, 1108, 1098, 1104, 1092, 1107, 1113, 1135, 1138, 1144, 1160, 1166, 1139, 1122, 1118, 1114, 1108, 1095, 1082, 1074, 1078, 1091, 1092, 1105, 1117, 1123, 1143, 1154, 1170, 1132, 1128, 1107, 1095, 1095, 1092, 1080, 1067, 1073, 1077, 1085, 1092, 1114, 1125, 1137, 1146, 1169, 1127, 1116, 1108, 1096, 1086, 1070, 1067, 1054, 1048, 1061, 1086, 1095, 1114, 1126, 1139, 1156, 1169, 1129, 1119, 1117, 1100, 1088, 1077, 1060, 1046, 1050, 1067, 1067, 1093, 1111, 1121, 1135, 1148, 1171, 1137, 1112, 1108, 1095, 1082, 1074, 1046, 1039, 1049, 1063, 1071, 1093, 1115, 1132, 1131, 1150, 1190, 1133, 1115, 1112, 1100, 1077, 1058, 1047, 1033, 1041, 1050, 1068, 1090, 1106, 1126, 1147, 1159, 1178, 1129, 1112, 1101, 1093, 1071, 1048, 1040, 1024, 1027, 1043, 1064, 1082, 1105, 1126, 1144, 1155, 1183, 1137, 1117, 1109, 1104, 1081, 1062, 1047, 1027, 1024, 1045, 1063, 1083, 1114, 1134, 1144, 1165, 1176, 1131, 1121, 1114, 1097, 1079, 1061, 1047, 1044, 1032, 1052, 1064, 1083, 1118, 1131, 1145, 1160, 1171, 1132, 1116, 1109, 1103, 1079, 1063, 1042, 1049, 1044, 1055, 1065, 1097, 1121, 1138, 1148, 1160, 1192, 1140, 1125, 1119, 1102, 1089, 1077, 1054, 1054, 1053, 1060, 1081, 1099, 1125, 1138, 1152, 1158, 1179, 1140, 1126, 1120, 1107, 1093, 1080, 1067, 1069, 1061, 1070, 1081, 1101, 1124, 1139, 1150, 1163, 1189, 1148, 1129, 1123, 1116, 1095, 1084, 1082, 1075, 1075, 1080, 1089, 1116, 1128, 1149, 1151, 1162, 1183, 1153, 1132, 1123, 1108, 1110, 1092, 1096, 1087, 1091, 1097, 1098, 1123, 1139, 1152, 1152, 1176, 1190, 1157, 1136, 1140, 1126, 1119, 1116, 1116, 1108, 1107, 1106, 1122, 1143, 1150, 1160, 1168, 1184, 1195, 1160, 1155, 1145, 1157, 1131, 1127, 1121, 1110, 1129, 1135, 1137, 1143, 1161, 1169, 1179, 1175, 1199]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1069, 1073, 1084, 1096, 1088, 1079, 1083, 1085, 1086, 1076, 1093, 1086, 1090, 1078, 1087, 1077, 1082, 1087, 1069, 1077, 1070, 1074, 1076, 1071, 1069, 1071, 1068, 1079, 1081, 1078, 1091, 1079, 1087, 1081, 1075, 1076, 1074, 1066, 1075, 1072, 1060, 1056, 1061, 1065, 1072, 1064, 1080, 1079, 1082, 1072, 1082, 1068, 1067, 1080, 1069, 1066, 1060, 1059, 1051, 1050, 1054, 1067, 1072, 1079, 1076, 1081, 1074, 1074, 1076, 1066, 1075, 1071, 1067, 1058, 1051, 1043, 1041, 1053, 1052, 1071, 1080, 1080, 1085, 1087, 1097, 1073, 1069, 1071, 1067, 1070, 1054, 1050, 1031, 1031, 1046, 1057, 1063, 1078, 1078, 1081, 1088, 1086, 1094, 1084, 1074, 1057, 1064, 1045, 1037, 1025, 1032, 1049, 1059, 1057, 1068, 1081, 1093, 1086, 1083, 1080, 1078, 1069, 1063, 1059, 1045, 1035, 1027, 1025, 1038, 1051, 1061, 1076, 1076, 1087, 1082, 1098, 1078, 1079, 1064, 1065, 1055, 1053, 1036, 1024, 1026, 1028, 1042, 1054, 1069, 1075, 1085, 1084, 1093, 1082, 1075, 1078, 1066, 1066, 1052, 1039, 1027, 1033, 1034, 1041, 1055, 1063, 1081, 1078, 1083, 1092, 1085, 1071, 1077, 1067, 1064, 1051, 1047, 1040, 1035, 1038, 1043, 1065, 1071, 1083, 1084, 1091, 1102, 1076, 1083, 1071, 1071, 1065, 1054, 1042, 1047, 1038, 1045, 1058, 1061, 1082, 1084, 1087, 1078, 1092, 1080, 1072, 1071, 1072, 1069, 1060, 1062, 1049, 1050, 1053, 1061, 1073, 1074, 1083, 1087, 1085, 1097, 1083, 1072, 1075, 1073, 1079, 1063, 1060, 1062, 1061, 1058, 1064, 1080, 1085, 1088, 1082, 1087, 1082, 1078, 1075, 1073, 1073, 1070, 1068, 1073, 1063, 1072, 1064, 1072, 1080, 1087, 1084, 1084, 1083, 1087, 1068, 1074, 1084, 1072, 1074, 1075, 1081, 1070, 1075, 1072, 1078, 1085, 1087, 1089, 1092, 1093, 1087, 1071, 1076, 1088, 1091, 1081, 1086, 1086, 1087, 1084, 1094, 1100, 1097, 1087, 1094, 1088, 1097, 1075]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1075, 1083, 1084, 1095, 1079, 1084, 1084, 1070, 1080, 1078, 1075, 1090, 1088, 1097, 1084, 1081, 1079, 1074, 1076, 1087, 1071, 1076, 1079, 1075, 1069, 1074, 1076, 1080, 1084, 1083, 1087, 1091, 1086, 1088, 1072, 1068, 1069, 1077, 1074, 1071, 1073, 1063, 1063, 1069, 1062, 1075, 1082, 1079, 1082, 1083, 1085, 1080, 1075, 1089, 1072, 1076, 1060, 1061, 1053, 1046, 1056, 1074, 1071, 1084, 1089, 1080, 1079, 1088, 1093, 1076, 1084, 1079, 1070, 1068, 1054, 1038, 1041, 1059, 1066, 1072, 1090, 1090, 1086, 1091, 1093, 1086, 1076, 1084, 1074, 1067, 1059, 1053, 1033, 1036, 1055, 1054, 1074, 1085, 1079, 1087, 1087, 1099, 1084, 1074, 1079, 1073, 1072, 1050, 1040, 1028, 1031, 1047, 1049, 1071, 1083, 1084, 1090, 1094, 1088, 1087, 1071, 1077, 1074, 1066, 1063, 1043, 1026, 1024, 1040, 1052, 1065, 1074, 1084, 1090, 1087, 1096, 1091, 1082, 1074, 1075, 1075, 1047, 1032, 1026, 1024, 1036, 1060, 1065, 1076, 1091, 1096, 1098, 1097, 1087, 1077, 1082, 1074, 1065, 1050, 1050, 1031, 1030, 1045, 1054, 1056, 1078, 1089, 1087, 1100, 1095, 1087, 1084, 1085, 1085, 1071, 1055, 1040, 1038, 1041, 1041, 1058, 1065, 1079, 1092, 1089, 1097, 1103, 1081, 1076, 1084, 1084, 1069, 1059, 1056, 1050, 1044, 1053, 1062, 1072, 1088, 1089, 1085, 1083, 1086, 1093, 1083, 1086, 1072, 1072, 1069, 1067, 1051, 1056, 1054, 1054, 1080, 1085, 1097, 1093, 1093, 1091, 1095, 1083, 1068, 1081, 1078, 1065, 1078, 1062, 1064, 1064, 1071, 1081, 1082, 1090, 1088, 1097, 1101, 1083, 1087, 1081, 1084, 1078, 1078, 1074, 1072, 1071, 1079, 1072, 1094, 1086, 1092, 1089, 1100, 1091, 1085, 1088, 1081, 1089, 1084, 1079, 1083, 1082, 1086, 1085, 1085, 1092, 1094, 1100, 1089, 1096, 1090, 1088, 1089, 1091, 1086, 1088, 1084, 1079, 1090, 1091, 1095, 1101, 1104, 1106, 1105, 1103, 1098, 1084]
| },
| "lsc_samples_blue": {
| "uCoeff": [1035, 1051, 1061, 1076, 1063, 1044, 1080, 1063, 1083, 1070, 1084, 1081, 1069, 1080, 1080, 1075, 1040, 1040, 1046, 1073, 1056, 1070, 1069, 1060, 1072, 1064, 1072, 1068, 1079, 1079, 1092, 1067, 1075, 1061, 1029, 1055, 1065, 1074, 1055, 1073, 1072, 1049, 1059, 1057, 1060, 1059, 1077, 1088, 1076, 1060, 1061, 1043, 1050, 1056, 1058, 1064, 1054, 1050, 1062, 1045, 1064, 1064, 1082, 1064, 1087, 1070, 1067, 1068, 1050, 1055, 1079, 1069, 1066, 1065, 1052, 1045, 1046, 1042, 1066, 1078, 1088, 1082, 1077, 1080, 1076, 1058, 1059, 1077, 1073, 1066, 1059, 1044, 1036, 1038, 1050, 1049, 1073, 1074, 1084, 1087, 1090, 1071, 1055, 1060, 1076, 1065, 1050, 1052, 1039, 1034, 1035, 1045, 1068, 1074, 1077, 1098, 1089, 1076, 1061, 1068, 1071, 1079, 1061, 1065, 1050, 1034, 1028, 1027, 1037, 1059, 1066, 1080, 1084, 1098, 1078, 1085, 1052, 1066, 1077, 1091, 1071, 1064, 1044, 1024, 1028, 1044, 1052, 1063, 1069, 1085, 1095, 1076, 1098, 1063, 1061, 1080, 1073, 1071, 1062, 1042, 1042, 1040, 1053, 1050, 1073, 1088, 1079, 1092, 1088, 1095, 1072, 1071, 1075, 1073, 1079, 1056, 1056, 1041, 1032, 1042, 1055, 1067, 1097, 1082, 1076, 1091, 1078, 1063, 1066, 1068, 1073, 1064, 1065, 1045, 1055, 1042, 1053, 1069, 1068, 1071, 1083, 1087, 1084, 1070, 1062, 1074, 1072, 1066, 1060, 1063, 1064, 1061, 1047, 1055, 1052, 1072, 1084, 1082, 1081, 1078, 1073, 1057, 1054, 1061, 1060, 1060, 1056, 1066, 1051, 1055, 1061, 1062, 1063, 1080, 1085, 1069, 1073, 1072, 1070, 1059, 1059, 1074, 1070, 1066, 1074, 1054, 1075, 1059, 1068, 1080, 1080, 1079, 1079, 1080, 1081, 1058, 1068, 1082, 1079, 1084, 1082, 1085, 1078, 1076, 1089, 1077, 1080, 1085, 1083, 1074, 1073, 1061, 1054, 1057, 1061, 1084, 1098, 1074, 1078, 1072, 1054, 1089, 1084, 1086, 1076, 1081, 1073, 1078, 1054]
| }
| }, {
| "name": "3840x2160_A_70",
| "resolution": "3840x2160",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1095, 1107, 1106, 1093, 1106, 1098, 1100, 1092, 1098, 1087, 1099, 1103, 1120, 1119, 1120, 1127, 1123, 1107, 1100, 1101, 1101, 1098, 1088, 1078, 1071, 1075, 1087, 1087, 1098, 1106, 1108, 1121, 1124, 1129, 1103, 1106, 1093, 1085, 1088, 1087, 1077, 1065, 1071, 1074, 1081, 1087, 1105, 1111, 1118, 1120, 1130, 1101, 1097, 1095, 1087, 1080, 1067, 1065, 1053, 1047, 1060, 1083, 1090, 1106, 1114, 1121, 1129, 1132, 1103, 1101, 1103, 1092, 1083, 1074, 1059, 1045, 1049, 1066, 1066, 1089, 1104, 1110, 1118, 1124, 1135, 1110, 1096, 1096, 1088, 1078, 1072, 1045, 1039, 1049, 1062, 1070, 1090, 1109, 1121, 1116, 1126, 1151, 1108, 1098, 1100, 1093, 1074, 1057, 1047, 1033, 1041, 1050, 1067, 1087, 1101, 1116, 1130, 1134, 1142, 1105, 1096, 1091, 1086, 1068, 1047, 1040, 1024, 1027, 1043, 1063, 1080, 1100, 1116, 1128, 1132, 1147, 1111, 1101, 1098, 1097, 1078, 1061, 1047, 1027, 1024, 1045, 1062, 1081, 1109, 1124, 1128, 1140, 1141, 1107, 1104, 1102, 1090, 1076, 1060, 1047, 1044, 1032, 1052, 1063, 1081, 1112, 1121, 1129, 1136, 1137, 1107, 1099, 1097, 1095, 1075, 1061, 1042, 1049, 1044, 1055, 1064, 1094, 1115, 1127, 1131, 1135, 1153, 1112, 1106, 1105, 1094, 1084, 1075, 1053, 1054, 1053, 1059, 1079, 1096, 1118, 1126, 1134, 1133, 1142, 1112, 1106, 1106, 1098, 1088, 1077, 1066, 1068, 1060, 1069, 1079, 1097, 1116, 1126, 1131, 1136, 1149, 1116, 1108, 1107, 1105, 1089, 1080, 1079, 1073, 1073, 1078, 1086, 1110, 1119, 1134, 1131, 1134, 1143, 1119, 1109, 1106, 1097, 1101, 1087, 1092, 1084, 1088, 1094, 1094, 1115, 1127, 1135, 1130, 1143, 1146, 1120, 1110, 1118, 1111, 1108, 1108, 1109, 1103, 1102, 1101, 1115, 1132, 1135, 1140, 1141, 1147, 1147, 1119, 1123, 1121, 1135, 1117, 1116, 1112, 1103, 1121, 1126, 1127, 1130, 1143, 1145, 1148, 1138, 1147]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1056, 1061, 1072, 1084, 1079, 1073, 1078, 1080, 1081, 1072, 1087, 1079, 1081, 1069, 1074, 1064, 1065, 1069, 1059, 1067, 1063, 1068, 1071, 1068, 1066, 1068, 1065, 1075, 1076, 1072, 1081, 1069, 1073, 1065, 1061, 1065, 1065, 1060, 1070, 1068, 1058, 1054, 1059, 1063, 1069, 1061, 1074, 1072, 1072, 1062, 1067, 1057, 1058, 1071, 1064, 1062, 1058, 1057, 1050, 1049, 1053, 1065, 1069, 1074, 1070, 1072, 1064, 1061, 1063, 1058, 1067, 1066, 1064, 1056, 1050, 1043, 1041, 1052, 1051, 1068, 1076, 1074, 1076, 1075, 1079, 1061, 1061, 1064, 1063, 1067, 1053, 1049, 1031, 1031, 1046, 1056, 1061, 1074, 1072, 1073, 1076, 1071, 1078, 1073, 1067, 1054, 1061, 1044, 1037, 1025, 1032, 1049, 1058, 1056, 1065, 1075, 1084, 1075, 1069, 1067, 1068, 1063, 1059, 1057, 1044, 1035, 1027, 1025, 1038, 1051, 1060, 1073, 1071, 1079, 1072, 1081, 1066, 1069, 1059, 1061, 1053, 1052, 1036, 1024, 1026, 1028, 1042, 1053, 1066, 1070, 1077, 1073, 1077, 1069, 1066, 1071, 1062, 1063, 1051, 1039, 1027, 1033, 1034, 1041, 1054, 1061, 1076, 1071, 1072, 1076, 1071, 1062, 1070, 1063, 1061, 1050, 1047, 1040, 1035, 1038, 1043, 1063, 1068, 1077, 1076, 1079, 1084, 1064, 1072, 1064, 1066, 1062, 1053, 1042, 1047, 1038, 1045, 1057, 1059, 1078, 1078, 1078, 1068, 1076, 1066, 1063, 1064, 1067, 1065, 1058, 1061, 1048, 1049, 1052, 1060, 1070, 1070, 1076, 1078, 1073, 1079, 1068, 1062, 1067, 1067, 1074, 1061, 1058, 1061, 1060, 1057, 1062, 1076, 1080, 1080, 1073, 1074, 1067, 1064, 1064, 1065, 1066, 1065, 1065, 1070, 1061, 1070, 1062, 1069, 1076, 1081, 1076, 1074, 1070, 1070, 1056, 1063, 1073, 1065, 1068, 1070, 1077, 1067, 1072, 1069, 1074, 1079, 1080, 1079, 1079, 1077, 1069, 1057, 1063, 1075, 1080, 1073, 1079, 1080, 1082, 1079, 1088, 1093, 1089, 1079, 1082, 1075, 1079, 1060]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1060, 1069, 1072, 1083, 1072, 1077, 1079, 1066, 1076, 1074, 1070, 1083, 1079, 1085, 1072, 1067, 1063, 1060, 1064, 1075, 1064, 1070, 1074, 1071, 1066, 1071, 1073, 1076, 1078, 1076, 1078, 1079, 1072, 1070, 1059, 1059, 1061, 1070, 1069, 1067, 1070, 1061, 1061, 1067, 1060, 1071, 1076, 1072, 1072, 1070, 1069, 1066, 1065, 1079, 1066, 1071, 1058, 1059, 1052, 1045, 1055, 1072, 1068, 1079, 1081, 1071, 1068, 1072, 1076, 1066, 1075, 1073, 1066, 1066, 1053, 1038, 1041, 1058, 1065, 1069, 1085, 1083, 1077, 1078, 1076, 1071, 1066, 1075, 1069, 1064, 1057, 1052, 1033, 1036, 1055, 1053, 1072, 1081, 1073, 1078, 1075, 1081, 1070, 1065, 1071, 1068, 1069, 1049, 1040, 1028, 1031, 1047, 1048, 1069, 1079, 1078, 1081, 1081, 1073, 1073, 1063, 1070, 1069, 1063, 1062, 1043, 1026, 1024, 1040, 1052, 1064, 1071, 1078, 1081, 1076, 1080, 1076, 1072, 1067, 1070, 1072, 1046, 1032, 1026, 1024, 1036, 1059, 1064, 1073, 1085, 1086, 1085, 1080, 1073, 1068, 1074, 1069, 1062, 1049, 1050, 1031, 1030, 1045, 1054, 1055, 1075, 1083, 1079, 1086, 1079, 1072, 1073, 1077, 1079, 1068, 1054, 1040, 1038, 1041, 1041, 1057, 1063, 1075, 1085, 1080, 1084, 1085, 1067, 1066, 1075, 1078, 1066, 1057, 1055, 1050, 1044, 1053, 1061, 1070, 1083, 1082, 1076, 1072, 1071, 1076, 1072, 1077, 1067, 1068, 1067, 1066, 1050, 1055, 1053, 1053, 1077, 1080, 1089, 1083, 1080, 1075, 1077, 1071, 1061, 1074, 1073, 1062, 1076, 1061, 1063, 1063, 1069, 1077, 1077, 1082, 1078, 1082, 1081, 1067, 1073, 1071, 1076, 1072, 1074, 1071, 1070, 1069, 1076, 1069, 1089, 1080, 1083, 1078, 1084, 1073, 1068, 1073, 1070, 1079, 1077, 1074, 1079, 1078, 1082, 1081, 1081, 1086, 1086, 1089, 1077, 1079, 1071, 1069, 1073, 1077, 1076, 1079, 1077, 1074, 1085, 1086, 1089, 1094, 1095, 1095, 1092, 1087, 1080, 1066]
| },
| "lsc_samples_blue": {
| "uCoeff": [1032, 1044, 1054, 1067, 1058, 1042, 1075, 1060, 1078, 1066, 1079, 1075, 1063, 1071, 1069, 1062, 1035, 1036, 1041, 1064, 1051, 1065, 1065, 1057, 1069, 1062, 1069, 1065, 1074, 1073, 1082, 1059, 1063, 1051, 1028, 1048, 1058, 1067, 1052, 1069, 1069, 1048, 1057, 1055, 1058, 1056, 1072, 1079, 1067, 1052, 1051, 1038, 1045, 1051, 1054, 1060, 1052, 1049, 1061, 1044, 1063, 1062, 1078, 1060, 1079, 1063, 1058, 1057, 1044, 1049, 1071, 1064, 1063, 1063, 1051, 1045, 1046, 1042, 1065, 1075, 1083, 1076, 1069, 1069, 1063, 1050, 1052, 1069, 1068, 1063, 1057, 1043, 1036, 1038, 1050, 1048, 1071, 1070, 1078, 1078, 1078, 1060, 1048, 1053, 1069, 1061, 1048, 1051, 1039, 1034, 1035, 1045, 1067, 1072, 1074, 1091, 1080, 1067, 1052, 1058, 1063, 1072, 1057, 1062, 1049, 1034, 1028, 1027, 1037, 1058, 1065, 1077, 1078, 1088, 1068, 1071, 1046, 1059, 1070, 1085, 1068, 1063, 1044, 1024, 1028, 1044, 1052, 1062, 1066, 1079, 1086, 1067, 1081, 1054, 1054, 1073, 1068, 1068, 1061, 1042, 1042, 1040, 1053, 1050, 1071, 1084, 1074, 1083, 1077, 1079, 1061, 1062, 1068, 1068, 1075, 1055, 1055, 1041, 1032, 1042, 1054, 1065, 1092, 1076, 1069, 1079, 1065, 1054, 1058, 1062, 1068, 1061, 1063, 1044, 1055, 1042, 1053, 1068, 1066, 1068, 1077, 1078, 1073, 1059, 1053, 1064, 1065, 1061, 1057, 1061, 1063, 1060, 1047, 1054, 1051, 1069, 1079, 1076, 1072, 1068, 1061, 1049, 1048, 1055, 1056, 1057, 1054, 1064, 1050, 1054, 1060, 1060, 1061, 1075, 1078, 1062, 1063, 1060, 1058, 1051, 1053, 1067, 1065, 1063, 1071, 1053, 1073, 1057, 1065, 1076, 1074, 1072, 1070, 1068, 1066, 1048, 1058, 1071, 1071, 1077, 1077, 1081, 1075, 1073, 1085, 1073, 1075, 1078, 1074, 1065, 1062, 1051, 1045, 1049, 1054, 1074, 1088, 1069, 1073, 1068, 1052, 1084, 1079, 1079, 1069, 1072, 1063, 1065, 1045]
| }
| }, {
| "name": "3840x2160_CWF_100",
| "resolution": "3840x2160",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1070, 1085, 1082, 1092, 1088, 1093, 1085, 1073, 1091, 1086, 1087, 1091, 1101, 1099, 1104, 1084, 1099, 1084, 1081, 1079, 1092, 1089, 1074, 1084, 1069, 1065, 1068, 1087, 1083, 1086, 1092, 1094, 1092, 1105, 1074, 1078, 1083, 1061, 1074, 1074, 1064, 1060, 1052, 1065, 1079, 1083, 1087, 1084, 1090, 1083, 1108, 1066, 1073, 1074, 1073, 1073, 1067, 1060, 1071, 1047, 1071, 1066, 1074, 1083, 1089, 1107, 1096, 1103, 1084, 1083, 1076, 1066, 1074, 1057, 1051, 1049, 1043, 1047, 1080, 1080, 1088, 1090, 1090, 1108, 1106, 1085, 1082, 1079, 1087, 1064, 1063, 1054, 1046, 1035, 1050, 1059, 1077, 1080, 1082, 1098, 1090, 1108, 1075, 1073, 1087, 1076, 1069, 1047, 1058, 1038, 1034, 1038, 1058, 1073, 1083, 1093, 1098, 1097, 1105, 1090, 1076, 1072, 1076, 1068, 1053, 1031, 1026, 1024, 1047, 1052, 1075, 1090, 1093, 1102, 1119, 1110, 1078, 1077, 1099, 1079, 1076, 1061, 1045, 1029, 1027, 1037, 1059, 1081, 1086, 1095, 1095, 1103, 1120, 1085, 1085, 1085, 1081, 1057, 1050, 1045, 1047, 1046, 1039, 1064, 1068, 1077, 1098, 1100, 1097, 1121, 1089, 1076, 1077, 1078, 1064, 1059, 1038, 1032, 1040, 1045, 1063, 1072, 1081, 1094, 1082, 1099, 1104, 1081, 1085, 1088, 1075, 1068, 1055, 1046, 1040, 1047, 1062, 1059, 1076, 1092, 1086, 1099, 1105, 1120, 1087, 1074, 1080, 1086, 1063, 1063, 1066, 1056, 1045, 1067, 1059, 1072, 1102, 1095, 1098, 1107, 1108, 1079, 1091, 1077, 1076, 1073, 1066, 1064, 1062, 1059, 1062, 1065, 1084, 1090, 1096, 1093, 1095, 1097, 1078, 1080, 1076, 1082, 1068, 1069, 1071, 1072, 1064, 1073, 1080, 1096, 1087, 1093, 1102, 1101, 1102, 1071, 1081, 1083, 1094, 1085, 1083, 1088, 1083, 1077, 1081, 1087, 1095, 1100, 1106, 1102, 1106, 1111, 1079, 1090, 1098, 1092, 1100, 1086, 1096, 1080, 1094, 1095, 1090, 1094, 1106, 1114, 1103, 1106, 1092]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1058, 1062, 1074, 1078, 1085, 1085, 1089, 1072, 1080, 1074, 1074, 1074, 1084, 1085, 1071, 1068, 1060, 1071, 1062, 1073, 1068, 1067, 1074, 1073, 1070, 1068, 1073, 1068, 1068, 1069, 1076, 1071, 1070, 1066, 1067, 1064, 1064, 1066, 1070, 1063, 1065, 1061, 1066, 1073, 1070, 1075, 1064, 1067, 1071, 1064, 1069, 1059, 1066, 1065, 1063, 1068, 1062, 1060, 1056, 1051, 1059, 1074, 1068, 1077, 1067, 1073, 1061, 1059, 1070, 1067, 1073, 1074, 1063, 1052, 1048, 1044, 1043, 1058, 1051, 1070, 1064, 1077, 1065, 1077, 1069, 1062, 1058, 1068, 1070, 1063, 1051, 1046, 1034, 1043, 1044, 1053, 1062, 1067, 1066, 1066, 1070, 1062, 1079, 1068, 1073, 1069, 1057, 1046, 1034, 1027, 1029, 1040, 1055, 1067, 1064, 1065, 1068, 1069, 1068, 1068, 1072, 1065, 1073, 1055, 1047, 1037, 1025, 1024, 1037, 1049, 1063, 1067, 1075, 1073, 1068, 1077, 1070, 1073, 1069, 1062, 1060, 1049, 1041, 1030, 1033, 1042, 1046, 1061, 1067, 1069, 1074, 1069, 1066, 1074, 1060, 1058, 1055, 1067, 1049, 1048, 1036, 1037, 1043, 1048, 1061, 1063, 1076, 1067, 1074, 1078, 1062, 1063, 1066, 1069, 1061, 1047, 1041, 1038, 1032, 1053, 1052, 1063, 1069, 1074, 1066, 1067, 1071, 1063, 1065, 1068, 1068, 1059, 1060, 1045, 1043, 1045, 1042, 1061, 1063, 1066, 1080, 1075, 1070, 1073, 1064, 1072, 1068, 1069, 1058, 1054, 1059, 1049, 1049, 1055, 1053, 1061, 1074, 1074, 1076, 1077, 1080, 1062, 1056, 1064, 1064, 1065, 1059, 1064, 1059, 1056, 1061, 1059, 1068, 1076, 1075, 1075, 1071, 1071, 1062, 1060, 1060, 1062, 1065, 1060, 1073, 1061, 1063, 1062, 1071, 1074, 1070, 1080, 1080, 1067, 1068, 1060, 1064, 1069, 1074, 1071, 1077, 1077, 1074, 1071, 1075, 1069, 1081, 1083, 1085, 1079, 1066, 1065, 1062, 1066, 1074, 1074, 1081, 1075, 1078, 1087, 1075, 1086, 1081, 1083, 1082, 1086, 1076, 1080, 1063]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1048, 1063, 1073, 1076, 1079, 1074, 1074, 1078, 1072, 1075, 1078, 1070, 1088, 1081, 1070, 1070, 1060, 1063, 1063, 1073, 1071, 1074, 1069, 1071, 1075, 1070, 1070, 1075, 1076, 1082, 1075, 1069, 1062, 1063, 1054, 1065, 1071, 1069, 1069, 1072, 1063, 1062, 1064, 1064, 1067, 1065, 1076, 1076, 1072, 1071, 1065, 1062, 1066, 1069, 1068, 1063, 1065, 1063, 1055, 1050, 1065, 1065, 1073, 1070, 1077, 1079, 1070, 1073, 1065, 1067, 1073, 1074, 1068, 1058, 1051, 1035, 1043, 1055, 1058, 1070, 1075, 1082, 1067, 1078, 1068, 1078, 1067, 1070, 1071, 1063, 1060, 1049, 1037, 1035, 1046, 1054, 1070, 1072, 1065, 1077, 1072, 1076, 1067, 1063, 1070, 1069, 1066, 1055, 1046, 1032, 1039, 1048, 1046, 1060, 1075, 1071, 1073, 1071, 1077, 1059, 1065, 1065, 1064, 1065, 1051, 1044, 1024, 1028, 1033, 1050, 1065, 1071, 1070, 1070, 1077, 1070, 1070, 1069, 1070, 1065, 1060, 1058, 1037, 1038, 1024, 1040, 1051, 1061, 1072, 1076, 1080, 1068, 1076, 1073, 1061, 1070, 1065, 1071, 1052, 1042, 1030, 1039, 1047, 1048, 1063, 1064, 1078, 1080, 1073, 1076, 1070, 1067, 1063, 1068, 1068, 1056, 1051, 1041, 1046, 1047, 1055, 1063, 1073, 1085, 1074, 1075, 1085, 1064, 1070, 1074, 1071, 1064, 1063, 1050, 1048, 1050, 1050, 1058, 1057, 1078, 1079, 1071, 1070, 1075, 1073, 1073, 1061, 1077, 1065, 1058, 1059, 1050, 1044, 1056, 1056, 1070, 1072, 1077, 1076, 1074, 1081, 1071, 1067, 1067, 1078, 1069, 1060, 1070, 1061, 1062, 1061, 1069, 1069, 1076, 1079, 1083, 1074, 1082, 1066, 1072, 1071, 1079, 1071, 1065, 1067, 1063, 1070, 1075, 1072, 1075, 1074, 1081, 1077, 1071, 1068, 1060, 1065, 1076, 1076, 1075, 1076, 1081, 1076, 1073, 1078, 1076, 1083, 1083, 1079, 1081, 1078, 1076, 1053, 1071, 1078, 1073, 1084, 1082, 1083, 1080, 1078, 1090, 1083, 1091, 1076, 1085, 1082, 1072, 1075]
| },
| "lsc_samples_blue": {
| "uCoeff": [1046, 1059, 1058, 1082, 1093, 1104, 1108, 1108, 1113, 1108, 1101, 1096, 1094, 1072, 1088, 1067, 1039, 1050, 1074, 1090, 1079, 1091, 1099, 1100, 1099, 1103, 1109, 1102, 1103, 1097, 1102, 1087, 1075, 1065, 1060, 1082, 1088, 1088, 1109, 1100, 1092, 1094, 1089, 1097, 1092, 1099, 1087, 1096, 1082, 1067, 1071, 1052, 1073, 1076, 1084, 1099, 1086, 1085, 1106, 1095, 1090, 1088, 1101, 1110, 1097, 1080, 1067, 1068, 1061, 1076, 1089, 1098, 1095, 1107, 1098, 1071, 1076, 1097, 1093, 1102, 1099, 1103, 1086, 1091, 1076, 1074, 1078, 1098, 1103, 1094, 1083, 1083, 1073, 1079, 1089, 1084, 1101, 1105, 1106, 1090, 1076, 1074, 1066, 1091, 1105, 1106, 1091, 1095, 1087, 1078, 1078, 1076, 1083, 1097, 1099, 1092, 1095, 1075, 1066, 1057, 1083, 1089, 1096, 1101, 1094, 1076, 1065, 1061, 1074, 1081, 1101, 1114, 1091, 1095, 1080, 1079, 1078, 1078, 1089, 1109, 1103, 1080, 1077, 1074, 1079, 1070, 1101, 1098, 1104, 1108, 1091, 1091, 1080, 1072, 1070, 1089, 1099, 1108, 1084, 1079, 1078, 1068, 1078, 1093, 1103, 1117, 1092, 1091, 1086, 1083, 1065, 1086, 1095, 1103, 1096, 1092, 1075, 1066, 1080, 1086, 1084, 1107, 1096, 1096, 1099, 1085, 1076, 1067, 1084, 1092, 1088, 1091, 1099, 1078, 1074, 1091, 1096, 1094, 1098, 1114, 1100, 1088, 1089, 1072, 1073, 1082, 1089, 1096, 1086, 1079, 1092, 1091, 1082, 1087, 1082, 1102, 1099, 1113, 1095, 1082, 1085, 1058, 1075, 1081, 1086, 1088, 1088, 1092, 1089, 1085, 1084, 1096, 1093, 1114, 1105, 1084, 1073, 1063, 1048, 1080, 1075, 1072, 1086, 1092, 1103, 1082, 1102, 1092, 1096, 1098, 1087, 1099, 1079, 1088, 1071, 1041, 1073, 1080, 1089, 1104, 1101, 1099, 1091, 1095, 1099, 1103, 1111, 1111, 1099, 1086, 1079, 1067, 1024, 1060, 1075, 1085, 1109, 1100, 1088, 1093, 1102, 1114, 1108, 1108, 1105, 1082, 1083, 1067, 1046]
| }
| }, {
| "name": "3840x2160_CWF_70",
| "resolution": "3840x2160",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1056, 1070, 1070, 1081, 1079, 1085, 1079, 1069, 1086, 1081, 1081, 1084, 1091, 1087, 1088, 1069, 1077, 1067, 1068, 1069, 1082, 1081, 1069, 1080, 1066, 1063, 1065, 1082, 1078, 1079, 1082, 1081, 1076, 1082, 1061, 1066, 1073, 1056, 1069, 1070, 1062, 1058, 1051, 1063, 1076, 1078, 1081, 1076, 1079, 1070, 1086, 1055, 1063, 1066, 1067, 1069, 1064, 1058, 1069, 1046, 1069, 1064, 1071, 1078, 1081, 1094, 1081, 1083, 1069, 1072, 1068, 1061, 1070, 1055, 1050, 1048, 1043, 1046, 1078, 1077, 1083, 1083, 1080, 1092, 1086, 1071, 1071, 1071, 1080, 1061, 1061, 1053, 1046, 1035, 1050, 1058, 1075, 1076, 1076, 1087, 1078, 1088, 1063, 1064, 1078, 1071, 1066, 1046, 1057, 1038, 1034, 1038, 1057, 1071, 1079, 1086, 1088, 1084, 1086, 1075, 1067, 1066, 1071, 1065, 1052, 1031, 1026, 1024, 1047, 1052, 1073, 1086, 1086, 1092, 1102, 1090, 1066, 1068, 1089, 1074, 1073, 1060, 1045, 1029, 1027, 1037, 1058, 1079, 1082, 1088, 1086, 1089, 1098, 1071, 1074, 1077, 1076, 1055, 1049, 1045, 1047, 1046, 1039, 1063, 1066, 1074, 1091, 1090, 1084, 1099, 1074, 1067, 1070, 1073, 1061, 1058, 1038, 1032, 1040, 1045, 1062, 1070, 1077, 1087, 1074, 1085, 1085, 1067, 1074, 1079, 1070, 1065, 1054, 1045, 1040, 1047, 1061, 1058, 1074, 1087, 1080, 1088, 1090, 1097, 1072, 1064, 1072, 1079, 1060, 1061, 1065, 1055, 1045, 1066, 1058, 1069, 1096, 1087, 1087, 1091, 1087, 1065, 1077, 1069, 1070, 1069, 1063, 1062, 1061, 1058, 1061, 1063, 1080, 1084, 1087, 1082, 1081, 1078, 1064, 1068, 1067, 1074, 1064, 1066, 1068, 1070, 1062, 1071, 1077, 1090, 1081, 1084, 1089, 1084, 1081, 1058, 1068, 1072, 1084, 1078, 1078, 1083, 1079, 1074, 1077, 1082, 1088, 1091, 1094, 1088, 1087, 1087, 1063, 1074, 1083, 1081, 1090, 1079, 1089, 1076, 1089, 1089, 1084, 1086, 1095, 1099, 1087, 1086, 1072]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1048, 1053, 1064, 1069, 1077, 1078, 1083, 1068, 1076, 1070, 1069, 1069, 1076, 1075, 1062, 1057, 1049, 1058, 1053, 1064, 1061, 1062, 1069, 1069, 1067, 1065, 1070, 1065, 1064, 1064, 1068, 1062, 1059, 1054, 1056, 1055, 1057, 1060, 1065, 1060, 1063, 1059, 1064, 1071, 1067, 1071, 1060, 1061, 1063, 1055, 1057, 1050, 1057, 1058, 1058, 1064, 1060, 1058, 1055, 1050, 1058, 1072, 1065, 1072, 1062, 1065, 1053, 1050, 1059, 1059, 1066, 1068, 1060, 1051, 1047, 1044, 1043, 1057, 1050, 1068, 1061, 1071, 1059, 1067, 1058, 1053, 1052, 1062, 1065, 1060, 1050, 1045, 1034, 1043, 1044, 1052, 1060, 1064, 1062, 1060, 1061, 1053, 1066, 1060, 1066, 1065, 1055, 1045, 1034, 1027, 1029, 1040, 1054, 1065, 1061, 1061, 1062, 1061, 1058, 1058, 1063, 1060, 1068, 1053, 1046, 1037, 1025, 1024, 1037, 1049, 1062, 1064, 1070, 1066, 1060, 1065, 1060, 1064, 1063, 1058, 1058, 1048, 1041, 1030, 1033, 1042, 1046, 1060, 1064, 1065, 1067, 1061, 1056, 1063, 1054, 1053, 1052, 1064, 1048, 1048, 1036, 1037, 1043, 1048, 1060, 1061, 1071, 1061, 1065, 1066, 1053, 1056, 1060, 1065, 1059, 1046, 1041, 1038, 1032, 1053, 1051, 1061, 1066, 1069, 1060, 1059, 1060, 1054, 1057, 1062, 1063, 1057, 1058, 1044, 1043, 1045, 1042, 1060, 1061, 1063, 1074, 1068, 1061, 1061, 1054, 1063, 1061, 1064, 1055, 1052, 1058, 1048, 1049, 1054, 1052, 1059, 1070, 1068, 1068, 1067, 1066, 1052, 1049, 1058, 1059, 1061, 1057, 1062, 1058, 1055, 1060, 1057, 1065, 1071, 1069, 1067, 1061, 1059, 1052, 1052, 1054, 1057, 1061, 1057, 1070, 1059, 1061, 1060, 1068, 1070, 1065, 1073, 1070, 1058, 1056, 1050, 1055, 1061, 1067, 1066, 1072, 1073, 1071, 1068, 1072, 1066, 1076, 1076, 1076, 1069, 1056, 1053, 1051, 1056, 1064, 1066, 1073, 1069, 1073, 1082, 1071, 1081, 1076, 1077, 1074, 1076, 1066, 1066, 1051]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1041, 1053, 1063, 1067, 1072, 1069, 1069, 1074, 1068, 1071, 1073, 1065, 1079, 1072, 1061, 1059, 1049, 1052, 1054, 1064, 1064, 1068, 1065, 1068, 1072, 1067, 1067, 1071, 1071, 1075, 1067, 1061, 1053, 1052, 1046, 1056, 1063, 1063, 1064, 1068, 1061, 1060, 1062, 1062, 1064, 1062, 1071, 1069, 1064, 1061, 1054, 1052, 1057, 1062, 1063, 1060, 1062, 1061, 1054, 1049, 1064, 1063, 1070, 1066, 1071, 1070, 1061, 1061, 1055, 1059, 1066, 1068, 1065, 1056, 1050, 1035, 1043, 1054, 1057, 1068, 1071, 1076, 1061, 1068, 1057, 1065, 1059, 1063, 1066, 1060, 1058, 1048, 1037, 1035, 1046, 1053, 1068, 1069, 1061, 1069, 1063, 1064, 1057, 1056, 1064, 1065, 1063, 1054, 1046, 1032, 1039, 1048, 1046, 1059, 1072, 1066, 1066, 1062, 1065, 1051, 1058, 1060, 1060, 1062, 1050, 1044, 1024, 1028, 1033, 1050, 1064, 1068, 1066, 1064, 1068, 1059, 1060, 1061, 1064, 1061, 1058, 1057, 1037, 1038, 1024, 1040, 1051, 1060, 1069, 1071, 1073, 1060, 1064, 1062, 1054, 1064, 1061, 1068, 1051, 1042, 1030, 1039, 1047, 1048, 1062, 1062, 1073, 1073, 1064, 1064, 1059, 1059, 1058, 1064, 1065, 1055, 1050, 1041, 1046, 1047, 1054, 1061, 1070, 1079, 1067, 1066, 1071, 1055, 1061, 1067, 1066, 1061, 1061, 1049, 1048, 1050, 1050, 1057, 1056, 1074, 1073, 1064, 1061, 1063, 1061, 1063, 1055, 1071, 1062, 1056, 1058, 1049, 1044, 1055, 1055, 1068, 1068, 1071, 1068, 1064, 1067, 1059, 1058, 1060, 1071, 1065, 1058, 1068, 1060, 1061, 1060, 1067, 1066, 1071, 1072, 1074, 1064, 1067, 1055, 1062, 1063, 1072, 1066, 1062, 1064, 1061, 1068, 1073, 1069, 1071, 1069, 1073, 1068, 1061, 1056, 1050, 1056, 1066, 1068, 1069, 1071, 1077, 1073, 1070, 1075, 1072, 1078, 1076, 1071, 1070, 1066, 1061, 1044, 1059, 1067, 1065, 1076, 1076, 1078, 1076, 1074, 1085, 1078, 1084, 1069, 1075, 1070, 1060, 1060]
| },
| "lsc_samples_blue": {
| "uCoeff": [1039, 1050, 1051, 1072, 1084, 1095, 1100, 1101, 1106, 1101, 1094, 1088, 1085, 1064, 1075, 1056, 1035, 1043, 1063, 1078, 1071, 1083, 1092, 1094, 1094, 1098, 1104, 1096, 1096, 1088, 1090, 1075, 1063, 1053, 1050, 1069, 1077, 1079, 1100, 1094, 1088, 1091, 1086, 1094, 1088, 1093, 1081, 1086, 1072, 1058, 1058, 1045, 1063, 1068, 1077, 1092, 1082, 1082, 1103, 1093, 1088, 1085, 1096, 1102, 1088, 1071, 1058, 1057, 1052, 1066, 1079, 1090, 1089, 1103, 1095, 1070, 1075, 1095, 1091, 1098, 1093, 1094, 1077, 1078, 1063, 1062, 1068, 1087, 1095, 1089, 1080, 1081, 1072, 1078, 1088, 1082, 1098, 1099, 1097, 1081, 1066, 1062, 1056, 1079, 1094, 1098, 1087, 1092, 1086, 1078, 1078, 1076, 1082, 1094, 1094, 1085, 1085, 1066, 1056, 1049, 1072, 1080, 1089, 1096, 1092, 1075, 1065, 1061, 1074, 1080, 1098, 1108, 1085, 1086, 1070, 1066, 1066, 1068, 1080, 1101, 1098, 1078, 1076, 1074, 1079, 1070, 1100, 1095, 1099, 1100, 1082, 1079, 1067, 1061, 1062, 1080, 1092, 1103, 1082, 1078, 1078, 1068, 1078, 1092, 1100, 1111, 1086, 1082, 1075, 1070, 1055, 1075, 1085, 1095, 1091, 1089, 1074, 1066, 1080, 1085, 1083, 1104, 1091, 1089, 1089, 1074, 1064, 1057, 1073, 1082, 1081, 1086, 1096, 1077, 1073, 1090, 1095, 1092, 1095, 1108, 1092, 1079, 1077, 1061, 1061, 1071, 1079, 1088, 1081, 1076, 1090, 1089, 1081, 1086, 1080, 1098, 1093, 1103, 1084, 1071, 1070, 1049, 1065, 1072, 1078, 1082, 1084, 1089, 1087, 1083, 1082, 1093, 1089, 1106, 1095, 1074, 1063, 1053, 1042, 1068, 1066, 1066, 1080, 1087, 1098, 1079, 1099, 1089, 1092, 1092, 1081, 1089, 1070, 1074, 1058, 1036, 1062, 1070, 1079, 1095, 1094, 1093, 1087, 1091, 1094, 1097, 1103, 1101, 1088, 1074, 1066, 1055, 1024, 1051, 1065, 1075, 1098, 1092, 1082, 1087, 1096, 1107, 1100, 1099, 1094, 1072, 1071, 1056, 1039]
| }
| }, {
| "name": "3840x2160_D50_100",
| "resolution": "3840x2160",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1106, 1107, 1113, 1116, 1099, 1107, 1098, 1091, 1089, 1085, 1095, 1103, 1096, 1115, 1116, 1113, 1120, 1131, 1105, 1110, 1094, 1081, 1085, 1087, 1070, 1063, 1073, 1080, 1091, 1103, 1108, 1107, 1108, 1123, 1115, 1108, 1102, 1097, 1084, 1077, 1084, 1064, 1062, 1069, 1073, 1085, 1102, 1097, 1116, 1117, 1137, 1114, 1094, 1100, 1092, 1082, 1064, 1062, 1061, 1064, 1064, 1077, 1078, 1095, 1106, 1111, 1118, 1135, 1119, 1100, 1103, 1082, 1086, 1061, 1057, 1045, 1051, 1057, 1065, 1085, 1101, 1101, 1114, 1138, 1147, 1129, 1095, 1105, 1094, 1078, 1059, 1045, 1043, 1047, 1053, 1068, 1078, 1099, 1109, 1118, 1131, 1148, 1126, 1110, 1109, 1087, 1074, 1047, 1036, 1034, 1035, 1039, 1063, 1082, 1088, 1106, 1111, 1130, 1136, 1113, 1104, 1096, 1086, 1079, 1058, 1040, 1035, 1030, 1040, 1060, 1079, 1104, 1105, 1115, 1129, 1139, 1116, 1106, 1106, 1094, 1074, 1045, 1040, 1037, 1024, 1036, 1066, 1079, 1092, 1108, 1119, 1128, 1140, 1125, 1115, 1101, 1087, 1080, 1060, 1050, 1049, 1036, 1039, 1055, 1079, 1093, 1107, 1120, 1130, 1154, 1124, 1106, 1101, 1092, 1079, 1052, 1054, 1042, 1040, 1041, 1066, 1078, 1104, 1112, 1126, 1131, 1155, 1114, 1114, 1100, 1102, 1078, 1073, 1062, 1059, 1050, 1045, 1053, 1089, 1105, 1110, 1120, 1130, 1144, 1129, 1099, 1111, 1099, 1077, 1069, 1068, 1073, 1058, 1058, 1072, 1082, 1109, 1110, 1110, 1129, 1160, 1116, 1113, 1102, 1103, 1092, 1076, 1076, 1069, 1060, 1076, 1079, 1087, 1107, 1129, 1122, 1149, 1147, 1121, 1109, 1100, 1102, 1104, 1088, 1077, 1078, 1085, 1076, 1096, 1104, 1098, 1128, 1130, 1133, 1147, 1126, 1119, 1122, 1112, 1097, 1099, 1100, 1086, 1084, 1088, 1101, 1118, 1113, 1129, 1132, 1136, 1143, 1113, 1126, 1121, 1117, 1104, 1108, 1101, 1104, 1106, 1120, 1119, 1114, 1131, 1125, 1140, 1139, 1142]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1065, 1063, 1082, 1086, 1090, 1085, 1080, 1074, 1081, 1072, 1081, 1075, 1086, 1072, 1071, 1054, 1057, 1072, 1071, 1074, 1075, 1079, 1075, 1072, 1066, 1065, 1064, 1069, 1070, 1073, 1074, 1063, 1067, 1049, 1074, 1072, 1067, 1070, 1075, 1068, 1076, 1064, 1066, 1063, 1066, 1077, 1074, 1071, 1067, 1056, 1054, 1069, 1079, 1072, 1068, 1075, 1060, 1064, 1052, 1051, 1062, 1063, 1067, 1068, 1069, 1067, 1055, 1060, 1093, 1069, 1074, 1072, 1082, 1064, 1054, 1039, 1043, 1053, 1060, 1066, 1070, 1077, 1066, 1065, 1062, 1083, 1074, 1072, 1077, 1069, 1061, 1040, 1036, 1042, 1045, 1060, 1064, 1076, 1064, 1068, 1065, 1063, 1079, 1071, 1077, 1072, 1058, 1054, 1039, 1042, 1034, 1035, 1049, 1056, 1067, 1074, 1071, 1064, 1061, 1083, 1076, 1071, 1068, 1064, 1054, 1045, 1034, 1024, 1030, 1037, 1058, 1065, 1070, 1075, 1059, 1073, 1083, 1069, 1074, 1071, 1065, 1052, 1040, 1036, 1032, 1035, 1046, 1058, 1069, 1061, 1070, 1073, 1078, 1079, 1077, 1076, 1073, 1069, 1054, 1049, 1032, 1039, 1036, 1046, 1053, 1066, 1075, 1078, 1072, 1077, 1072, 1069, 1073, 1076, 1068, 1050, 1052, 1041, 1030, 1041, 1050, 1055, 1067, 1067, 1076, 1075, 1074, 1078, 1076, 1072, 1075, 1066, 1057, 1051, 1047, 1044, 1050, 1048, 1057, 1068, 1077, 1073, 1071, 1067, 1075, 1077, 1072, 1078, 1065, 1059, 1056, 1053, 1054, 1053, 1056, 1059, 1076, 1068, 1066, 1067, 1064, 1077, 1064, 1072, 1075, 1073, 1067, 1061, 1059, 1063, 1060, 1066, 1068, 1073, 1077, 1069, 1066, 1059, 1073, 1071, 1073, 1073, 1076, 1066, 1065, 1060, 1062, 1066, 1066, 1064, 1073, 1072, 1074, 1060, 1067, 1067, 1071, 1077, 1082, 1075, 1079, 1077, 1073, 1079, 1077, 1074, 1076, 1072, 1073, 1066, 1069, 1056, 1069, 1073, 1081, 1078, 1077, 1089, 1083, 1076, 1073, 1090, 1088, 1090, 1078, 1070, 1071, 1068, 1059]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1060, 1080, 1086, 1074, 1077, 1076, 1074, 1074, 1060, 1071, 1065, 1065, 1073, 1073, 1070, 1060, 1049, 1066, 1068, 1072, 1066, 1073, 1071, 1073, 1067, 1064, 1068, 1057, 1078, 1072, 1072, 1063, 1065, 1050, 1066, 1059, 1075, 1072, 1069, 1068, 1067, 1061, 1061, 1058, 1062, 1068, 1073, 1066, 1065, 1056, 1060, 1065, 1071, 1075, 1068, 1072, 1062, 1055, 1055, 1052, 1055, 1059, 1068, 1067, 1066, 1062, 1060, 1065, 1070, 1066, 1076, 1078, 1064, 1062, 1049, 1037, 1034, 1058, 1050, 1057, 1076, 1073, 1064, 1065, 1063, 1078, 1075, 1071, 1076, 1064, 1057, 1042, 1029, 1036, 1044, 1052, 1061, 1067, 1059, 1061, 1060, 1060, 1071, 1072, 1076, 1065, 1063, 1051, 1041, 1033, 1031, 1037, 1044, 1064, 1068, 1077, 1061, 1060, 1062, 1073, 1078, 1074, 1074, 1065, 1055, 1038, 1024, 1030, 1026, 1045, 1061, 1061, 1067, 1070, 1068, 1068, 1078, 1058, 1072, 1069, 1063, 1047, 1038, 1025, 1027, 1037, 1036, 1057, 1064, 1069, 1077, 1060, 1063, 1075, 1072, 1074, 1067, 1062, 1050, 1050, 1040, 1030, 1037, 1046, 1055, 1057, 1068, 1068, 1065, 1063, 1073, 1076, 1073, 1069, 1068, 1056, 1049, 1030, 1038, 1036, 1049, 1055, 1067, 1068, 1069, 1062, 1069, 1070, 1071, 1079, 1075, 1064, 1060, 1052, 1048, 1043, 1043, 1050, 1057, 1073, 1073, 1068, 1071, 1064, 1063, 1072, 1070, 1064, 1068, 1060, 1060, 1050, 1056, 1052, 1052, 1061, 1075, 1073, 1069, 1060, 1063, 1075, 1073, 1075, 1068, 1074, 1062, 1065, 1061, 1053, 1059, 1062, 1063, 1066, 1070, 1070, 1063, 1066, 1065, 1073, 1070, 1069, 1074, 1065, 1063, 1064, 1063, 1069, 1062, 1075, 1073, 1067, 1064, 1065, 1064, 1072, 1072, 1072, 1078, 1072, 1076, 1074, 1073, 1072, 1071, 1065, 1072, 1071, 1075, 1071, 1064, 1063, 1065, 1069, 1076, 1072, 1079, 1087, 1076, 1071, 1072, 1083, 1084, 1078, 1068, 1075, 1068, 1068, 1057]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1045, 1071, 1070, 1072, 1074, 1092, 1091, 1089, 1076, 1077, 1065, 1072, 1069, 1058, 1050, 1037, 1045, 1057, 1078, 1078, 1082, 1086, 1083, 1077, 1081, 1079, 1076, 1072, 1072, 1072, 1057, 1056, 1040, 1052, 1073, 1077, 1073, 1079, 1072, 1084, 1082, 1071, 1078, 1083, 1080, 1082, 1063, 1070, 1042, 1041, 1045, 1065, 1067, 1090, 1083, 1073, 1074, 1070, 1068, 1079, 1080, 1085, 1082, 1079, 1071, 1060, 1046, 1064, 1062, 1082, 1083, 1089, 1077, 1067, 1059, 1059, 1069, 1074, 1075, 1086, 1084, 1066, 1063, 1046, 1071, 1071, 1077, 1086, 1084, 1076, 1065, 1053, 1059, 1068, 1071, 1084, 1076, 1077, 1073, 1060, 1051, 1063, 1073, 1075, 1087, 1083, 1067, 1052, 1057, 1052, 1057, 1070, 1079, 1073, 1079, 1081, 1059, 1054, 1067, 1080, 1075, 1080, 1087, 1072, 1053, 1045, 1045, 1053, 1073, 1081, 1075, 1077, 1079, 1059, 1061, 1070, 1072, 1090, 1088, 1086, 1064, 1060, 1065, 1047, 1039, 1066, 1074, 1079, 1083, 1076, 1069, 1065, 1057, 1063, 1083, 1087, 1080, 1072, 1065, 1057, 1053, 1061, 1070, 1084, 1090, 1080, 1078, 1081, 1067, 1068, 1069, 1090, 1089, 1085, 1068, 1068, 1063, 1060, 1058, 1067, 1069, 1089, 1094, 1077, 1064, 1060, 1050, 1081, 1088, 1078, 1071, 1069, 1068, 1070, 1070, 1066, 1063, 1071, 1079, 1074, 1070, 1060, 1052, 1063, 1068, 1080, 1079, 1078, 1083, 1071, 1071, 1063, 1063, 1061, 1075, 1076, 1073, 1066, 1063, 1065, 1060, 1062, 1073, 1073, 1079, 1067, 1067, 1074, 1072, 1071, 1081, 1079, 1080, 1076, 1074, 1059, 1056, 1053, 1067, 1073, 1062, 1076, 1073, 1078, 1067, 1073, 1082, 1085, 1084, 1085, 1081, 1068, 1066, 1051, 1051, 1066, 1074, 1081, 1075, 1078, 1088, 1086, 1074, 1086, 1084, 1096, 1076, 1080, 1066, 1076, 1041, 1050, 1048, 1067, 1075, 1100, 1087, 1089, 1093, 1080, 1083, 1082, 1078, 1063, 1066, 1059, 1056, 1035]
| }
| }, {
| "name": "3840x2160_D50_70",
| "resolution": "3840x2160",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1081, 1087, 1095, 1101, 1089, 1098, 1091, 1086, 1084, 1080, 1089, 1094, 1086, 1100, 1097, 1091, 1091, 1101, 1086, 1094, 1084, 1074, 1079, 1082, 1067, 1061, 1070, 1076, 1085, 1094, 1096, 1092, 1089, 1095, 1091, 1090, 1089, 1087, 1078, 1073, 1080, 1062, 1060, 1067, 1070, 1080, 1094, 1087, 1100, 1097, 1107, 1091, 1080, 1088, 1084, 1077, 1061, 1060, 1060, 1063, 1063, 1075, 1075, 1089, 1096, 1097, 1099, 1107, 1096, 1085, 1091, 1076, 1081, 1059, 1056, 1045, 1050, 1056, 1064, 1082, 1095, 1092, 1100, 1116, 1117, 1104, 1082, 1093, 1087, 1074, 1057, 1044, 1043, 1047, 1053, 1067, 1076, 1094, 1100, 1105, 1111, 1119, 1102, 1094, 1097, 1081, 1071, 1046, 1036, 1034, 1035, 1039, 1062, 1080, 1084, 1098, 1099, 1111, 1110, 1093, 1090, 1086, 1080, 1076, 1057, 1040, 1035, 1030, 1040, 1059, 1077, 1099, 1097, 1103, 1110, 1113, 1095, 1091, 1095, 1087, 1071, 1044, 1040, 1037, 1024, 1036, 1065, 1077, 1088, 1100, 1106, 1110, 1114, 1102, 1099, 1091, 1081, 1077, 1059, 1050, 1049, 1036, 1039, 1054, 1077, 1089, 1099, 1107, 1111, 1124, 1101, 1091, 1090, 1085, 1075, 1051, 1053, 1042, 1040, 1041, 1065, 1076, 1099, 1103, 1112, 1112, 1125, 1093, 1097, 1089, 1094, 1074, 1071, 1061, 1058, 1050, 1045, 1052, 1086, 1099, 1101, 1106, 1110, 1116, 1103, 1084, 1098, 1091, 1073, 1067, 1066, 1072, 1057, 1057, 1070, 1079, 1102, 1100, 1097, 1109, 1127, 1093, 1095, 1090, 1093, 1086, 1073, 1074, 1067, 1059, 1074, 1077, 1083, 1100, 1116, 1106, 1124, 1116, 1095, 1091, 1087, 1092, 1096, 1083, 1074, 1075, 1082, 1074, 1092, 1098, 1090, 1114, 1112, 1109, 1114, 1097, 1097, 1104, 1099, 1088, 1092, 1094, 1082, 1080, 1084, 1095, 1109, 1103, 1113, 1112, 1110, 1110, 1086, 1101, 1101, 1102, 1093, 1099, 1094, 1098, 1100, 1112, 1110, 1104, 1117, 1108, 1117, 1111, 1107]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1053, 1053, 1070, 1076, 1081, 1078, 1075, 1070, 1077, 1068, 1076, 1069, 1078, 1064, 1062, 1047, 1047, 1059, 1060, 1065, 1067, 1073, 1070, 1068, 1063, 1063, 1061, 1066, 1066, 1067, 1067, 1056, 1057, 1042, 1061, 1062, 1060, 1064, 1070, 1065, 1073, 1062, 1064, 1061, 1064, 1073, 1069, 1065, 1060, 1049, 1046, 1058, 1068, 1064, 1063, 1070, 1058, 1062, 1051, 1050, 1061, 1061, 1064, 1064, 1064, 1060, 1049, 1051, 1076, 1060, 1066, 1067, 1077, 1062, 1053, 1039, 1043, 1052, 1059, 1064, 1066, 1071, 1060, 1057, 1053, 1069, 1065, 1065, 1072, 1066, 1059, 1040, 1036, 1042, 1045, 1059, 1062, 1072, 1060, 1062, 1057, 1054, 1066, 1062, 1070, 1067, 1056, 1053, 1039, 1042, 1034, 1035, 1048, 1055, 1064, 1069, 1065, 1057, 1052, 1070, 1067, 1065, 1064, 1062, 1053, 1045, 1034, 1024, 1030, 1037, 1057, 1062, 1066, 1068, 1053, 1062, 1070, 1061, 1067, 1067, 1063, 1051, 1040, 1036, 1032, 1035, 1046, 1057, 1066, 1058, 1064, 1064, 1066, 1066, 1068, 1069, 1068, 1066, 1053, 1049, 1032, 1039, 1036, 1046, 1052, 1063, 1070, 1071, 1063, 1065, 1061, 1061, 1066, 1071, 1065, 1049, 1051, 1041, 1030, 1041, 1049, 1054, 1064, 1063, 1069, 1066, 1062, 1065, 1066, 1065, 1070, 1063, 1056, 1050, 1047, 1044, 1050, 1047, 1056, 1065, 1072, 1066, 1062, 1057, 1063, 1067, 1065, 1072, 1062, 1057, 1055, 1052, 1053, 1052, 1055, 1057, 1072, 1063, 1060, 1059, 1054, 1064, 1056, 1064, 1069, 1069, 1064, 1059, 1058, 1062, 1059, 1064, 1065, 1069, 1071, 1062, 1057, 1050, 1060, 1061, 1065, 1066, 1071, 1063, 1063, 1058, 1060, 1064, 1064, 1061, 1068, 1066, 1065, 1052, 1056, 1055, 1060, 1067, 1073, 1069, 1074, 1073, 1070, 1076, 1074, 1070, 1071, 1066, 1066, 1058, 1059, 1047, 1056, 1061, 1070, 1069, 1070, 1082, 1078, 1072, 1069, 1085, 1082, 1083, 1071, 1062, 1062, 1057, 1049]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1049, 1066, 1073, 1066, 1070, 1070, 1069, 1070, 1057, 1067, 1061, 1061, 1066, 1065, 1061, 1051, 1042, 1054, 1058, 1063, 1060, 1067, 1067, 1069, 1064, 1062, 1065, 1055, 1073, 1066, 1065, 1056, 1056, 1043, 1055, 1051, 1066, 1066, 1064, 1065, 1064, 1059, 1059, 1056, 1060, 1065, 1068, 1060, 1058, 1049, 1050, 1055, 1061, 1067, 1063, 1068, 1060, 1054, 1054, 1051, 1054, 1057, 1065, 1063, 1061, 1056, 1053, 1055, 1059, 1058, 1068, 1072, 1061, 1060, 1048, 1037, 1034, 1057, 1049, 1055, 1072, 1068, 1058, 1057, 1053, 1065, 1065, 1064, 1071, 1061, 1056, 1042, 1029, 1036, 1044, 1051, 1059, 1064, 1055, 1056, 1053, 1051, 1060, 1063, 1069, 1061, 1060, 1050, 1041, 1033, 1031, 1037, 1044, 1062, 1065, 1072, 1056, 1053, 1053, 1062, 1068, 1067, 1069, 1062, 1054, 1038, 1024, 1030, 1026, 1045, 1060, 1059, 1063, 1064, 1060, 1058, 1066, 1052, 1066, 1065, 1061, 1046, 1038, 1025, 1027, 1037, 1036, 1056, 1062, 1065, 1070, 1054, 1054, 1063, 1063, 1067, 1063, 1060, 1049, 1050, 1040, 1030, 1037, 1046, 1054, 1055, 1064, 1062, 1058, 1054, 1062, 1067, 1066, 1065, 1065, 1055, 1048, 1030, 1038, 1036, 1048, 1054, 1064, 1064, 1063, 1055, 1059, 1059, 1062, 1071, 1070, 1061, 1058, 1051, 1048, 1043, 1043, 1049, 1056, 1070, 1068, 1062, 1062, 1055, 1053, 1063, 1063, 1060, 1065, 1058, 1059, 1049, 1055, 1051, 1051, 1059, 1071, 1068, 1062, 1053, 1053, 1062, 1063, 1067, 1063, 1070, 1060, 1063, 1060, 1052, 1058, 1060, 1061, 1062, 1064, 1063, 1055, 1055, 1054, 1062, 1062, 1063, 1069, 1062, 1061, 1062, 1061, 1067, 1060, 1071, 1068, 1061, 1057, 1056, 1053, 1059, 1061, 1063, 1070, 1066, 1071, 1070, 1070, 1069, 1068, 1062, 1068, 1066, 1067, 1062, 1055, 1052, 1053, 1058, 1066, 1064, 1072, 1080, 1071, 1067, 1068, 1078, 1079, 1072, 1062, 1067, 1059, 1057, 1047]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1040, 1062, 1062, 1066, 1069, 1086, 1086, 1084, 1072, 1072, 1061, 1066, 1062, 1051, 1044, 1033, 1039, 1049, 1068, 1070, 1075, 1080, 1079, 1074, 1078, 1076, 1072, 1068, 1066, 1065, 1051, 1049, 1036, 1045, 1062, 1068, 1066, 1073, 1068, 1080, 1079, 1069, 1075, 1080, 1076, 1076, 1058, 1062, 1038, 1036, 1040, 1057, 1060, 1082, 1078, 1070, 1072, 1068, 1067, 1077, 1077, 1081, 1077, 1072, 1063, 1053, 1040, 1054, 1055, 1073, 1076, 1084, 1074, 1066, 1058, 1058, 1068, 1072, 1072, 1081, 1077, 1060, 1055, 1041, 1060, 1062, 1069, 1080, 1080, 1074, 1064, 1053, 1059, 1067, 1070, 1081, 1072, 1072, 1066, 1053, 1045, 1054, 1064, 1068, 1081, 1079, 1065, 1051, 1057, 1052, 1057, 1069, 1077, 1070, 1074, 1073, 1053, 1047, 1057, 1070, 1068, 1075, 1083, 1070, 1053, 1045, 1045, 1053, 1072, 1079, 1072, 1072, 1072, 1053, 1053, 1060, 1063, 1081, 1082, 1082, 1063, 1059, 1065, 1047, 1039, 1065, 1072, 1076, 1077, 1069, 1061, 1056, 1049, 1056, 1075, 1081, 1077, 1070, 1064, 1057, 1053, 1061, 1069, 1082, 1086, 1075, 1071, 1071, 1057, 1058, 1061, 1081, 1083, 1081, 1066, 1067, 1063, 1060, 1058, 1066, 1067, 1085, 1087, 1070, 1057, 1052, 1044, 1070, 1079, 1072, 1068, 1067, 1067, 1069, 1069, 1065, 1062, 1069, 1075, 1069, 1063, 1053, 1045, 1053, 1059, 1072, 1073, 1074, 1080, 1069, 1070, 1062, 1062, 1060, 1072, 1072, 1068, 1060, 1055, 1055, 1051, 1054, 1065, 1067, 1074, 1064, 1065, 1072, 1071, 1069, 1078, 1075, 1075, 1070, 1066, 1052, 1048, 1045, 1058, 1065, 1057, 1071, 1069, 1075, 1065, 1071, 1079, 1081, 1079, 1079, 1073, 1060, 1057, 1044, 1043, 1056, 1065, 1073, 1069, 1073, 1083, 1082, 1071, 1082, 1080, 1089, 1070, 1072, 1058, 1064, 1036, 1042, 1042, 1058, 1067, 1090, 1080, 1083, 1087, 1076, 1078, 1077, 1072, 1058, 1059, 1052, 1048, 1032]
| }
| }, {
| "name": "3840x2160_D65_100",
| "resolution": "3840x2160",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1120, 1100, 1103, 1114, 1108, 1094, 1094, 1099, 1096, 1092, 1103, 1102, 1110, 1130, 1121, 1129, 1145, 1113, 1110, 1103, 1102, 1084, 1086, 1086, 1075, 1082, 1084, 1081, 1091, 1116, 1118, 1108, 1132, 1138, 1098, 1100, 1097, 1073, 1078, 1084, 1077, 1075, 1063, 1087, 1081, 1094, 1104, 1117, 1130, 1133, 1136, 1101, 1094, 1103, 1092, 1095, 1078, 1066, 1060, 1053, 1069, 1078, 1091, 1112, 1112, 1128, 1130, 1157, 1105, 1093, 1100, 1102, 1084, 1063, 1065, 1043, 1049, 1064, 1078, 1097, 1102, 1106, 1117, 1143, 1153, 1120, 1104, 1101, 1099, 1091, 1057, 1048, 1038, 1049, 1052, 1072, 1091, 1101, 1114, 1127, 1122, 1168, 1122, 1089, 1095, 1094, 1088, 1056, 1053, 1039, 1045, 1040, 1067, 1094, 1101, 1114, 1123, 1130, 1154, 1120, 1107, 1109, 1094, 1079, 1067, 1044, 1030, 1037, 1043, 1073, 1094, 1105, 1120, 1127, 1148, 1160, 1121, 1095, 1085, 1084, 1086, 1055, 1036, 1024, 1039, 1049, 1058, 1085, 1105, 1113, 1135, 1149, 1150, 1096, 1101, 1095, 1087, 1072, 1066, 1053, 1044, 1040, 1039, 1067, 1079, 1112, 1123, 1135, 1132, 1139, 1111, 1105, 1101, 1095, 1089, 1073, 1047, 1041, 1054, 1055, 1069, 1088, 1108, 1130, 1123, 1141, 1156, 1117, 1105, 1104, 1086, 1089, 1078, 1050, 1047, 1061, 1062, 1071, 1095, 1111, 1126, 1131, 1147, 1161, 1102, 1108, 1100, 1099, 1093, 1067, 1076, 1068, 1061, 1062, 1076, 1101, 1118, 1114, 1132, 1140, 1147, 1104, 1092, 1104, 1087, 1086, 1078, 1073, 1082, 1064, 1066, 1086, 1096, 1131, 1132, 1134, 1132, 1162, 1112, 1111, 1105, 1088, 1089, 1089, 1090, 1087, 1083, 1085, 1096, 1114, 1117, 1125, 1122, 1140, 1150, 1103, 1114, 1109, 1118, 1088, 1097, 1093, 1085, 1087, 1105, 1100, 1119, 1130, 1125, 1135, 1144, 1161, 1111, 1122, 1122, 1112, 1111, 1091, 1105, 1111, 1105, 1128, 1122, 1126, 1126, 1143, 1139, 1151, 1169]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1059, 1053, 1074, 1085, 1073, 1082, 1089, 1072, 1080, 1083, 1082, 1073, 1086, 1076, 1066, 1072, 1058, 1053, 1063, 1067, 1069, 1077, 1077, 1075, 1068, 1062, 1065, 1075, 1086, 1082, 1084, 1079, 1079, 1067, 1063, 1079, 1069, 1065, 1073, 1074, 1071, 1067, 1062, 1078, 1067, 1072, 1079, 1074, 1075, 1066, 1065, 1055, 1064, 1068, 1067, 1066, 1069, 1064, 1060, 1056, 1063, 1067, 1079, 1075, 1080, 1081, 1074, 1062, 1060, 1066, 1065, 1071, 1065, 1067, 1051, 1042, 1056, 1050, 1056, 1071, 1073, 1074, 1071, 1073, 1072, 1073, 1067, 1066, 1066, 1072, 1058, 1045, 1034, 1038, 1055, 1054, 1064, 1073, 1082, 1083, 1067, 1078, 1067, 1074, 1071, 1068, 1066, 1054, 1041, 1031, 1032, 1041, 1063, 1066, 1075, 1074, 1077, 1076, 1075, 1064, 1069, 1072, 1073, 1064, 1049, 1038, 1032, 1037, 1033, 1046, 1065, 1081, 1083, 1082, 1070, 1076, 1070, 1074, 1072, 1065, 1060, 1047, 1045, 1040, 1024, 1031, 1052, 1065, 1065, 1076, 1085, 1075, 1068, 1068, 1072, 1070, 1065, 1063, 1045, 1045, 1039, 1041, 1042, 1044, 1061, 1078, 1080, 1076, 1079, 1073, 1068, 1066, 1067, 1070, 1063, 1049, 1047, 1044, 1034, 1045, 1053, 1064, 1073, 1081, 1080, 1077, 1084, 1068, 1068, 1064, 1065, 1065, 1066, 1048, 1047, 1050, 1043, 1061, 1073, 1078, 1079, 1084, 1076, 1077, 1068, 1072, 1068, 1068, 1063, 1067, 1061, 1058, 1045, 1052, 1059, 1070, 1081, 1082, 1076, 1069, 1064, 1067, 1057, 1062, 1070, 1073, 1071, 1066, 1057, 1061, 1058, 1075, 1078, 1074, 1078, 1074, 1072, 1080, 1066, 1066, 1069, 1070, 1064, 1062, 1075, 1068, 1073, 1070, 1073, 1078, 1082, 1078, 1071, 1067, 1077, 1062, 1063, 1067, 1079, 1075, 1078, 1072, 1075, 1076, 1077, 1081, 1085, 1081, 1087, 1085, 1080, 1067, 1057, 1057, 1064, 1069, 1073, 1081, 1070, 1083, 1080, 1074, 1091, 1097, 1077, 1081, 1071, 1068, 1067]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1043, 1052, 1064, 1065, 1071, 1070, 1071, 1074, 1077, 1066, 1088, 1078, 1074, 1078, 1077, 1064, 1057, 1053, 1064, 1067, 1055, 1064, 1070, 1062, 1059, 1061, 1064, 1057, 1070, 1079, 1070, 1081, 1060, 1058, 1056, 1063, 1061, 1063, 1069, 1065, 1066, 1056, 1052, 1065, 1062, 1071, 1070, 1071, 1076, 1065, 1060, 1048, 1059, 1061, 1059, 1067, 1060, 1059, 1053, 1047, 1060, 1061, 1067, 1066, 1062, 1071, 1066, 1065, 1048, 1055, 1066, 1063, 1064, 1055, 1053, 1036, 1037, 1048, 1061, 1074, 1074, 1081, 1077, 1072, 1061, 1068, 1055, 1064, 1058, 1064, 1048, 1038, 1036, 1032, 1046, 1053, 1062, 1077, 1067, 1071, 1069, 1067, 1061, 1057, 1071, 1064, 1057, 1049, 1035, 1026, 1027, 1035, 1050, 1057, 1077, 1073, 1066, 1072, 1069, 1064, 1060, 1066, 1059, 1054, 1052, 1035, 1024, 1028, 1034, 1052, 1052, 1068, 1072, 1072, 1074, 1078, 1049, 1051, 1057, 1052, 1056, 1052, 1039, 1025, 1030, 1035, 1049, 1050, 1071, 1073, 1084, 1074, 1071, 1059, 1061, 1068, 1071, 1059, 1053, 1038, 1025, 1031, 1036, 1047, 1050, 1067, 1073, 1074, 1079, 1071, 1058, 1054, 1062, 1059, 1060, 1053, 1035, 1033, 1039, 1041, 1051, 1066, 1070, 1072, 1071, 1072, 1066, 1058, 1057, 1062, 1069, 1061, 1050, 1045, 1046, 1042, 1043, 1050, 1073, 1077, 1079, 1073, 1071, 1070, 1048, 1058, 1059, 1060, 1058, 1059, 1056, 1052, 1049, 1053, 1051, 1063, 1073, 1075, 1072, 1074, 1073, 1062, 1060, 1055, 1059, 1071, 1058, 1064, 1056, 1055, 1063, 1060, 1070, 1074, 1069, 1069, 1070, 1071, 1060, 1058, 1063, 1065, 1068, 1072, 1060, 1065, 1053, 1062, 1072, 1070, 1072, 1076, 1071, 1070, 1059, 1048, 1056, 1060, 1068, 1070, 1070, 1073, 1076, 1071, 1074, 1073, 1074, 1077, 1077, 1066, 1068, 1054, 1049, 1056, 1063, 1072, 1080, 1065, 1074, 1076, 1076, 1069, 1073, 1083, 1074, 1073, 1069, 1063, 1058]
| },
| "lsc_samples_blue": {
| "uCoeff": [1034, 1055, 1067, 1075, 1075, 1078, 1090, 1078, 1105, 1084, 1099, 1090, 1084, 1092, 1073, 1063, 1029, 1033, 1055, 1072, 1076, 1073, 1080, 1090, 1079, 1088, 1079, 1098, 1081, 1076, 1081, 1059, 1064, 1069, 1046, 1070, 1075, 1086, 1085, 1087, 1085, 1074, 1073, 1081, 1093, 1098, 1089, 1085, 1080, 1073, 1058, 1049, 1058, 1075, 1079, 1089, 1078, 1093, 1069, 1073, 1093, 1081, 1090, 1094, 1089, 1075, 1063, 1056, 1049, 1068, 1084, 1080, 1090, 1085, 1070, 1067, 1064, 1079, 1077, 1083, 1090, 1094, 1079, 1076, 1063, 1045, 1066, 1074, 1081, 1085, 1082, 1063, 1063, 1064, 1069, 1085, 1096, 1096, 1082, 1076, 1083, 1076, 1057, 1067, 1080, 1080, 1079, 1076, 1060, 1058, 1060, 1067, 1082, 1076, 1092, 1097, 1090, 1078, 1059, 1069, 1068, 1068, 1073, 1084, 1079, 1062, 1061, 1067, 1061, 1076, 1086, 1088, 1097, 1088, 1069, 1067, 1061, 1067, 1081, 1084, 1099, 1078, 1068, 1068, 1047, 1063, 1081, 1085, 1087, 1094, 1083, 1089, 1069, 1058, 1064, 1086, 1082, 1085, 1074, 1064, 1059, 1062, 1069, 1072, 1079, 1092, 1091, 1090, 1074, 1064, 1060, 1059, 1080, 1086, 1086, 1072, 1080, 1068, 1068, 1071, 1080, 1085, 1096, 1098, 1093, 1072, 1070, 1057, 1070, 1083, 1073, 1077, 1085, 1077, 1074, 1075, 1071, 1079, 1080, 1098, 1105, 1098, 1072, 1061, 1060, 1070, 1077, 1085, 1067, 1083, 1082, 1083, 1067, 1081, 1065, 1093, 1104, 1086, 1080, 1078, 1074, 1031, 1056, 1068, 1072, 1077, 1076, 1090, 1074, 1081, 1084, 1088, 1095, 1078, 1077, 1080, 1060, 1050, 1048, 1061, 1060, 1070, 1076, 1088, 1088, 1074, 1088, 1085, 1087, 1092, 1101, 1084, 1083, 1074, 1057, 1024, 1056, 1062, 1084, 1086, 1095, 1091, 1084, 1101, 1098, 1089, 1095, 1081, 1089, 1082, 1064, 1064, 1043, 1051, 1051, 1070, 1089, 1076, 1083, 1084, 1082, 1115, 1097, 1095, 1096, 1093, 1080, 1069, 1041]
| }
| }, {
| "name": "3840x2160_D65_70",
| "resolution": "3840x2160",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1091, 1081, 1087, 1099, 1097, 1086, 1088, 1093, 1091, 1087, 1096, 1094, 1099, 1113, 1101, 1103, 1109, 1088, 1090, 1088, 1090, 1077, 1080, 1081, 1072, 1079, 1080, 1077, 1085, 1105, 1104, 1092, 1107, 1106, 1078, 1084, 1084, 1066, 1072, 1079, 1074, 1073, 1061, 1084, 1078, 1089, 1096, 1105, 1112, 1109, 1106, 1081, 1080, 1090, 1084, 1089, 1075, 1064, 1059, 1052, 1067, 1076, 1087, 1104, 1101, 1111, 1108, 1123, 1085, 1080, 1089, 1093, 1079, 1061, 1064, 1043, 1049, 1063, 1076, 1093, 1096, 1097, 1103, 1120, 1121, 1097, 1089, 1090, 1091, 1086, 1056, 1047, 1038, 1049, 1052, 1071, 1088, 1096, 1105, 1112, 1104, 1134, 1099, 1077, 1085, 1087, 1084, 1055, 1052, 1039, 1045, 1040, 1066, 1091, 1096, 1105, 1109, 1111, 1124, 1098, 1092, 1098, 1087, 1076, 1065, 1044, 1030, 1037, 1043, 1072, 1092, 1100, 1111, 1113, 1126, 1129, 1099, 1082, 1077, 1078, 1082, 1054, 1036, 1024, 1039, 1049, 1057, 1083, 1100, 1105, 1120, 1127, 1121, 1080, 1087, 1086, 1081, 1069, 1065, 1053, 1044, 1040, 1039, 1066, 1077, 1107, 1114, 1120, 1113, 1113, 1091, 1090, 1090, 1088, 1085, 1071, 1047, 1041, 1054, 1055, 1068, 1085, 1103, 1120, 1109, 1120, 1125, 1095, 1090, 1093, 1080, 1084, 1076, 1049, 1047, 1061, 1061, 1070, 1092, 1105, 1115, 1116, 1124, 1129, 1083, 1092, 1089, 1091, 1088, 1065, 1074, 1067, 1060, 1061, 1074, 1097, 1111, 1104, 1116, 1117, 1117, 1084, 1078, 1091, 1079, 1080, 1075, 1071, 1080, 1063, 1065, 1083, 1091, 1121, 1119, 1116, 1110, 1127, 1089, 1092, 1091, 1079, 1082, 1084, 1086, 1084, 1080, 1082, 1092, 1107, 1108, 1111, 1105, 1115, 1116, 1081, 1093, 1093, 1104, 1081, 1090, 1088, 1081, 1083, 1100, 1094, 1110, 1118, 1110, 1114, 1116, 1123, 1085, 1098, 1102, 1098, 1099, 1084, 1098, 1104, 1099, 1120, 1113, 1115, 1112, 1123, 1116, 1120, 1126]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1049, 1046, 1064, 1075, 1066, 1076, 1083, 1068, 1076, 1078, 1077, 1068, 1078, 1067, 1058, 1060, 1048, 1045, 1054, 1059, 1062, 1071, 1072, 1071, 1065, 1060, 1062, 1071, 1080, 1075, 1075, 1069, 1066, 1055, 1053, 1067, 1061, 1060, 1068, 1070, 1068, 1065, 1060, 1075, 1064, 1068, 1073, 1067, 1066, 1057, 1054, 1047, 1056, 1061, 1062, 1062, 1066, 1062, 1059, 1055, 1062, 1065, 1075, 1070, 1073, 1072, 1064, 1052, 1051, 1058, 1059, 1066, 1062, 1065, 1050, 1042, 1055, 1049, 1055, 1068, 1069, 1068, 1064, 1063, 1060, 1061, 1059, 1060, 1062, 1069, 1056, 1044, 1034, 1038, 1055, 1053, 1062, 1070, 1076, 1075, 1059, 1065, 1057, 1065, 1065, 1064, 1063, 1053, 1041, 1031, 1032, 1041, 1062, 1064, 1072, 1069, 1070, 1067, 1063, 1055, 1061, 1066, 1068, 1062, 1048, 1038, 1032, 1037, 1033, 1046, 1064, 1077, 1077, 1074, 1062, 1064, 1060, 1065, 1066, 1061, 1058, 1046, 1045, 1040, 1024, 1031, 1052, 1064, 1063, 1071, 1077, 1066, 1058, 1058, 1063, 1064, 1061, 1061, 1044, 1045, 1039, 1041, 1042, 1044, 1060, 1075, 1075, 1069, 1069, 1062, 1058, 1058, 1061, 1065, 1060, 1048, 1047, 1044, 1034, 1045, 1052, 1062, 1070, 1075, 1072, 1067, 1070, 1058, 1060, 1058, 1061, 1062, 1064, 1047, 1047, 1050, 1043, 1060, 1071, 1074, 1073, 1075, 1066, 1064, 1057, 1063, 1061, 1063, 1060, 1065, 1060, 1057, 1045, 1051, 1058, 1068, 1076, 1076, 1068, 1060, 1054, 1056, 1050, 1056, 1064, 1069, 1068, 1064, 1056, 1060, 1057, 1073, 1075, 1070, 1071, 1066, 1062, 1066, 1055, 1057, 1061, 1064, 1060, 1059, 1072, 1066, 1071, 1068, 1070, 1074, 1076, 1071, 1063, 1058, 1063, 1051, 1054, 1059, 1071, 1069, 1073, 1068, 1072, 1073, 1074, 1077, 1079, 1074, 1078, 1074, 1067, 1055, 1047, 1049, 1056, 1062, 1066, 1075, 1066, 1078, 1076, 1070, 1085, 1089, 1070, 1072, 1062, 1057, 1054]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1037, 1045, 1056, 1058, 1065, 1065, 1067, 1070, 1073, 1063, 1082, 1072, 1067, 1069, 1066, 1054, 1047, 1045, 1055, 1059, 1050, 1059, 1066, 1059, 1057, 1059, 1061, 1055, 1066, 1073, 1063, 1070, 1052, 1048, 1047, 1055, 1055, 1058, 1064, 1062, 1064, 1054, 1051, 1063, 1060, 1067, 1065, 1065, 1067, 1056, 1050, 1042, 1052, 1055, 1055, 1063, 1058, 1057, 1052, 1046, 1059, 1059, 1064, 1062, 1057, 1063, 1057, 1055, 1042, 1049, 1060, 1059, 1061, 1053, 1052, 1036, 1037, 1047, 1060, 1071, 1070, 1075, 1069, 1063, 1052, 1058, 1049, 1058, 1054, 1061, 1047, 1038, 1036, 1032, 1046, 1052, 1060, 1073, 1063, 1064, 1061, 1057, 1052, 1051, 1065, 1060, 1055, 1048, 1035, 1026, 1027, 1035, 1049, 1056, 1074, 1068, 1060, 1063, 1059, 1055, 1054, 1060, 1056, 1052, 1051, 1035, 1024, 1028, 1034, 1052, 1051, 1065, 1067, 1066, 1065, 1066, 1043, 1046, 1053, 1049, 1054, 1051, 1039, 1025, 1030, 1035, 1049, 1049, 1068, 1068, 1076, 1065, 1060, 1051, 1054, 1062, 1067, 1057, 1052, 1038, 1025, 1031, 1036, 1047, 1049, 1064, 1068, 1067, 1069, 1060, 1050, 1049, 1057, 1056, 1058, 1052, 1035, 1033, 1039, 1041, 1050, 1064, 1067, 1067, 1065, 1063, 1056, 1050, 1051, 1057, 1064, 1058, 1049, 1044, 1046, 1042, 1043, 1049, 1071, 1073, 1073, 1066, 1062, 1059, 1042, 1051, 1054, 1056, 1055, 1057, 1055, 1051, 1049, 1052, 1050, 1061, 1069, 1069, 1065, 1064, 1061, 1052, 1053, 1050, 1055, 1067, 1056, 1062, 1055, 1054, 1062, 1058, 1067, 1070, 1064, 1062, 1061, 1059, 1050, 1051, 1056, 1060, 1064, 1068, 1058, 1063, 1052, 1060, 1069, 1066, 1067, 1069, 1063, 1060, 1050, 1041, 1049, 1053, 1061, 1065, 1066, 1069, 1073, 1068, 1071, 1069, 1069, 1071, 1069, 1058, 1058, 1046, 1042, 1048, 1055, 1064, 1073, 1061, 1069, 1072, 1072, 1065, 1069, 1077, 1067, 1065, 1060, 1053, 1048]
| },
| "lsc_samples_blue": {
| "uCoeff": [1031, 1047, 1058, 1067, 1068, 1072, 1084, 1074, 1099, 1079, 1092, 1083, 1076, 1081, 1063, 1053, 1028, 1030, 1048, 1063, 1068, 1067, 1075, 1085, 1076, 1084, 1076, 1093, 1076, 1070, 1073, 1052, 1055, 1056, 1040, 1060, 1066, 1078, 1079, 1082, 1081, 1072, 1071, 1078, 1089, 1092, 1082, 1077, 1070, 1062, 1049, 1043, 1051, 1067, 1072, 1083, 1075, 1090, 1067, 1072, 1091, 1078, 1086, 1088, 1081, 1067, 1055, 1048, 1043, 1059, 1075, 1074, 1085, 1082, 1068, 1066, 1063, 1078, 1075, 1080, 1085, 1086, 1071, 1066, 1053, 1040, 1058, 1067, 1075, 1081, 1079, 1062, 1062, 1064, 1068, 1083, 1093, 1091, 1076, 1069, 1072, 1064, 1049, 1059, 1072, 1075, 1075, 1074, 1059, 1058, 1060, 1067, 1081, 1074, 1088, 1090, 1081, 1068, 1051, 1059, 1060, 1062, 1068, 1080, 1077, 1061, 1061, 1067, 1061, 1075, 1084, 1084, 1090, 1079, 1061, 1057, 1053, 1059, 1073, 1078, 1094, 1076, 1067, 1068, 1047, 1063, 1080, 1083, 1083, 1087, 1075, 1077, 1059, 1050, 1057, 1078, 1077, 1081, 1072, 1063, 1059, 1062, 1069, 1071, 1077, 1088, 1085, 1081, 1065, 1055, 1052, 1053, 1072, 1080, 1082, 1070, 1079, 1068, 1068, 1071, 1079, 1083, 1091, 1091, 1084, 1063, 1059, 1049, 1061, 1075, 1068, 1073, 1082, 1076, 1073, 1074, 1070, 1078, 1077, 1093, 1097, 1087, 1063, 1052, 1051, 1061, 1069, 1078, 1064, 1080, 1080, 1082, 1066, 1080, 1064, 1089, 1098, 1079, 1072, 1068, 1062, 1029, 1049, 1061, 1066, 1072, 1073, 1087, 1072, 1079, 1082, 1085, 1090, 1073, 1071, 1071, 1053, 1043, 1042, 1053, 1054, 1064, 1071, 1083, 1084, 1072, 1085, 1082, 1083, 1087, 1093, 1076, 1073, 1063, 1048, 1024, 1049, 1055, 1075, 1079, 1088, 1086, 1080, 1096, 1093, 1084, 1088, 1074, 1079, 1071, 1055, 1053, 1037, 1044, 1046, 1062, 1080, 1070, 1078, 1079, 1078, 1108, 1090, 1087, 1086, 1082, 1069, 1058, 1036]
| }
| }, {
| "name": "3840x2160_D75_100",
| "resolution": "3840x2160",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1098, 1096, 1089, 1099, 1092, 1084, 1089, 1069, 1068, 1070, 1081, 1096, 1100, 1087, 1111, 1113, 1117, 1075, 1089, 1103, 1084, 1074, 1062, 1076, 1061, 1060, 1074, 1062, 1083, 1095, 1099, 1099, 1097, 1122, 1089, 1074, 1089, 1067, 1076, 1072, 1065, 1058, 1056, 1070, 1081, 1078, 1086, 1081, 1105, 1113, 1113, 1086, 1086, 1102, 1087, 1087, 1075, 1066, 1049, 1041, 1048, 1078, 1081, 1088, 1106, 1101, 1113, 1116, 1102, 1080, 1088, 1078, 1071, 1071, 1049, 1048, 1047, 1051, 1072, 1083, 1084, 1108, 1115, 1108, 1128, 1093, 1084, 1102, 1072, 1074, 1064, 1047, 1036, 1036, 1050, 1071, 1083, 1089, 1102, 1114, 1108, 1137, 1090, 1094, 1090, 1080, 1077, 1056, 1039, 1032, 1038, 1041, 1055, 1076, 1081, 1101, 1111, 1117, 1137, 1089, 1094, 1095, 1081, 1078, 1054, 1032, 1024, 1037, 1033, 1049, 1088, 1093, 1108, 1117, 1113, 1146, 1089, 1091, 1078, 1081, 1076, 1044, 1048, 1025, 1024, 1052, 1056, 1075, 1096, 1111, 1118, 1125, 1136, 1088, 1088, 1088, 1081, 1074, 1060, 1044, 1037, 1036, 1040, 1062, 1069, 1099, 1111, 1115, 1125, 1144, 1099, 1083, 1100, 1084, 1070, 1061, 1047, 1035, 1046, 1051, 1058, 1087, 1102, 1098, 1114, 1119, 1134, 1092, 1091, 1093, 1086, 1071, 1074, 1054, 1049, 1048, 1047, 1061, 1087, 1099, 1118, 1127, 1121, 1132, 1097, 1098, 1085, 1079, 1066, 1061, 1063, 1060, 1055, 1059, 1069, 1081, 1110, 1110, 1124, 1117, 1127, 1110, 1100, 1085, 1087, 1087, 1075, 1078, 1066, 1075, 1071, 1092, 1087, 1088, 1122, 1112, 1115, 1147, 1109, 1090, 1103, 1088, 1098, 1078, 1078, 1075, 1077, 1080, 1077, 1090, 1101, 1110, 1119, 1125, 1107, 1102, 1093, 1088, 1105, 1100, 1097, 1087, 1082, 1088, 1100, 1097, 1107, 1113, 1116, 1110, 1119, 1137, 1105, 1096, 1110, 1096, 1098, 1078, 1104, 1090, 1094, 1114, 1107, 1113, 1119, 1117, 1138, 1136, 1116]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1049, 1051, 1056, 1080, 1073, 1078, 1074, 1072, 1076, 1073, 1065, 1078, 1084, 1069, 1073, 1053, 1050, 1053, 1059, 1063, 1063, 1069, 1067, 1069, 1068, 1065, 1066, 1069, 1068, 1067, 1064, 1072, 1068, 1065, 1058, 1068, 1064, 1061, 1062, 1076, 1064, 1061, 1063, 1066, 1063, 1070, 1069, 1070, 1067, 1061, 1059, 1068, 1068, 1067, 1065, 1065, 1062, 1065, 1056, 1056, 1058, 1067, 1070, 1074, 1065, 1070, 1061, 1064, 1068, 1056, 1070, 1065, 1068, 1069, 1051, 1039, 1042, 1058, 1052, 1069, 1076, 1075, 1066, 1062, 1070, 1068, 1064, 1061, 1071, 1067, 1061, 1049, 1037, 1029, 1042, 1051, 1064, 1074, 1075, 1065, 1070, 1060, 1070, 1074, 1079, 1067, 1060, 1056, 1038, 1037, 1037, 1039, 1052, 1066, 1068, 1069, 1072, 1065, 1057, 1066, 1055, 1061, 1070, 1058, 1052, 1051, 1024, 1028, 1042, 1044, 1056, 1067, 1081, 1068, 1064, 1081, 1069, 1066, 1060, 1063, 1070, 1047, 1041, 1028, 1032, 1030, 1049, 1060, 1065, 1065, 1069, 1073, 1071, 1077, 1070, 1066, 1065, 1066, 1052, 1045, 1035, 1035, 1042, 1046, 1056, 1064, 1071, 1070, 1072, 1065, 1061, 1059, 1065, 1067, 1067, 1051, 1051, 1043, 1040, 1046, 1050, 1058, 1069, 1074, 1076, 1068, 1076, 1059, 1074, 1074, 1065, 1065, 1063, 1046, 1050, 1039, 1043, 1054, 1061, 1075, 1071, 1077, 1074, 1076, 1052, 1066, 1067, 1078, 1059, 1058, 1073, 1055, 1053, 1060, 1066, 1058, 1073, 1084, 1072, 1061, 1070, 1053, 1068, 1070, 1060, 1072, 1066, 1053, 1065, 1056, 1060, 1067, 1068, 1064, 1078, 1076, 1063, 1062, 1059, 1063, 1064, 1071, 1062, 1067, 1073, 1071, 1067, 1064, 1075, 1078, 1080, 1076, 1076, 1062, 1059, 1059, 1061, 1063, 1071, 1071, 1080, 1070, 1070, 1070, 1075, 1074, 1079, 1082, 1084, 1081, 1073, 1068, 1045, 1061, 1079, 1066, 1079, 1071, 1076, 1080, 1077, 1084, 1083, 1084, 1081, 1079, 1073, 1072, 1053]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1036, 1060, 1072, 1068, 1066, 1065, 1077, 1074, 1070, 1074, 1064, 1075, 1068, 1070, 1068, 1051, 1047, 1044, 1052, 1062, 1062, 1065, 1062, 1068, 1059, 1061, 1059, 1072, 1066, 1070, 1063, 1069, 1061, 1046, 1060, 1064, 1057, 1067, 1072, 1065, 1066, 1059, 1064, 1055, 1070, 1070, 1075, 1067, 1058, 1057, 1048, 1047, 1066, 1057, 1062, 1066, 1054, 1056, 1055, 1049, 1061, 1057, 1069, 1073, 1068, 1072, 1058, 1056, 1058, 1058, 1068, 1062, 1063, 1058, 1053, 1039, 1047, 1050, 1048, 1059, 1074, 1067, 1065, 1066, 1062, 1063, 1065, 1067, 1066, 1057, 1058, 1047, 1033, 1045, 1044, 1052, 1058, 1069, 1067, 1068, 1062, 1069, 1061, 1056, 1073, 1069, 1058, 1048, 1030, 1024, 1030, 1040, 1045, 1056, 1073, 1063, 1065, 1069, 1063, 1057, 1064, 1063, 1072, 1062, 1041, 1038, 1025, 1024, 1028, 1051, 1063, 1071, 1067, 1067, 1065, 1067, 1071, 1056, 1068, 1064, 1057, 1048, 1041, 1024, 1030, 1043, 1050, 1050, 1066, 1076, 1078, 1073, 1077, 1055, 1055, 1061, 1062, 1060, 1044, 1044, 1038, 1037, 1042, 1054, 1056, 1069, 1063, 1071, 1074, 1065, 1062, 1069, 1071, 1063, 1064, 1052, 1055, 1044, 1043, 1042, 1051, 1064, 1074, 1074, 1074, 1062, 1075, 1061, 1063, 1067, 1069, 1063, 1056, 1044, 1039, 1046, 1053, 1049, 1063, 1077, 1077, 1072, 1067, 1064, 1062, 1068, 1067, 1069, 1069, 1056, 1052, 1058, 1049, 1054, 1048, 1067, 1073, 1071, 1077, 1072, 1066, 1061, 1061, 1068, 1073, 1069, 1062, 1070, 1062, 1051, 1068, 1059, 1068, 1074, 1071, 1073, 1069, 1063, 1069, 1063, 1070, 1068, 1067, 1071, 1068, 1061, 1059, 1062, 1070, 1076, 1067, 1078, 1066, 1063, 1065, 1059, 1060, 1067, 1077, 1067, 1076, 1066, 1076, 1070, 1073, 1081, 1076, 1075, 1080, 1073, 1075, 1059, 1051, 1055, 1061, 1077, 1082, 1065, 1075, 1075, 1082, 1075, 1075, 1082, 1076, 1080, 1067, 1065, 1055]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1052, 1075, 1071, 1084, 1090, 1089, 1074, 1098, 1087, 1076, 1092, 1078, 1083, 1063, 1052, 1049, 1028, 1047, 1068, 1074, 1077, 1087, 1101, 1075, 1080, 1080, 1087, 1090, 1076, 1073, 1061, 1060, 1047, 1026, 1053, 1064, 1077, 1080, 1087, 1088, 1080, 1085, 1090, 1086, 1084, 1081, 1075, 1073, 1056, 1044, 1047, 1060, 1077, 1067, 1086, 1080, 1077, 1073, 1072, 1082, 1082, 1088, 1086, 1082, 1078, 1058, 1044, 1052, 1066, 1079, 1081, 1076, 1083, 1070, 1062, 1062, 1078, 1079, 1098, 1092, 1079, 1084, 1062, 1052, 1057, 1072, 1077, 1079, 1083, 1080, 1064, 1065, 1061, 1062, 1078, 1082, 1088, 1084, 1077, 1067, 1052, 1055, 1062, 1089, 1087, 1078, 1076, 1063, 1051, 1056, 1067, 1073, 1078, 1095, 1091, 1083, 1071, 1051, 1042, 1063, 1085, 1080, 1083, 1080, 1066, 1053, 1043, 1066, 1067, 1080, 1086, 1080, 1085, 1066, 1059, 1057, 1069, 1083, 1093, 1082, 1066, 1072, 1064, 1053, 1066, 1074, 1077, 1089, 1104, 1086, 1077, 1066, 1038, 1063, 1082, 1090, 1082, 1081, 1072, 1065, 1068, 1070, 1085, 1090, 1096, 1086, 1074, 1065, 1054, 1057, 1064, 1081, 1077, 1089, 1079, 1077, 1065, 1067, 1069, 1079, 1084, 1097, 1089, 1081, 1073, 1077, 1054, 1069, 1081, 1082, 1094, 1076, 1089, 1079, 1064, 1073, 1080, 1081, 1095, 1073, 1074, 1071, 1065, 1055, 1069, 1082, 1078, 1067, 1084, 1079, 1077, 1070, 1086, 1071, 1076, 1084, 1087, 1085, 1065, 1056, 1053, 1060, 1062, 1080, 1083, 1083, 1080, 1068, 1078, 1086, 1085, 1090, 1083, 1086, 1076, 1066, 1052, 1040, 1059, 1059, 1070, 1075, 1085, 1076, 1079, 1080, 1084, 1087, 1088, 1092, 1085, 1077, 1064, 1045, 1040, 1060, 1077, 1075, 1076, 1084, 1084, 1083, 1091, 1096, 1097, 1092, 1093, 1094, 1070, 1059, 1047, 1038, 1055, 1061, 1078, 1085, 1081, 1088, 1108, 1093, 1096, 1103, 1094, 1088, 1074, 1068, 1062, 1046]
| }
| }, {
| "name": "3840x2160_D75_70",
| "resolution": "3840x2160",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1076, 1078, 1076, 1087, 1083, 1077, 1083, 1065, 1065, 1066, 1076, 1088, 1090, 1077, 1093, 1091, 1089, 1061, 1074, 1088, 1075, 1068, 1059, 1072, 1059, 1058, 1071, 1059, 1078, 1087, 1088, 1085, 1080, 1094, 1072, 1063, 1078, 1061, 1071, 1068, 1063, 1056, 1055, 1068, 1078, 1074, 1080, 1073, 1091, 1094, 1089, 1070, 1073, 1090, 1079, 1081, 1072, 1064, 1048, 1040, 1047, 1076, 1077, 1082, 1096, 1089, 1095, 1093, 1083, 1069, 1078, 1072, 1067, 1068, 1048, 1047, 1047, 1050, 1070, 1080, 1079, 1099, 1101, 1092, 1103, 1077, 1073, 1091, 1067, 1070, 1062, 1046, 1036, 1036, 1050, 1070, 1080, 1084, 1094, 1101, 1092, 1110, 1075, 1081, 1081, 1075, 1074, 1055, 1039, 1032, 1038, 1041, 1054, 1074, 1077, 1093, 1099, 1100, 1111, 1074, 1082, 1086, 1076, 1075, 1053, 1032, 1024, 1037, 1033, 1049, 1086, 1089, 1100, 1105, 1097, 1118, 1074, 1079, 1071, 1076, 1073, 1043, 1048, 1025, 1024, 1052, 1056, 1073, 1092, 1103, 1106, 1107, 1110, 1073, 1077, 1079, 1076, 1071, 1059, 1044, 1037, 1036, 1040, 1061, 1067, 1094, 1103, 1103, 1107, 1117, 1082, 1072, 1090, 1078, 1067, 1060, 1047, 1035, 1046, 1051, 1057, 1085, 1097, 1091, 1102, 1102, 1108, 1076, 1078, 1083, 1080, 1068, 1072, 1053, 1049, 1048, 1047, 1060, 1084, 1094, 1108, 1112, 1103, 1106, 1079, 1084, 1076, 1073, 1063, 1059, 1062, 1059, 1054, 1058, 1067, 1078, 1103, 1100, 1109, 1099, 1102, 1088, 1085, 1075, 1079, 1081, 1072, 1076, 1065, 1073, 1069, 1089, 1083, 1082, 1110, 1098, 1096, 1116, 1086, 1076, 1089, 1079, 1090, 1074, 1075, 1073, 1075, 1077, 1074, 1085, 1093, 1098, 1103, 1103, 1085, 1080, 1077, 1076, 1093, 1091, 1090, 1082, 1078, 1084, 1095, 1092, 1099, 1103, 1102, 1094, 1097, 1105, 1081, 1078, 1093, 1084, 1088, 1072, 1097, 1085, 1089, 1107, 1099, 1103, 1106, 1102, 1115, 1109, 1088]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1042, 1044, 1050, 1071, 1066, 1072, 1069, 1068, 1072, 1069, 1061, 1072, 1076, 1062, 1063, 1046, 1042, 1045, 1051, 1056, 1057, 1064, 1063, 1066, 1065, 1063, 1063, 1066, 1064, 1062, 1058, 1063, 1058, 1053, 1049, 1059, 1057, 1056, 1058, 1072, 1062, 1059, 1061, 1064, 1061, 1066, 1064, 1064, 1060, 1053, 1050, 1057, 1059, 1060, 1060, 1061, 1060, 1063, 1055, 1055, 1057, 1065, 1067, 1070, 1060, 1063, 1053, 1054, 1057, 1050, 1063, 1060, 1065, 1067, 1050, 1039, 1042, 1057, 1051, 1067, 1072, 1069, 1060, 1055, 1059, 1058, 1057, 1056, 1066, 1064, 1059, 1048, 1037, 1029, 1042, 1050, 1062, 1070, 1070, 1059, 1061, 1051, 1059, 1065, 1071, 1063, 1058, 1055, 1038, 1037, 1037, 1039, 1051, 1064, 1065, 1065, 1065, 1058, 1049, 1056, 1049, 1056, 1066, 1056, 1051, 1051, 1024, 1028, 1042, 1044, 1055, 1064, 1076, 1062, 1057, 1068, 1059, 1059, 1055, 1059, 1067, 1046, 1041, 1028, 1032, 1030, 1049, 1059, 1063, 1061, 1063, 1064, 1060, 1065, 1062, 1060, 1061, 1063, 1051, 1045, 1035, 1035, 1042, 1046, 1055, 1062, 1067, 1064, 1063, 1056, 1052, 1053, 1059, 1063, 1064, 1050, 1050, 1043, 1040, 1046, 1049, 1057, 1066, 1069, 1069, 1060, 1064, 1051, 1065, 1067, 1061, 1062, 1061, 1045, 1050, 1039, 1043, 1053, 1059, 1071, 1066, 1069, 1065, 1064, 1045, 1058, 1061, 1072, 1056, 1056, 1071, 1054, 1052, 1059, 1065, 1056, 1069, 1077, 1065, 1054, 1059, 1046, 1059, 1063, 1056, 1068, 1063, 1052, 1064, 1055, 1059, 1065, 1065, 1060, 1071, 1068, 1055, 1052, 1050, 1055, 1057, 1065, 1058, 1064, 1070, 1069, 1065, 1062, 1072, 1074, 1074, 1069, 1067, 1054, 1050, 1049, 1053, 1056, 1064, 1066, 1075, 1067, 1067, 1067, 1072, 1070, 1074, 1075, 1075, 1070, 1062, 1056, 1039, 1052, 1068, 1059, 1072, 1066, 1071, 1076, 1073, 1079, 1078, 1077, 1073, 1070, 1063, 1060, 1044]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1032, 1051, 1062, 1061, 1060, 1061, 1072, 1070, 1066, 1070, 1060, 1069, 1062, 1062, 1059, 1044, 1040, 1038, 1046, 1055, 1056, 1060, 1059, 1065, 1057, 1059, 1057, 1068, 1062, 1065, 1057, 1061, 1053, 1040, 1050, 1055, 1051, 1061, 1067, 1062, 1064, 1057, 1062, 1054, 1067, 1066, 1070, 1061, 1052, 1050, 1042, 1041, 1057, 1052, 1057, 1062, 1052, 1055, 1054, 1048, 1060, 1056, 1066, 1069, 1063, 1064, 1051, 1048, 1050, 1051, 1061, 1058, 1060, 1056, 1052, 1039, 1047, 1049, 1047, 1057, 1070, 1062, 1059, 1058, 1053, 1054, 1057, 1061, 1062, 1055, 1056, 1046, 1033, 1045, 1044, 1051, 1056, 1066, 1063, 1062, 1055, 1058, 1052, 1050, 1066, 1065, 1056, 1047, 1030, 1024, 1030, 1040, 1045, 1055, 1070, 1059, 1059, 1061, 1054, 1049, 1057, 1058, 1067, 1060, 1040, 1038, 1025, 1024, 1028, 1051, 1062, 1068, 1063, 1061, 1058, 1057, 1060, 1050, 1062, 1060, 1055, 1047, 1041, 1024, 1030, 1043, 1050, 1049, 1063, 1071, 1071, 1064, 1065, 1048, 1049, 1056, 1058, 1058, 1043, 1044, 1038, 1037, 1042, 1054, 1055, 1066, 1059, 1065, 1065, 1056, 1053, 1061, 1065, 1059, 1061, 1051, 1054, 1044, 1043, 1042, 1050, 1062, 1071, 1069, 1067, 1055, 1063, 1052, 1056, 1061, 1064, 1060, 1055, 1043, 1039, 1046, 1053, 1048, 1061, 1073, 1072, 1065, 1059, 1055, 1053, 1059, 1061, 1064, 1065, 1054, 1051, 1057, 1049, 1053, 1047, 1065, 1069, 1066, 1069, 1063, 1056, 1052, 1053, 1061, 1067, 1065, 1060, 1068, 1061, 1050, 1066, 1057, 1065, 1070, 1065, 1065, 1060, 1053, 1057, 1055, 1062, 1062, 1063, 1067, 1065, 1059, 1057, 1060, 1067, 1072, 1063, 1071, 1059, 1055, 1054, 1049, 1052, 1059, 1069, 1062, 1071, 1063, 1073, 1067, 1070, 1077, 1071, 1069, 1072, 1064, 1063, 1049, 1043, 1047, 1054, 1068, 1074, 1061, 1070, 1071, 1078, 1071, 1070, 1076, 1069, 1071, 1058, 1055, 1046]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1045, 1065, 1063, 1076, 1083, 1083, 1070, 1092, 1082, 1071, 1085, 1071, 1073, 1055, 1045, 1042, 1027, 1042, 1060, 1067, 1071, 1081, 1095, 1072, 1077, 1076, 1082, 1084, 1070, 1066, 1054, 1052, 1041, 1025, 1047, 1057, 1070, 1074, 1082, 1084, 1077, 1082, 1087, 1082, 1079, 1075, 1068, 1065, 1049, 1039, 1041, 1053, 1069, 1062, 1080, 1076, 1075, 1071, 1071, 1080, 1079, 1084, 1080, 1075, 1069, 1051, 1039, 1045, 1058, 1071, 1075, 1072, 1080, 1068, 1061, 1061, 1077, 1077, 1094, 1087, 1073, 1075, 1055, 1045, 1049, 1063, 1069, 1073, 1079, 1077, 1063, 1064, 1061, 1061, 1077, 1079, 1083, 1078, 1069, 1059, 1045, 1048, 1055, 1080, 1081, 1074, 1074, 1062, 1051, 1056, 1067, 1072, 1076, 1090, 1084, 1075, 1062, 1045, 1038, 1056, 1077, 1075, 1079, 1078, 1065, 1053, 1043, 1066, 1066, 1078, 1082, 1075, 1077, 1059, 1051, 1049, 1061, 1075, 1087, 1078, 1065, 1071, 1064, 1053, 1066, 1073, 1075, 1085, 1097, 1078, 1068, 1056, 1035, 1056, 1074, 1084, 1078, 1079, 1071, 1065, 1068, 1070, 1084, 1088, 1092, 1080, 1067, 1058, 1047, 1049, 1057, 1073, 1072, 1085, 1077, 1076, 1065, 1067, 1069, 1078, 1082, 1092, 1083, 1073, 1064, 1065, 1047, 1061, 1073, 1076, 1089, 1074, 1087, 1078, 1064, 1072, 1079, 1078, 1090, 1068, 1067, 1062, 1055, 1047, 1060, 1073, 1072, 1064, 1081, 1077, 1076, 1069, 1085, 1069, 1073, 1079, 1080, 1076, 1057, 1048, 1046, 1053, 1056, 1073, 1078, 1079, 1077, 1066, 1076, 1084, 1082, 1086, 1078, 1078, 1068, 1057, 1045, 1036, 1051, 1053, 1064, 1070, 1080, 1073, 1076, 1078, 1081, 1083, 1083, 1085, 1077, 1068, 1055, 1039, 1036, 1052, 1067, 1067, 1070, 1078, 1080, 1079, 1087, 1091, 1092, 1086, 1085, 1084, 1061, 1051, 1041, 1034, 1047, 1054, 1069, 1077, 1075, 1082, 1101, 1088, 1090, 1096, 1086, 1079, 1066, 1059, 1053, 1039]
| }
| }, {
| "name": "3840x2160_HZ_100",
| "resolution": "3840x2160",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1147, 1141, 1135, 1128, 1119, 1109, 1090, 1104, 1106, 1113, 1115, 1119, 1147, 1154, 1152, 1183, 1191, 1152, 1140, 1128, 1119, 1110, 1095, 1091, 1087, 1082, 1089, 1097, 1110, 1138, 1143, 1156, 1168, 1180, 1138, 1121, 1116, 1104, 1100, 1089, 1077, 1078, 1076, 1084, 1093, 1107, 1125, 1141, 1148, 1165, 1191, 1138, 1116, 1113, 1100, 1096, 1085, 1079, 1066, 1057, 1074, 1086, 1095, 1121, 1137, 1152, 1166, 1183, 1133, 1124, 1108, 1102, 1092, 1072, 1060, 1049, 1052, 1068, 1074, 1099, 1120, 1134, 1147, 1169, 1194, 1142, 1125, 1110, 1100, 1083, 1073, 1050, 1046, 1041, 1064, 1071, 1102, 1112, 1136, 1148, 1171, 1195, 1141, 1119, 1109, 1096, 1084, 1056, 1043, 1039, 1041, 1049, 1074, 1098, 1115, 1129, 1149, 1164, 1199, 1151, 1132, 1103, 1101, 1083, 1055, 1037, 1024, 1033, 1055, 1073, 1087, 1123, 1138, 1147, 1174, 1192, 1142, 1129, 1110, 1103, 1086, 1058, 1047, 1032, 1026, 1042, 1064, 1093, 1111, 1134, 1165, 1172, 1202, 1150, 1128, 1125, 1099, 1080, 1068, 1054, 1038, 1035, 1052, 1062, 1087, 1113, 1140, 1156, 1186, 1207, 1143, 1128, 1123, 1111, 1084, 1068, 1053, 1044, 1046, 1049, 1078, 1097, 1124, 1141, 1159, 1176, 1211, 1156, 1135, 1125, 1105, 1087, 1069, 1067, 1052, 1059, 1061, 1082, 1102, 1125, 1141, 1163, 1180, 1206, 1158, 1143, 1127, 1109, 1089, 1090, 1070, 1070, 1072, 1077, 1086, 1118, 1128, 1157, 1163, 1178, 1208, 1163, 1138, 1134, 1121, 1101, 1094, 1085, 1082, 1080, 1088, 1105, 1114, 1133, 1161, 1171, 1187, 1192, 1166, 1145, 1136, 1122, 1114, 1111, 1097, 1095, 1097, 1100, 1108, 1134, 1146, 1157, 1176, 1187, 1205, 1167, 1146, 1138, 1133, 1123, 1117, 1113, 1116, 1113, 1120, 1127, 1145, 1155, 1181, 1179, 1196, 1211, 1177, 1168, 1160, 1157, 1145, 1134, 1122, 1127, 1130, 1141, 1145, 1158, 1167, 1193, 1201, 1206, 1224]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1093, 1094, 1096, 1108, 1091, 1088, 1094, 1091, 1087, 1088, 1099, 1094, 1096, 1097, 1103, 1094, 1106, 1082, 1077, 1087, 1087, 1084, 1089, 1082, 1075, 1073, 1079, 1081, 1094, 1092, 1103, 1112, 1102, 1111, 1092, 1089, 1081, 1078, 1083, 1070, 1075, 1061, 1070, 1070, 1079, 1088, 1088, 1096, 1096, 1100, 1113, 1090, 1084, 1088, 1080, 1068, 1073, 1069, 1059, 1052, 1060, 1070, 1075, 1089, 1089, 1094, 1093, 1094, 1097, 1084, 1085, 1079, 1070, 1062, 1053, 1050, 1045, 1060, 1063, 1084, 1081, 1098, 1095, 1106, 1103, 1093, 1074, 1078, 1068, 1070, 1054, 1045, 1032, 1044, 1046, 1061, 1071, 1086, 1083, 1098, 1101, 1106, 1084, 1081, 1086, 1074, 1069, 1050, 1039, 1033, 1035, 1044, 1061, 1069, 1083, 1093, 1094, 1098, 1105, 1096, 1088, 1094, 1071, 1073, 1045, 1045, 1024, 1031, 1036, 1053, 1064, 1080, 1098, 1094, 1103, 1117, 1101, 1090, 1084, 1084, 1077, 1049, 1044, 1031, 1024, 1034, 1047, 1071, 1073, 1093, 1103, 1094, 1102, 1099, 1089, 1089, 1073, 1069, 1065, 1041, 1036, 1033, 1038, 1054, 1068, 1073, 1096, 1101, 1104, 1119, 1096, 1086, 1089, 1081, 1071, 1056, 1055, 1042, 1036, 1050, 1059, 1070, 1083, 1091, 1099, 1106, 1117, 1101, 1091, 1084, 1075, 1072, 1062, 1051, 1049, 1050, 1050, 1057, 1080, 1083, 1099, 1100, 1105, 1104, 1099, 1090, 1084, 1089, 1071, 1068, 1075, 1060, 1065, 1053, 1065, 1071, 1095, 1107, 1105, 1105, 1108, 1104, 1086, 1083, 1085, 1091, 1069, 1069, 1062, 1067, 1066, 1069, 1088, 1099, 1103, 1101, 1114, 1104, 1104, 1085, 1098, 1090, 1086, 1079, 1075, 1071, 1072, 1083, 1082, 1092, 1095, 1110, 1101, 1101, 1110, 1093, 1086, 1088, 1089, 1090, 1094, 1083, 1090, 1085, 1089, 1094, 1097, 1097, 1109, 1108, 1110, 1101, 1098, 1083, 1098, 1103, 1093, 1103, 1095, 1097, 1095, 1108, 1110, 1120, 1105, 1120, 1116, 1118, 1101]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1092, 1103, 1108, 1108, 1092, 1091, 1100, 1090, 1100, 1099, 1090, 1101, 1109, 1121, 1118, 1115, 1111, 1095, 1090, 1083, 1094, 1094, 1089, 1090, 1079, 1079, 1089, 1086, 1088, 1099, 1108, 1111, 1111, 1106, 1088, 1087, 1091, 1086, 1092, 1086, 1084, 1072, 1075, 1072, 1080, 1094, 1096, 1108, 1101, 1102, 1117, 1087, 1093, 1093, 1081, 1083, 1078, 1067, 1061, 1060, 1068, 1070, 1086, 1090, 1103, 1107, 1110, 1107, 1097, 1088, 1090, 1091, 1084, 1073, 1068, 1044, 1055, 1068, 1069, 1074, 1101, 1106, 1095, 1100, 1112, 1106, 1084, 1090, 1086, 1079, 1067, 1061, 1042, 1046, 1051, 1064, 1084, 1097, 1099, 1105, 1107, 1121, 1103, 1095, 1091, 1085, 1070, 1059, 1053, 1044, 1042, 1061, 1060, 1081, 1095, 1105, 1111, 1119, 1123, 1099, 1090, 1099, 1092, 1076, 1060, 1043, 1038, 1024, 1046, 1055, 1067, 1083, 1100, 1094, 1110, 1120, 1094, 1091, 1090, 1079, 1077, 1060, 1049, 1028, 1037, 1050, 1062, 1070, 1088, 1102, 1115, 1107, 1122, 1101, 1091, 1094, 1084, 1066, 1066, 1049, 1032, 1047, 1045, 1048, 1068, 1089, 1106, 1108, 1106, 1131, 1101, 1097, 1097, 1086, 1080, 1069, 1051, 1037, 1050, 1046, 1066, 1085, 1103, 1107, 1105, 1112, 1129, 1100, 1090, 1103, 1097, 1072, 1076, 1054, 1054, 1045, 1061, 1070, 1082, 1101, 1107, 1107, 1107, 1119, 1106, 1094, 1091, 1091, 1078, 1072, 1072, 1052, 1056, 1067, 1069, 1094, 1103, 1105, 1115, 1116, 1120, 1113, 1096, 1094, 1090, 1091, 1070, 1078, 1071, 1064, 1076, 1082, 1095, 1103, 1101, 1104, 1116, 1123, 1099, 1105, 1100, 1095, 1088, 1090, 1089, 1083, 1081, 1093, 1083, 1106, 1104, 1119, 1105, 1116, 1117, 1104, 1104, 1101, 1109, 1103, 1099, 1093, 1090, 1089, 1098, 1095, 1108, 1116, 1118, 1110, 1116, 1116, 1105, 1111, 1120, 1106, 1105, 1109, 1106, 1109, 1100, 1109, 1120, 1122, 1120, 1125, 1114, 1119, 1107]
| },
| "lsc_samples_blue": {
| "uCoeff": [1072, 1066, 1099, 1086, 1068, 1080, 1087, 1080, 1087, 1077, 1091, 1104, 1118, 1105, 1115, 1107, 1100, 1059, 1074, 1087, 1085, 1086, 1082, 1085, 1078, 1076, 1090, 1088, 1098, 1098, 1097, 1107, 1107, 1122, 1061, 1072, 1073, 1074, 1075, 1083, 1071, 1056, 1061, 1058, 1079, 1091, 1094, 1112, 1109, 1099, 1113, 1059, 1070, 1063, 1076, 1058, 1062, 1062, 1062, 1054, 1074, 1073, 1077, 1101, 1100, 1112, 1104, 1112, 1061, 1061, 1079, 1067, 1069, 1063, 1053, 1035, 1047, 1051, 1070, 1098, 1106, 1094, 1093, 1121, 1114, 1090, 1071, 1092, 1062, 1084, 1050, 1036, 1029, 1038, 1043, 1051, 1080, 1094, 1111, 1098, 1116, 1112, 1066, 1086, 1079, 1068, 1070, 1039, 1040, 1024, 1029, 1042, 1059, 1082, 1086, 1122, 1121, 1113, 1116, 1100, 1082, 1083, 1075, 1064, 1061, 1026, 1026, 1025, 1040, 1059, 1086, 1093, 1107, 1128, 1103, 1112, 1078, 1085, 1094, 1089, 1074, 1059, 1046, 1025, 1025, 1037, 1059, 1083, 1103, 1107, 1113, 1126, 1133, 1095, 1089, 1112, 1070, 1083, 1067, 1041, 1027, 1037, 1041, 1051, 1072, 1086, 1109, 1122, 1120, 1121, 1099, 1104, 1091, 1079, 1078, 1063, 1041, 1040, 1041, 1044, 1044, 1077, 1098, 1114, 1107, 1101, 1115, 1089, 1096, 1098, 1095, 1079, 1079, 1053, 1065, 1043, 1048, 1053, 1080, 1105, 1107, 1110, 1105, 1118, 1085, 1077, 1094, 1097, 1082, 1075, 1066, 1053, 1033, 1053, 1071, 1087, 1096, 1109, 1105, 1097, 1106, 1078, 1088, 1079, 1093, 1080, 1063, 1076, 1055, 1062, 1066, 1068, 1094, 1114, 1107, 1105, 1107, 1109, 1095, 1090, 1095, 1084, 1095, 1073, 1070, 1061, 1066, 1081, 1083, 1094, 1105, 1112, 1096, 1107, 1113, 1080, 1095, 1089, 1091, 1089, 1096, 1089, 1082, 1084, 1098, 1090, 1103, 1103, 1110, 1109, 1112, 1103, 1077, 1084, 1089, 1096, 1086, 1092, 1099, 1097, 1098, 1111, 1110, 1105, 1113, 1114, 1096, 1087, 1084]
| }
| }, {
| "name": "3840x2160_HZ_70",
| "resolution": "3840x2160",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1110, 1112, 1113, 1111, 1106, 1100, 1084, 1098, 1100, 1106, 1107, 1109, 1131, 1133, 1126, 1144, 1141, 1116, 1113, 1109, 1105, 1100, 1088, 1086, 1083, 1079, 1085, 1092, 1102, 1125, 1125, 1131, 1135, 1136, 1108, 1100, 1100, 1093, 1092, 1084, 1074, 1075, 1074, 1081, 1089, 1101, 1115, 1125, 1127, 1135, 1147, 1109, 1097, 1099, 1091, 1090, 1081, 1077, 1065, 1056, 1072, 1083, 1090, 1112, 1123, 1132, 1137, 1143, 1106, 1105, 1095, 1093, 1087, 1069, 1059, 1048, 1051, 1067, 1072, 1095, 1112, 1122, 1129, 1141, 1152, 1114, 1106, 1098, 1092, 1079, 1071, 1049, 1046, 1041, 1063, 1070, 1098, 1106, 1124, 1130, 1144, 1154, 1114, 1102, 1097, 1089, 1080, 1055, 1043, 1039, 1041, 1049, 1073, 1095, 1109, 1119, 1132, 1139, 1158, 1122, 1113, 1092, 1094, 1079, 1054, 1037, 1024, 1033, 1055, 1072, 1085, 1117, 1127, 1131, 1147, 1154, 1115, 1110, 1099, 1096, 1082, 1057, 1047, 1032, 1026, 1042, 1063, 1091, 1106, 1124, 1146, 1146, 1161, 1121, 1109, 1112, 1092, 1077, 1066, 1054, 1038, 1035, 1052, 1061, 1085, 1107, 1129, 1138, 1157, 1165, 1115, 1109, 1109, 1102, 1080, 1066, 1052, 1044, 1046, 1049, 1077, 1094, 1117, 1130, 1141, 1148, 1168, 1125, 1114, 1111, 1097, 1083, 1067, 1066, 1052, 1059, 1060, 1080, 1098, 1118, 1129, 1143, 1151, 1163, 1125, 1120, 1112, 1100, 1084, 1086, 1068, 1069, 1071, 1076, 1084, 1113, 1120, 1142, 1142, 1148, 1163, 1128, 1115, 1116, 1109, 1094, 1090, 1082, 1080, 1078, 1086, 1101, 1108, 1123, 1144, 1147, 1154, 1149, 1128, 1119, 1117, 1109, 1105, 1104, 1093, 1092, 1094, 1096, 1103, 1126, 1134, 1139, 1150, 1152, 1157, 1127, 1118, 1117, 1117, 1111, 1108, 1106, 1110, 1108, 1114, 1119, 1134, 1140, 1158, 1150, 1157, 1158, 1131, 1133, 1133, 1135, 1129, 1122, 1113, 1119, 1122, 1132, 1134, 1143, 1148, 1165, 1165, 1161, 1164]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1072, 1077, 1081, 1094, 1082, 1081, 1088, 1086, 1082, 1083, 1092, 1086, 1086, 1085, 1087, 1077, 1081, 1066, 1065, 1075, 1078, 1077, 1083, 1078, 1072, 1070, 1076, 1077, 1088, 1084, 1091, 1096, 1084, 1087, 1074, 1075, 1071, 1071, 1077, 1066, 1072, 1059, 1068, 1068, 1076, 1083, 1081, 1086, 1084, 1084, 1089, 1073, 1072, 1078, 1073, 1064, 1070, 1067, 1058, 1051, 1059, 1068, 1072, 1083, 1081, 1083, 1079, 1076, 1079, 1072, 1076, 1073, 1066, 1060, 1052, 1049, 1045, 1059, 1062, 1081, 1076, 1090, 1084, 1090, 1084, 1077, 1065, 1070, 1063, 1067, 1053, 1044, 1032, 1044, 1046, 1060, 1069, 1082, 1077, 1087, 1087, 1087, 1070, 1071, 1078, 1069, 1066, 1049, 1039, 1033, 1035, 1044, 1060, 1067, 1079, 1086, 1084, 1085, 1086, 1080, 1077, 1085, 1067, 1070, 1044, 1045, 1024, 1031, 1036, 1053, 1063, 1077, 1091, 1085, 1089, 1096, 1083, 1078, 1076, 1078, 1074, 1048, 1044, 1031, 1024, 1034, 1047, 1069, 1070, 1087, 1093, 1082, 1084, 1082, 1077, 1080, 1068, 1066, 1064, 1041, 1036, 1033, 1038, 1054, 1066, 1070, 1089, 1091, 1090, 1097, 1079, 1075, 1080, 1075, 1068, 1055, 1054, 1042, 1036, 1050, 1058, 1068, 1079, 1084, 1089, 1091, 1095, 1083, 1078, 1075, 1070, 1069, 1060, 1050, 1049, 1050, 1050, 1056, 1077, 1079, 1091, 1089, 1090, 1085, 1081, 1077, 1075, 1082, 1067, 1066, 1073, 1059, 1064, 1052, 1064, 1068, 1089, 1098, 1093, 1089, 1087, 1084, 1073, 1074, 1078, 1085, 1066, 1067, 1061, 1066, 1065, 1067, 1084, 1092, 1093, 1089, 1096, 1084, 1083, 1072, 1085, 1081, 1080, 1075, 1072, 1069, 1070, 1080, 1079, 1087, 1088, 1098, 1088, 1084, 1087, 1074, 1072, 1076, 1079, 1082, 1088, 1079, 1086, 1081, 1085, 1089, 1090, 1088, 1096, 1092, 1090, 1079, 1076, 1069, 1083, 1090, 1084, 1094, 1089, 1091, 1090, 1101, 1102, 1110, 1094, 1104, 1097, 1095, 1078]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1072, 1084, 1091, 1094, 1083, 1084, 1093, 1085, 1094, 1093, 1084, 1093, 1098, 1105, 1099, 1093, 1085, 1075, 1075, 1072, 1084, 1086, 1083, 1085, 1076, 1076, 1085, 1081, 1082, 1090, 1096, 1095, 1091, 1083, 1071, 1073, 1079, 1078, 1085, 1081, 1080, 1070, 1073, 1070, 1077, 1089, 1089, 1097, 1088, 1085, 1092, 1071, 1079, 1082, 1074, 1078, 1075, 1065, 1060, 1059, 1066, 1068, 1082, 1084, 1093, 1094, 1092, 1086, 1079, 1076, 1080, 1084, 1079, 1070, 1066, 1044, 1054, 1067, 1067, 1071, 1095, 1097, 1084, 1085, 1090, 1087, 1073, 1081, 1080, 1075, 1065, 1060, 1042, 1046, 1051, 1063, 1081, 1092, 1091, 1093, 1091, 1098, 1085, 1082, 1082, 1079, 1067, 1058, 1052, 1044, 1042, 1061, 1059, 1079, 1090, 1097, 1099, 1102, 1100, 1082, 1078, 1089, 1086, 1073, 1059, 1043, 1038, 1024, 1046, 1054, 1065, 1079, 1093, 1085, 1095, 1098, 1078, 1079, 1081, 1074, 1074, 1059, 1049, 1028, 1037, 1050, 1061, 1068, 1084, 1095, 1103, 1092, 1100, 1083, 1079, 1085, 1078, 1063, 1065, 1049, 1032, 1047, 1045, 1048, 1066, 1085, 1098, 1097, 1091, 1107, 1083, 1084, 1087, 1080, 1076, 1067, 1050, 1037, 1050, 1046, 1065, 1083, 1098, 1099, 1094, 1096, 1105, 1082, 1078, 1092, 1089, 1069, 1074, 1053, 1054, 1045, 1060, 1069, 1079, 1096, 1098, 1095, 1091, 1096, 1086, 1080, 1081, 1084, 1074, 1069, 1070, 1051, 1055, 1066, 1067, 1090, 1097, 1096, 1101, 1098, 1097, 1090, 1081, 1083, 1082, 1085, 1067, 1076, 1069, 1063, 1074, 1079, 1090, 1096, 1092, 1091, 1097, 1098, 1079, 1088, 1087, 1085, 1081, 1085, 1085, 1080, 1079, 1090, 1080, 1100, 1096, 1106, 1091, 1096, 1092, 1082, 1086, 1087, 1096, 1094, 1092, 1088, 1086, 1085, 1093, 1090, 1100, 1105, 1104, 1094, 1095, 1090, 1081, 1090, 1101, 1093, 1094, 1100, 1099, 1102, 1094, 1102, 1111, 1111, 1107, 1108, 1096, 1096, 1082]
| },
| "lsc_samples_blue": {
| "uCoeff": [1058, 1056, 1084, 1076, 1062, 1074, 1081, 1076, 1082, 1073, 1085, 1095, 1105, 1092, 1097, 1087, 1077, 1049, 1063, 1075, 1076, 1079, 1077, 1081, 1075, 1073, 1086, 1083, 1091, 1089, 1086, 1092, 1088, 1094, 1051, 1062, 1065, 1067, 1070, 1078, 1068, 1054, 1059, 1056, 1076, 1086, 1087, 1100, 1094, 1083, 1089, 1050, 1061, 1057, 1070, 1055, 1060, 1060, 1061, 1053, 1072, 1071, 1074, 1094, 1091, 1098, 1088, 1090, 1052, 1054, 1071, 1062, 1065, 1061, 1052, 1035, 1047, 1050, 1068, 1094, 1100, 1086, 1083, 1102, 1092, 1074, 1062, 1082, 1058, 1080, 1049, 1036, 1029, 1038, 1043, 1050, 1077, 1089, 1102, 1087, 1099, 1091, 1056, 1075, 1071, 1064, 1067, 1038, 1040, 1024, 1029, 1042, 1058, 1080, 1082, 1112, 1108, 1097, 1095, 1083, 1072, 1075, 1070, 1062, 1060, 1026, 1026, 1025, 1040, 1058, 1084, 1089, 1099, 1114, 1089, 1092, 1066, 1074, 1085, 1083, 1071, 1058, 1046, 1025, 1025, 1037, 1058, 1081, 1098, 1099, 1101, 1108, 1108, 1079, 1077, 1100, 1066, 1079, 1065, 1041, 1027, 1037, 1041, 1051, 1070, 1082, 1101, 1109, 1103, 1099, 1082, 1089, 1082, 1074, 1074, 1061, 1041, 1040, 1041, 1044, 1044, 1075, 1093, 1105, 1096, 1087, 1094, 1074, 1083, 1087, 1088, 1075, 1077, 1052, 1064, 1043, 1048, 1052, 1077, 1099, 1098, 1098, 1090, 1096, 1070, 1067, 1083, 1089, 1077, 1072, 1065, 1052, 1033, 1052, 1069, 1084, 1090, 1100, 1093, 1083, 1086, 1064, 1075, 1070, 1085, 1075, 1061, 1074, 1054, 1061, 1065, 1066, 1090, 1106, 1097, 1092, 1090, 1087, 1076, 1076, 1083, 1076, 1088, 1069, 1067, 1059, 1064, 1078, 1080, 1089, 1097, 1100, 1084, 1089, 1089, 1064, 1079, 1077, 1081, 1081, 1089, 1084, 1078, 1080, 1093, 1085, 1096, 1094, 1097, 1093, 1092, 1081, 1061, 1069, 1076, 1084, 1078, 1085, 1092, 1091, 1092, 1104, 1102, 1096, 1101, 1099, 1081, 1072, 1066]
| }
| }, {
| "name": "3840x2160_TL84_100",
| "resolution": "3840x2160",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [1075, 1093, 1100, 1100, 1088, 1098, 1091, 1092, 1087, 1073, 1080, 1065, 1081, 1081, 1071, 1075, 1072, 1087, 1082, 1086, 1085, 1082, 1074, 1078, 1071, 1069, 1069, 1070, 1071, 1081, 1070, 1068, 1071, 1072, 1090, 1086, 1086, 1081, 1079, 1072, 1070, 1062, 1067, 1063, 1056, 1063, 1066, 1078, 1060, 1059, 1085, 1086, 1080, 1090, 1077, 1075, 1075, 1062, 1059, 1048, 1057, 1062, 1073, 1063, 1077, 1059, 1072, 1094, 1086, 1086, 1082, 1082, 1085, 1063, 1048, 1042, 1039, 1057, 1053, 1074, 1068, 1076, 1066, 1076, 1093, 1085, 1088, 1083, 1085, 1080, 1058, 1047, 1037, 1039, 1045, 1048, 1072, 1065, 1066, 1065, 1064, 1087, 1093, 1082, 1088, 1084, 1074, 1059, 1038, 1027, 1034, 1032, 1055, 1064, 1070, 1080, 1083, 1077, 1082, 1090, 1078, 1096, 1075, 1073, 1058, 1047, 1024, 1028, 1031, 1046, 1069, 1074, 1072, 1072, 1072, 1088, 1093, 1076, 1081, 1080, 1074, 1062, 1037, 1033, 1026, 1031, 1041, 1061, 1067, 1080, 1085, 1081, 1075, 1093, 1089, 1081, 1087, 1067, 1051, 1047, 1047, 1036, 1031, 1054, 1056, 1070, 1084, 1087, 1077, 1092, 1089, 1089, 1088, 1091, 1068, 1049, 1050, 1039, 1041, 1035, 1059, 1063, 1078, 1075, 1070, 1079, 1098, 1103, 1081, 1088, 1089, 1079, 1068, 1053, 1051, 1048, 1043, 1061, 1068, 1066, 1077, 1076, 1085, 1093, 1095, 1092, 1099, 1077, 1081, 1066, 1066, 1058, 1056, 1062, 1060, 1061, 1077, 1081, 1087, 1080, 1093, 1078, 1081, 1090, 1094, 1079, 1066, 1068, 1065, 1050, 1068, 1071, 1077, 1084, 1080, 1083, 1081, 1089, 1093, 1082, 1089, 1084, 1089, 1076, 1074, 1073, 1071, 1080, 1067, 1078, 1073, 1086, 1089, 1075, 1091, 1093, 1082, 1089, 1100, 1089, 1085, 1080, 1082, 1075, 1083, 1086, 1096, 1091, 1084, 1089, 1089, 1100, 1093, 1099, 1090, 1100, 1103, 1087, 1082, 1077, 1095, 1086, 1092, 1081, 1106, 1101, 1085, 1089, 1077]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1066, 1068, 1089, 1094, 1091, 1087, 1089, 1078, 1083, 1082, 1079, 1074, 1077, 1079, 1070, 1057, 1047, 1073, 1077, 1084, 1082, 1076, 1078, 1079, 1069, 1065, 1074, 1073, 1068, 1076, 1072, 1066, 1058, 1055, 1073, 1080, 1076, 1069, 1077, 1068, 1076, 1064, 1071, 1061, 1061, 1067, 1068, 1069, 1064, 1056, 1063, 1073, 1076, 1084, 1074, 1074, 1073, 1066, 1058, 1053, 1051, 1063, 1065, 1069, 1072, 1063, 1061, 1061, 1091, 1077, 1084, 1077, 1073, 1072, 1058, 1047, 1049, 1057, 1059, 1071, 1070, 1074, 1065, 1068, 1064, 1083, 1077, 1079, 1075, 1074, 1061, 1055, 1039, 1045, 1045, 1063, 1066, 1072, 1068, 1066, 1057, 1065, 1091, 1084, 1081, 1077, 1069, 1064, 1050, 1030, 1031, 1044, 1047, 1066, 1065, 1065, 1072, 1062, 1063, 1088, 1079, 1075, 1083, 1073, 1057, 1044, 1039, 1032, 1034, 1052, 1056, 1063, 1078, 1063, 1067, 1079, 1076, 1075, 1078, 1080, 1074, 1054, 1049, 1042, 1024, 1039, 1049, 1061, 1067, 1069, 1065, 1067, 1074, 1097, 1079, 1084, 1078, 1065, 1063, 1050, 1043, 1040, 1048, 1046, 1059, 1063, 1067, 1076, 1073, 1077, 1080, 1082, 1084, 1084, 1066, 1058, 1058, 1048, 1039, 1043, 1057, 1062, 1072, 1072, 1075, 1063, 1080, 1082, 1082, 1081, 1081, 1079, 1061, 1057, 1050, 1055, 1053, 1055, 1064, 1076, 1080, 1074, 1068, 1066, 1091, 1078, 1082, 1085, 1077, 1068, 1065, 1055, 1064, 1060, 1062, 1067, 1077, 1070, 1073, 1078, 1069, 1086, 1082, 1081, 1075, 1078, 1072, 1073, 1062, 1061, 1065, 1076, 1069, 1084, 1072, 1072, 1071, 1070, 1084, 1080, 1082, 1079, 1076, 1077, 1077, 1073, 1070, 1072, 1066, 1080, 1074, 1074, 1072, 1070, 1069, 1074, 1085, 1082, 1082, 1086, 1094, 1081, 1077, 1078, 1076, 1079, 1086, 1084, 1081, 1079, 1073, 1065, 1063, 1081, 1094, 1095, 1094, 1094, 1092, 1097, 1090, 1092, 1093, 1093, 1077, 1084, 1070, 1072, 1060]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1052, 1071, 1074, 1092, 1076, 1079, 1082, 1082, 1077, 1080, 1075, 1075, 1066, 1069, 1064, 1062, 1050, 1067, 1068, 1077, 1072, 1076, 1074, 1068, 1064, 1067, 1066, 1061, 1060, 1068, 1070, 1060, 1052, 1045, 1067, 1068, 1072, 1076, 1069, 1076, 1068, 1066, 1062, 1061, 1065, 1063, 1064, 1063, 1063, 1058, 1052, 1071, 1082, 1080, 1073, 1070, 1070, 1059, 1055, 1046, 1052, 1063, 1062, 1062, 1062, 1063, 1058, 1060, 1077, 1081, 1083, 1077, 1068, 1060, 1062, 1035, 1044, 1054, 1055, 1059, 1070, 1075, 1069, 1063, 1064, 1083, 1079, 1081, 1072, 1074, 1060, 1048, 1033, 1040, 1044, 1052, 1064, 1063, 1060, 1065, 1062, 1067, 1085, 1079, 1083, 1073, 1068, 1059, 1044, 1031, 1032, 1040, 1038, 1052, 1067, 1063, 1066, 1065, 1061, 1088, 1068, 1075, 1064, 1065, 1053, 1042, 1032, 1024, 1031, 1046, 1055, 1067, 1071, 1070, 1069, 1060, 1083, 1072, 1076, 1080, 1067, 1051, 1040, 1024, 1030, 1033, 1050, 1054, 1059, 1067, 1066, 1063, 1067, 1069, 1080, 1079, 1071, 1066, 1057, 1053, 1039, 1035, 1045, 1045, 1053, 1059, 1072, 1068, 1063, 1069, 1079, 1074, 1077, 1077, 1063, 1060, 1047, 1049, 1039, 1046, 1047, 1056, 1065, 1064, 1064, 1058, 1073, 1082, 1083, 1074, 1074, 1070, 1068, 1054, 1052, 1049, 1051, 1051, 1060, 1065, 1074, 1073, 1071, 1067, 1077, 1084, 1074, 1080, 1078, 1061, 1057, 1049, 1052, 1059, 1052, 1062, 1070, 1072, 1072, 1070, 1072, 1083, 1075, 1079, 1081, 1073, 1077, 1072, 1059, 1057, 1052, 1059, 1072, 1068, 1072, 1066, 1064, 1063, 1081, 1081, 1075, 1074, 1070, 1080, 1077, 1070, 1065, 1071, 1061, 1073, 1077, 1078, 1065, 1069, 1066, 1089, 1082, 1077, 1094, 1088, 1079, 1077, 1080, 1080, 1076, 1075, 1082, 1074, 1076, 1067, 1068, 1062, 1076, 1089, 1091, 1102, 1090, 1079, 1089, 1091, 1083, 1079, 1093, 1086, 1074, 1076, 1071, 1072, 1056]
| },
| "lsc_samples_blue": {
| "uCoeff": [1038, 1063, 1067, 1072, 1073, 1090, 1099, 1088, 1099, 1089, 1078, 1074, 1067, 1068, 1066, 1058, 1024, 1057, 1067, 1073, 1086, 1089, 1093, 1099, 1080, 1077, 1087, 1085, 1082, 1076, 1076, 1067, 1043, 1034, 1056, 1067, 1086, 1084, 1082, 1096, 1087, 1087, 1071, 1077, 1082, 1079, 1079, 1078, 1068, 1053, 1046, 1054, 1069, 1089, 1084, 1083, 1093, 1094, 1076, 1078, 1076, 1088, 1088, 1079, 1074, 1074, 1051, 1060, 1044, 1076, 1091, 1088, 1093, 1083, 1078, 1054, 1066, 1069, 1083, 1084, 1092, 1089, 1065, 1070, 1043, 1050, 1077, 1088, 1091, 1082, 1072, 1076, 1057, 1068, 1076, 1079, 1089, 1083, 1092, 1073, 1067, 1050, 1070, 1081, 1083, 1092, 1091, 1070, 1069, 1061, 1065, 1061, 1069, 1091, 1085, 1084, 1072, 1059, 1047, 1075, 1079, 1091, 1086, 1095, 1092, 1060, 1050, 1059, 1074, 1073, 1092, 1101, 1076, 1077, 1066, 1052, 1075, 1086, 1103, 1103, 1095, 1070, 1075, 1073, 1052, 1061, 1081, 1090, 1085, 1089, 1074, 1073, 1052, 1084, 1079, 1098, 1104, 1096, 1095, 1064, 1072, 1069, 1078, 1074, 1078, 1096, 1075, 1081, 1073, 1054, 1077, 1082, 1092, 1094, 1085, 1090, 1080, 1075, 1057, 1075, 1075, 1073, 1093, 1096, 1081, 1068, 1066, 1066, 1081, 1088, 1101, 1096, 1100, 1078, 1078, 1075, 1084, 1073, 1077, 1091, 1088, 1077, 1073, 1069, 1069, 1071, 1092, 1098, 1097, 1080, 1093, 1077, 1086, 1082, 1075, 1087, 1084, 1078, 1079, 1073, 1061, 1065, 1084, 1092, 1080, 1093, 1089, 1089, 1081, 1074, 1074, 1076, 1079, 1083, 1094, 1069, 1072, 1044, 1054, 1073, 1086, 1079, 1087, 1092, 1097, 1089, 1091, 1091, 1091, 1090, 1093, 1093, 1068, 1065, 1056, 1065, 1078, 1089, 1102, 1092, 1098, 1101, 1090, 1093, 1106, 1091, 1102, 1095, 1095, 1074, 1059, 1048, 1050, 1060, 1061, 1082, 1089, 1101, 1099, 1088, 1095, 1091, 1112, 1098, 1075, 1073, 1054, 1072, 1042]
| }
| }, {
| "name": "3840x2160_TL84_70",
| "resolution": "3840x2160",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1060, 1076, 1085, 1087, 1079, 1090, 1085, 1087, 1082, 1069, 1075, 1061, 1073, 1072, 1062, 1062, 1058, 1069, 1069, 1074, 1076, 1075, 1069, 1074, 1068, 1066, 1066, 1067, 1067, 1074, 1063, 1060, 1060, 1059, 1072, 1073, 1075, 1073, 1073, 1068, 1067, 1060, 1065, 1061, 1054, 1060, 1062, 1071, 1054, 1051, 1069, 1070, 1069, 1079, 1071, 1070, 1072, 1060, 1058, 1047, 1056, 1060, 1070, 1060, 1071, 1053, 1062, 1076, 1071, 1074, 1073, 1076, 1080, 1061, 1047, 1042, 1039, 1056, 1052, 1071, 1065, 1070, 1060, 1066, 1076, 1071, 1076, 1075, 1079, 1076, 1056, 1046, 1037, 1039, 1045, 1047, 1070, 1062, 1062, 1059, 1057, 1072, 1077, 1071, 1079, 1078, 1071, 1058, 1038, 1027, 1034, 1032, 1054, 1062, 1067, 1075, 1075, 1067, 1069, 1075, 1068, 1086, 1070, 1070, 1057, 1047, 1024, 1028, 1031, 1046, 1067, 1071, 1067, 1066, 1063, 1073, 1077, 1067, 1073, 1075, 1071, 1061, 1037, 1033, 1026, 1031, 1041, 1060, 1064, 1075, 1077, 1071, 1063, 1077, 1077, 1073, 1081, 1064, 1050, 1047, 1047, 1036, 1031, 1054, 1055, 1067, 1078, 1079, 1068, 1076, 1074, 1077, 1079, 1084, 1065, 1048, 1049, 1039, 1041, 1035, 1058, 1061, 1074, 1070, 1064, 1069, 1081, 1084, 1070, 1079, 1082, 1075, 1066, 1052, 1051, 1048, 1043, 1060, 1066, 1063, 1072, 1069, 1074, 1077, 1078, 1079, 1088, 1071, 1076, 1064, 1065, 1057, 1055, 1061, 1059, 1059, 1073, 1075, 1078, 1069, 1076, 1064, 1069, 1079, 1085, 1074, 1063, 1066, 1064, 1049, 1066, 1069, 1074, 1079, 1073, 1074, 1069, 1072, 1075, 1069, 1078, 1076, 1082, 1072, 1071, 1071, 1069, 1077, 1064, 1074, 1068, 1078, 1078, 1064, 1073, 1074, 1069, 1077, 1089, 1081, 1079, 1076, 1078, 1072, 1079, 1081, 1089, 1083, 1075, 1077, 1074, 1079, 1072, 1081, 1077, 1087, 1092, 1080, 1077, 1073, 1090, 1081, 1086, 1075, 1095, 1088, 1073, 1073, 1061]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1053, 1057, 1076, 1082, 1082, 1080, 1083, 1074, 1078, 1077, 1074, 1069, 1070, 1070, 1061, 1049, 1040, 1059, 1065, 1073, 1073, 1070, 1073, 1075, 1066, 1063, 1071, 1069, 1064, 1070, 1065, 1058, 1050, 1046, 1060, 1068, 1067, 1063, 1072, 1065, 1073, 1062, 1069, 1059, 1059, 1064, 1064, 1063, 1057, 1049, 1053, 1061, 1065, 1074, 1068, 1070, 1070, 1064, 1057, 1052, 1050, 1061, 1062, 1065, 1066, 1057, 1053, 1052, 1075, 1067, 1075, 1071, 1069, 1069, 1057, 1046, 1049, 1056, 1058, 1068, 1066, 1068, 1059, 1059, 1054, 1069, 1067, 1071, 1070, 1070, 1059, 1054, 1039, 1045, 1045, 1062, 1064, 1069, 1063, 1060, 1051, 1055, 1075, 1073, 1073, 1072, 1066, 1062, 1049, 1030, 1031, 1044, 1047, 1064, 1062, 1061, 1065, 1055, 1054, 1073, 1069, 1068, 1077, 1070, 1056, 1044, 1039, 1032, 1034, 1052, 1055, 1061, 1073, 1058, 1059, 1066, 1064, 1066, 1071, 1075, 1071, 1053, 1049, 1042, 1024, 1039, 1049, 1060, 1064, 1065, 1060, 1059, 1063, 1080, 1069, 1076, 1073, 1062, 1062, 1050, 1043, 1040, 1048, 1046, 1058, 1061, 1063, 1069, 1064, 1065, 1067, 1071, 1076, 1078, 1063, 1057, 1057, 1048, 1039, 1043, 1056, 1061, 1069, 1067, 1068, 1056, 1067, 1068, 1071, 1073, 1075, 1075, 1059, 1056, 1050, 1055, 1053, 1054, 1062, 1072, 1074, 1067, 1060, 1056, 1075, 1068, 1073, 1078, 1073, 1066, 1064, 1054, 1063, 1059, 1061, 1065, 1073, 1065, 1066, 1068, 1058, 1070, 1070, 1072, 1069, 1073, 1069, 1071, 1061, 1060, 1064, 1074, 1066, 1079, 1066, 1064, 1061, 1058, 1068, 1068, 1072, 1072, 1071, 1073, 1074, 1071, 1068, 1070, 1064, 1076, 1069, 1067, 1064, 1060, 1057, 1060, 1071, 1071, 1073, 1079, 1088, 1077, 1074, 1075, 1073, 1075, 1080, 1077, 1073, 1069, 1062, 1053, 1051, 1067, 1080, 1083, 1085, 1086, 1086, 1091, 1085, 1087, 1087, 1085, 1070, 1074, 1061, 1060, 1049]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1044, 1059, 1064, 1081, 1069, 1073, 1077, 1077, 1073, 1076, 1070, 1069, 1060, 1062, 1056, 1053, 1042, 1055, 1058, 1067, 1065, 1070, 1069, 1065, 1061, 1064, 1063, 1058, 1057, 1063, 1063, 1053, 1046, 1039, 1056, 1059, 1064, 1069, 1064, 1072, 1065, 1064, 1060, 1059, 1063, 1060, 1060, 1058, 1056, 1051, 1045, 1059, 1070, 1071, 1067, 1066, 1067, 1057, 1054, 1045, 1051, 1061, 1060, 1059, 1057, 1057, 1051, 1051, 1064, 1070, 1074, 1071, 1065, 1058, 1061, 1035, 1044, 1053, 1054, 1057, 1066, 1069, 1062, 1055, 1054, 1069, 1069, 1073, 1067, 1070, 1058, 1047, 1033, 1040, 1044, 1051, 1062, 1060, 1056, 1059, 1055, 1057, 1071, 1069, 1075, 1068, 1065, 1058, 1044, 1031, 1032, 1040, 1038, 1051, 1064, 1059, 1060, 1058, 1052, 1073, 1060, 1068, 1060, 1062, 1052, 1042, 1032, 1024, 1031, 1046, 1054, 1064, 1067, 1064, 1061, 1052, 1070, 1063, 1069, 1075, 1064, 1050, 1040, 1024, 1030, 1033, 1050, 1053, 1057, 1063, 1060, 1056, 1057, 1059, 1070, 1072, 1067, 1063, 1056, 1053, 1039, 1035, 1045, 1045, 1052, 1057, 1067, 1062, 1056, 1059, 1066, 1065, 1070, 1072, 1060, 1059, 1047, 1049, 1039, 1046, 1047, 1055, 1062, 1060, 1059, 1052, 1062, 1068, 1072, 1067, 1069, 1067, 1066, 1053, 1052, 1049, 1051, 1050, 1058, 1062, 1069, 1066, 1062, 1057, 1064, 1072, 1066, 1074, 1074, 1059, 1056, 1048, 1051, 1058, 1051, 1060, 1066, 1067, 1065, 1061, 1060, 1068, 1065, 1070, 1074, 1069, 1074, 1070, 1058, 1056, 1051, 1057, 1069, 1064, 1066, 1059, 1056, 1053, 1066, 1069, 1066, 1067, 1065, 1076, 1074, 1068, 1063, 1069, 1059, 1069, 1072, 1071, 1058, 1059, 1055, 1071, 1069, 1067, 1084, 1081, 1074, 1073, 1076, 1077, 1073, 1071, 1077, 1068, 1068, 1059, 1058, 1051, 1060, 1073, 1077, 1089, 1081, 1073, 1083, 1086, 1078, 1075, 1087, 1079, 1067, 1067, 1062, 1060, 1046]
| },
| "lsc_samples_blue": {
| "uCoeff": [1034, 1053, 1058, 1064, 1066, 1083, 1092, 1083, 1093, 1084, 1073, 1069, 1061, 1061, 1058, 1050, 1024, 1048, 1057, 1064, 1077, 1081, 1087, 1093, 1076, 1074, 1083, 1081, 1077, 1070, 1068, 1059, 1039, 1031, 1047, 1058, 1075, 1076, 1076, 1090, 1083, 1084, 1069, 1074, 1079, 1075, 1073, 1071, 1060, 1047, 1040, 1046, 1060, 1079, 1077, 1078, 1089, 1091, 1074, 1076, 1074, 1085, 1084, 1074, 1068, 1066, 1045, 1051, 1039, 1066, 1081, 1081, 1088, 1080, 1076, 1053, 1065, 1068, 1081, 1081, 1087, 1082, 1059, 1061, 1038, 1044, 1067, 1079, 1084, 1078, 1070, 1075, 1057, 1068, 1075, 1078, 1086, 1079, 1085, 1066, 1059, 1044, 1059, 1071, 1075, 1085, 1087, 1068, 1068, 1061, 1065, 1061, 1068, 1088, 1081, 1078, 1065, 1053, 1042, 1063, 1069, 1082, 1080, 1091, 1090, 1059, 1050, 1059, 1074, 1072, 1090, 1096, 1071, 1070, 1059, 1046, 1063, 1075, 1093, 1096, 1091, 1068, 1074, 1073, 1052, 1061, 1080, 1088, 1081, 1083, 1067, 1064, 1046, 1070, 1069, 1088, 1096, 1092, 1092, 1063, 1072, 1069, 1078, 1073, 1076, 1092, 1070, 1073, 1064, 1047, 1065, 1071, 1083, 1087, 1081, 1087, 1079, 1075, 1057, 1075, 1074, 1071, 1088, 1089, 1073, 1060, 1056, 1056, 1070, 1079, 1093, 1091, 1097, 1077, 1077, 1074, 1083, 1072, 1075, 1086, 1081, 1069, 1064, 1058, 1058, 1062, 1082, 1090, 1091, 1077, 1091, 1076, 1085, 1081, 1073, 1084, 1079, 1072, 1071, 1063, 1052, 1055, 1072, 1081, 1073, 1087, 1085, 1086, 1079, 1072, 1072, 1074, 1075, 1078, 1085, 1062, 1062, 1039, 1046, 1062, 1075, 1072, 1081, 1087, 1093, 1086, 1088, 1088, 1087, 1085, 1086, 1084, 1060, 1056, 1047, 1053, 1066, 1077, 1090, 1084, 1091, 1095, 1086, 1089, 1101, 1086, 1095, 1087, 1084, 1065, 1051, 1041, 1042, 1051, 1054, 1072, 1080, 1093, 1092, 1083, 1090, 1086, 1104, 1090, 1068, 1065, 1048, 1060, 1037]
| }
| }, {
| "name": "3840x2160_GRAY_0",
| "resolution": "3840x2160",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }],
| "tableAll_len": 15
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lumaDetect": {
| "luma_detect_en": 1,
| "fixed_times": 0,
| "mutation_threshold": 0.0002,
| "mutation_threshold_level2": 1000
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
| }
| },
| "ccm_calib": {
| "control": {
| "enable": 1,
| "mode": "CALIB_CCM_MODE_AUTO",
| "wbgain_tolerance": 0.1,
| "gain_tolerance": 0.2
| },
| "lumaCCM": {
| "rgb2y_para": [38, 75, 15],
| "low_bound_pos_bit": 8,
| "y_alpha_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
| "gain_alphaScale_curve": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "scale": [1, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [1.2892, 2.7464],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.9907, 2.3234],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "D50",
| "awbGain": [1.9739, 1.653],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "D65",
| "awbGain": [2.2593, 1.3905],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "D75",
| "awbGain": [2.4402, 1.2673],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "HZ",
| "awbGain": [1.0571, 3.2473],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.711, 2.3193],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [100, 100, 90, 50]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.5517, -0.2577, -0.294, -0.5375, 1.7298, -0.1923, 0.0816, -1.1129, 2.0313],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.1895, 0.0194, -0.2089, -0.3566, 1.4912, -0.1346, 0.1007, -0.6119, 1.5112],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [1.8154, -0.6833, -0.1321, -0.4269, 1.5162, -0.0894, 0.0823, -0.6837, 1.6014],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.422, -0.3483, -0.0737, -0.2373, 1.2801, -0.0428, 0.1385, -0.3472, 1.2086],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [1.6109, -0.4352, -0.1757, -0.3325, 1.5976, -0.2651, 0.036, -0.5942, 1.5581],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.2678, -0.1304, -0.1374, -0.1704, 1.3747, -0.2043, 0.1016, -0.2466, 1.145],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.6368, -0.4628, -0.174, -0.2881, 1.5826, -0.2946, 0.0333, -0.5176, 1.4843],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.2956, -0.1529, -0.1427, -0.1287, 1.3614, -0.2327, 0.1083, -0.1921, 1.0838],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.7295, -0.5284, -0.2011, -0.2854, 1.5988, -0.3134, 0.0089, -0.4495, 1.4405],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.3711, -0.2021, -0.169, -0.1199, 1.3728, -0.2529, 0.0971, -0.1422, 1.0452],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.548, -0.1419, -0.4061, -0.6736, 1.8221, -0.1485, -0.11, -1.2847, 2.3947],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.16, 0.123, -0.283, -0.484, 1.5775, -0.0935, -0.0679, -0.721, 1.7889],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.5877, -0.4284, -0.1593, -0.4279, 1.5898, -0.1619, 0.0614, -0.7319, 1.6705],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.235, -0.1302, -0.1049, -0.2566, 1.3641, -0.1076, 0.1047, -0.3533, 1.2486],
| "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": [231, 210, 190, 173, 147, 131, 124, 123, 125, 126, 126, 123, 117, 109, 100, 93]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [337, 304, 273, 246, 202, 173, 158, 153, 153, 155, 154, 149, 139, 125, 108, 94]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [566, 497, 433, 375, 279, 214, 187, 190, 206, 220, 226, 220, 201, 169, 128, 94]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [792, 693, 602, 519, 381, 291, 255, 263, 288, 310, 318, 307, 278, 228, 165, 114]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [812, 735, 666, 604, 506, 440, 403, 389, 385, 381, 372, 353, 321, 279, 232, 196]
| }, {
| "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": [231, 210, 190, 173, 147, 131, 124, 123, 125, 126, 126, 123, 117, 109, 100, 93]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [337, 304, 273, 246, 202, 173, 158, 153, 153, 155, 154, 149, 139, 125, 108, 94]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [566, 497, 433, 375, 279, 214, 187, 190, 206, 220, 226, 220, 201, 169, 128, 94]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [792, 693, 602, 519, 381, 291, 255, 263, 288, 310, 318, 307, 278, 228, 165, 114]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [812, 735, 666, 604, 506, 440, 403, 389, 385, 381, 372, 353, 321, 279, 232, 196]
| }, {
| "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.1,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.15,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.15
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.2
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.25,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.25
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.3
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.35
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.4
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.5
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.6
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "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.1,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.15,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.15
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.2
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.25,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.25
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.3
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.35
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.4
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.5
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.6
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "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.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 200,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 400,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 800,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "iso": 3200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 6400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 12800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 25600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 51200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 102400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 204800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 200,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 400,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 800,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 1600,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.5
| }, {
| "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": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-2.00694e-12, 1.82105e-08, -5.73723e-05, 0.0690463, 0.771646],
| "ynr_ci_l": 0.301509,
| "ynr_ci_h": 0.197583
| }, {
| "iso": 100,
| "sigma_curve": [-1.30328e-12, 1.22721e-08, -4.00832e-05, 0.047966, 7.53788],
| "ynr_ci_l": 0.278036,
| "ynr_ci_h": 0.184293
| }, {
| "iso": 200,
| "sigma_curve": [-2.64126e-12, 2.49995e-08, -8.24017e-05, 0.0996481, 11.5546],
| "ynr_ci_l": 0.242577,
| "ynr_ci_h": 0.162835
| }, {
| "iso": 400,
| "sigma_curve": [-3.87595e-12, 3.65718e-08, -0.000119668, 0.142179, 17.2097],
| "ynr_ci_l": 0.240342,
| "ynr_ci_h": 0.155515
| }, {
| "iso": 800,
| "sigma_curve": [-4.83761e-12, 4.50946e-08, -0.000144416, 0.161732, 39.2668],
| "ynr_ci_l": 0.244509,
| "ynr_ci_h": 0.149142
| }, {
| "iso": 1600,
| "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": 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": [-2.00694e-12, 1.82105e-08, -5.73723e-05, 0.0690463, 0.771646],
| "ynr_ci_l": 0.301509,
| "ynr_ci_h": 0.197583
| }, {
| "iso": 100,
| "sigma_curve": [-1.30328e-12, 1.22721e-08, -4.00832e-05, 0.047966, 7.53788],
| "ynr_ci_l": 0.278036,
| "ynr_ci_h": 0.184293
| }, {
| "iso": 200,
| "sigma_curve": [-2.64126e-12, 2.49995e-08, -8.24017e-05, 0.0996481, 11.5546],
| "ynr_ci_l": 0.242577,
| "ynr_ci_h": 0.162835
| }, {
| "iso": 400,
| "sigma_curve": [-3.87595e-12, 3.65718e-08, -0.000119668, 0.142179, 17.2097],
| "ynr_ci_l": 0.240342,
| "ynr_ci_h": 0.155515
| }, {
| "iso": 800,
| "sigma_curve": [-4.83761e-12, 4.50946e-08, -0.000144416, 0.161732, 39.2668],
| "ynr_ci_l": 0.244509,
| "ynr_ci_h": 0.149142
| }, {
| "iso": 1600,
| "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": 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": 32,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.25,
| "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.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.5,
| "low_peak_supress": 0.55,
| "low_edge_adj_thresh": 32,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "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.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 30,
| "low_center_weight": 0.55,
| "low_dist_adj": 7,
| "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.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": 0.8,
| "low_peak_supress": 0.45,
| "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.3,
| "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": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 1,
| "low_peak_supress": 0.4,
| "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.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": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 22,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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
| }, {
| "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": 10,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.55,
| "low_edge_adj_thresh": 32,
| "low_center_weight": 0.6,
| "low_dist_adj": 9,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.85,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 30,
| "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.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 0.8,
| "low_peak_supress": 0.45,
| "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.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.7,
| "hi_edge_thed": 90,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 1,
| "low_peak_supress": 0.4,
| "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.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 22,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.35,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 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.2,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 0.2,
| "sharp_ratio": 15,
| "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": 14,
| "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": 13,
| "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": 12,
| "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": 11,
| "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": 10,
| "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": 8,
| "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": 6,
| "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": 4,
| "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": 3,
| "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
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.3,
| "pbf_add": 3,
| "gaus_ratio": 0.3,
| "sharp_ratio": 14,
| "bf_gain": 0.3,
| "bf_ratio": 0.3,
| "bf_add": 3,
| "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.3,
| "pbf_add": 4,
| "gaus_ratio": 0.3,
| "sharp_ratio": 14,
| "bf_gain": 0.4,
| "bf_ratio": 0.3,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [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.5,
| "pbf_ratio": 0.4,
| "pbf_add": 5,
| "gaus_ratio": 0.4,
| "sharp_ratio": 13,
| "bf_gain": 0.5,
| "bf_ratio": 0.4,
| "bf_add": 5,
| "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.6,
| "pbf_ratio": 0.4,
| "pbf_add": 6,
| "gaus_ratio": 0.4,
| "sharp_ratio": 13,
| "bf_gain": 0.6,
| "bf_ratio": 0.4,
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 8,
| "gaus_ratio": 0.5,
| "sharp_ratio": 12,
| "bf_gain": 0.8,
| "bf_ratio": 0.5,
| "bf_add": 8,
| "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,
| "pbf_ratio": 0.6,
| "pbf_add": 10,
| "gaus_ratio": 0.6,
| "sharp_ratio": 10,
| "bf_gain": 1,
| "bf_ratio": 0.6,
| "bf_add": 10,
| "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": 8,
| "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": 6,
| "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": 4,
| "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": 3,
| "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
| }
| }
| }
|
|