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
| /*
| * adehaze_head.h
| *
| * Copyright (c) 2021 Rockchip Corporation
| *
| * Licensed under the Apache License, Version 2.0 (the "License");
| * you may not use this file except in compliance with the License.
| * You may obtain a copy of the License at
| *
| * http://www.apache.org/licenses/LICENSE-2.0
| *
| * Unless required by applicable law or agreed to in writing, software
| * distributed under the License is distributed on an "AS IS" BASIS,
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| * See the License for the specific language governing permissions and
| * limitations under the License.
| *
| */
|
| #ifndef __CALIBDBV2_ADEHAZE_HEAD_H__
| #define __CALIBDBV2_ADEHAZE_HEAD_H__
|
| #include "rk_aiq_comm.h"
|
| RKAIQ_BEGIN_DECLARE
|
| #define CALIBDB_ADEHAZE_ENHANCE_CURVE_KNOTS_NUM 17
| #define ISP3X_DHAZ_SIGMA_IDX_NUM 15
| #define ISP3X_DHAZ_SIGMA_LUT_NUM 17
|
|
| typedef struct DehazeData_s {
| // M4_ARRAY_DESC("ISO", "f32", M4_SIZE(1,100), M4_RANGE(0,10000000), "50",M4_DIGIT(4), M4_DYNAMIC(1))
| float* ISO;
| int ISO_len;
| // M4_ARRAY_DESC("dc_min_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "64",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_min_th;
| int dc_min_th_len;
| // M4_ARRAY_DESC("dc_max_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "192",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_max_th;
| int dc_max_th_len;
| // M4_ARRAY_DESC("yhist_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "249",M4_DIGIT(4), M4_DYNAMIC(1))
| float* yhist_th;
| int yhist_th_len;
| // M4_ARRAY_DESC("yblk_th", "f32", M4_SIZE(1,100), M4_RANGE(0,512), "0.002",M4_DIGIT(4), M4_DYNAMIC(1))
| float* yblk_th;
| int yblk_th_len;
| // M4_ARRAY_DESC("dark_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "250",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dark_th;
| int dark_th_len;
| // M4_ARRAY_DESC("bright_min", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "180",M4_DIGIT(4), M4_DYNAMIC(1))
| float* bright_min;
| int bright_min_len;
| // M4_ARRAY_DESC("bright_max", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "240",M4_DIGIT(4), M4_DYNAMIC(1))
| float* bright_max;
| int bright_max_len;
| // M4_ARRAY_DESC("wt_max", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.9",M4_DIGIT(4), M4_DYNAMIC(1))
| float* wt_max;
| int wt_max_len;
| // M4_ARRAY_DESC("air_min", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "200",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_min;
| int air_min_len;
| // M4_ARRAY_DESC("air_max", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "250",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_max;
| int air_max_len;
| // M4_ARRAY_DESC("tmax_base", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "125",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_base;
| int tmax_base_len;
| // M4_ARRAY_DESC("tmax_off", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_off;
| int tmax_off_len;
| // M4_ARRAY_DESC("tmax_max", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.8",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_max;
| int tmax_max_len;
| // M4_ARRAY_DESC("cfg_wt", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.8",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_wt;
| int cfg_wt_len;
| // M4_ARRAY_DESC("cfg_air", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "210",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_air;
| int cfg_air_len;
| // M4_ARRAY_DESC("cfg_tmax", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_tmax;
| int cfg_tmax_len;
| // M4_ARRAY_DESC("dc_thed", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_thed;
| int dc_thed_len;
| // M4_ARRAY_DESC("dc_weitcur", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_weitcur;
| int dc_weitcur_len;
| // M4_ARRAY_DESC("air_thed", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_thed;
| int air_thed_len;
| // M4_ARRAY_DESC("air_weitcur", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.14",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_weitcur;
| int air_weitcur_len;
| } DehazeData_t;
|
| typedef struct Dehaze_Setting_V20_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_NUMBER_DESC("stab_fnum", "f32", M4_RANGE(0,31), "8.0", M4_DIGIT(4))
| float stab_fnum;
| // M4_NUMBER_DESC("sigma", "f32", M4_RANGE(0,255), "6.0", M4_DIGIT(4))
| float sigma;
| // M4_NUMBER_DESC("wt_sigma", "f32", M4_RANGE(0,256), "8.0", M4_DIGIT(4))
| float wt_sigma;
| // M4_NUMBER_DESC("air_sigma", "f32", M4_RANGE(0,255), "120.0", M4_DIGIT(4))
| float air_sigma;
| // M4_NUMBER_DESC("tmax_sigma", "f32", M4_RANGE(0,1), "0.0100", M4_DIGIT(4))
| float tmax_sigma;
| // M4_ARRAY_TABLE_DESC("DehazeData", "array_table_ui", "none")
| DehazeData_t DehazeData;
| } Dehaze_Setting_V20_t;
|
| typedef struct EnhanceData_s {
| // M4_ARRAY_DESC("ISO", "f32", M4_SIZE(1,100), M4_RANGE(0,10000000), "50",M4_DIGIT(4), M4_DYNAMIC(1))
| float* ISO;
| int ISO_len;
| // M4_ARRAY_DESC("enhance_value", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* enhance_value;
| int enhance_value_len;
| } EnhanceData_t;
|
| typedef struct Enhance_Setting_V20_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_ARRAY_TABLE_DESC("EnhanceData", "array_table_ui", "none")
| EnhanceData_t EnhanceData;
| } Enhance_Setting_V20_t;
|
| typedef struct HistData_s {
| // M4_ARRAY_DESC("ISO", "f32", M4_SIZE(1,100), M4_RANGE(0,10000000), "50",M4_DIGIT(4), M4_DYNAMIC(1))
| float* ISO;
| int ISO_len;
| // M4_ARRAY_DESC("hist_gratio", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_gratio;
| int hist_gratio_len;
| // M4_ARRAY_DESC("hist_th_off", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "64",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_th_off;
| int hist_th_off_len;
| // M4_ARRAY_DESC("hist_k", "f32", M4_SIZE(1,100), M4_RANGE(0,8), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_k;
| int hist_k_len;
| // M4_ARRAY_DESC("hist_min", "f32", M4_SIZE(1,100), M4_RANGE(0,2), "0.016",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_min;
| int hist_min_len;
| // M4_ARRAY_DESC("hist_scale", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "0.09",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_scale;
| int hist_scale_len;
| // M4_ARRAY_DESC("cfg_gratio", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_gratio;
| int cfg_gratio_len;
| } HistData_t;
|
| typedef struct Hist_setting_V20_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_BOOL_DESC("hist_para_en", "1")
| bool hist_para_en;
| // M4_BOOL_DESC("hist_channel", "1")
| bool hist_channel;
| // M4_ARRAY_TABLE_DESC("HistData", "array_table_ui","none")
| HistData_t HistData;
| } Hist_setting_V20_t;
|
| typedef struct CalibDbDehazeV20_s {
| // M4_BOOL_DESC("Enable", "1")
| bool Enable;
| // M4_NUMBER_DESC("cfg_alpha", "f32", M4_RANGE(0,1), "1", M4_DIGIT(4))
| float cfg_alpha;
| // M4_NUMBER_DESC("ByPassThr", "f32", M4_RANGE(0,1), "0", M4_DIGIT(4))
| float ByPassThr;
| // M4_STRUCT_DESC("dehaze_setting", "normal_ui_style")
| Dehaze_Setting_V20_t dehaze_setting;
| // M4_STRUCT_DESC("enhance_setting", "normal_ui_style")
| Enhance_Setting_V20_t enhance_setting;
| // M4_STRUCT_DESC("hist_setting", "normal_ui_style")
| Hist_setting_V20_t hist_setting;
| } CalibDbDehazeV20_t;
|
| typedef struct CalibDbV2_dehaze_V20_s {
| // M4_STRUCT_DESC("DehazeTuningPara", "normal_ui_style")
| CalibDbDehazeV20_t DehazeTuningPara;
| } CalibDbV2_dehaze_V20_t;
|
| typedef struct DehazeDataV21_s {
| // M4_ARRAY_DESC("EnvLv", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0",M4_DIGIT(4), M4_DYNAMIC(1))
| float* EnvLv;
| int EnvLv_len;
| // M4_ARRAY_DESC("dc_min_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "64",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_min_th;
| int dc_min_th_len;
| // M4_ARRAY_DESC("dc_max_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "192",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_max_th;
| int dc_max_th_len;
| // M4_ARRAY_DESC("yhist_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "249",M4_DIGIT(4), M4_DYNAMIC(1))
| float* yhist_th;
| int yhist_th_len;
| // M4_ARRAY_DESC("yblk_th", "f32", M4_SIZE(1,100), M4_RANGE(0,512), "0.002",M4_DIGIT(4), M4_DYNAMIC(1))
| float* yblk_th;
| int yblk_th_len;
| // M4_ARRAY_DESC("dark_th", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "250",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dark_th;
| int dark_th_len;
| // M4_ARRAY_DESC("bright_min", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "180",M4_DIGIT(4), M4_DYNAMIC(1))
| float* bright_min;
| int bright_min_len;
| // M4_ARRAY_DESC("bright_max", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "240",M4_DIGIT(4), M4_DYNAMIC(1))
| float* bright_max;
| int bright_max_len;
| // M4_ARRAY_DESC("wt_max", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.9",M4_DIGIT(4), M4_DYNAMIC(1))
| float* wt_max;
| int wt_max_len;
| // M4_ARRAY_DESC("air_min", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "200",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_min;
| int air_min_len;
| // M4_ARRAY_DESC("air_max", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "250",M4_DIGIT(4), M4_DYNAMIC(1))
| float* air_max;
| int air_max_len;
| // M4_ARRAY_DESC("tmax_base", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "125",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_base;
| int tmax_base_len;
| // M4_ARRAY_DESC("tmax_off", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_off;
| int tmax_off_len;
| // M4_ARRAY_DESC("tmax_max", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.8",M4_DIGIT(4), M4_DYNAMIC(1))
| float* tmax_max;
| int tmax_max_len;
| // M4_ARRAY_DESC("cfg_wt", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.8",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_wt;
| int cfg_wt_len;
| // M4_ARRAY_DESC("cfg_air", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "210",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_air;
| int cfg_air_len;
| // M4_ARRAY_DESC("cfg_tmax", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_tmax;
| int cfg_tmax_len;
| // M4_ARRAY_DESC("dc_weitcur", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* dc_weitcur;
| int dc_weitcur_len;
| // M4_ARRAY_DESC("bf_weight", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.5",M4_DIGIT(4), M4_DYNAMIC(1))
| float* bf_weight;
| int bf_weight_len;
| // M4_ARRAY_DESC("range_sigma", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.04",M4_DIGIT(4), M4_DYNAMIC(1))
| float* range_sigma;
| int range_sigma_len;
| // M4_ARRAY_DESC("space_sigma_pre", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.4",M4_DIGIT(4), M4_DYNAMIC(1))
| float* space_sigma_pre;
| int space_sigma_pre_len;
| // M4_ARRAY_DESC("space_sigma_cur", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0.8",M4_DIGIT(4), M4_DYNAMIC(1))
| float* space_sigma_cur;
| int space_sigma_cur_len;
| } DehazeDataV21_t;
|
| typedef struct Dehaze_Setting_V21_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_BOOL_DESC("air_lc_en", "1")
| bool air_lc_en;
| // M4_NUMBER_DESC("stab_fnum", "f32", M4_RANGE(0,31), "8.0", M4_DIGIT(4))
| float stab_fnum;
| // M4_NUMBER_DESC("sigma", "f32", M4_RANGE(0,255), "6.0", M4_DIGIT(4))
| float sigma;
| // M4_NUMBER_DESC("wt_sigma", "f32", M4_RANGE(0,256), "8.0", M4_DIGIT(4))
| float wt_sigma;
| // M4_NUMBER_DESC("air_sigma", "f32", M4_RANGE(0,255), "120.0", M4_DIGIT(4))
| float air_sigma;
| // M4_NUMBER_DESC("tmax_sigma", "f32", M4_RANGE(0,1), "0.0100", M4_DIGIT(4))
| float tmax_sigma;
| // M4_NUMBER_DESC("pre_wet", "f32", M4_RANGE(0,1), "0.0100", M4_DIGIT(4))
| float pre_wet;
| // M4_ARRAY_TABLE_DESC("DehazeData", "array_table_ui", "none")
| DehazeDataV21_t DehazeData;
| } Dehaze_Setting_V21_t;
|
| typedef struct EnhanceDataV21_s {
| // M4_ARRAY_DESC("EnvLv", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0",M4_DIGIT(4), M4_DYNAMIC(1))
| float* EnvLv;
| int EnvLv_len;
| // M4_ARRAY_DESC("enhance_value", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* enhance_value;
| int enhance_value_len;
| // M4_ARRAY_DESC("enhance_chroma", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "1",M4_DIGIT(4), M4_DYNAMIC(1))
| float* enhance_chroma;
| int enhance_chroma_len;
| } EnhanceDataV21_t;
|
| typedef struct Enhance_Setting_V21_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_ARRAY_DESC("enhance_curve", "f32", M4_SIZE(1,17), M4_RANGE(0, 1024), "[0,64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1023]", M4_DIGIT(0), M4_DYNAMIC(0))
| float enhance_curve[CALIBDB_ADEHAZE_ENHANCE_CURVE_KNOTS_NUM];
| // M4_ARRAY_TABLE_DESC("EnhanceData", "array_table_ui", "none")
| EnhanceDataV21_t EnhanceData;
| } Enhance_Setting_V21_t;
|
| typedef struct HistDataV21_s {
| // M4_ARRAY_DESC("EnvLv", "f32", M4_SIZE(1,100), M4_RANGE(0,1), "0",M4_DIGIT(4), M4_DYNAMIC(1))
| float* EnvLv;
| int EnvLv_len;
| // M4_ARRAY_DESC("hist_gratio", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_gratio;
| int hist_gratio_len;
| // M4_ARRAY_DESC("hist_th_off", "f32", M4_SIZE(1,100), M4_RANGE(0,255), "64",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_th_off;
| int hist_th_off_len;
| // M4_ARRAY_DESC("hist_k", "f32", M4_SIZE(1,100), M4_RANGE(0,8), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_k;
| int hist_k_len;
| // M4_ARRAY_DESC("hist_min", "f32", M4_SIZE(1,100), M4_RANGE(0,2), "0.016",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_min;
| int hist_min_len;
| // M4_ARRAY_DESC("hist_scale", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "0.09",M4_DIGIT(4), M4_DYNAMIC(1))
| float* hist_scale;
| int hist_scale_len;
| // M4_ARRAY_DESC("cfg_gratio", "f32", M4_SIZE(1,100), M4_RANGE(0,32), "2",M4_DIGIT(4), M4_DYNAMIC(1))
| float* cfg_gratio;
| int cfg_gratio_len;
| } HistDataV21_t;
|
| typedef struct Hist_setting_V21_s {
| // M4_BOOL_DESC("en", "1")
| bool en;
| // M4_BOOL_DESC("hist_para_en", "1")
| bool hist_para_en;
| // M4_ARRAY_TABLE_DESC("HistData", "array_table_ui","none")
| HistDataV21_t HistData;
| } Hist_setting_V21_t;
|
| typedef struct CalibDbDehazeV21_s {
| // M4_BOOL_DESC("en", "1")
| bool Enable;
| // M4_NUMBER_DESC("cfg_alpha", "f32", M4_RANGE(0,1), "1", M4_DIGIT(4))
| float cfg_alpha;
| // M4_NUMBER_DESC("ByPassThr", "f32", M4_RANGE(0,1), "0", M4_DIGIT(4))
| float ByPassThr;
| // M4_STRUCT_DESC("dehaze_setting", "normal_ui_style")
| Dehaze_Setting_V21_t dehaze_setting;
| // M4_STRUCT_DESC("enhance_setting", "normal_ui_style")
| Enhance_Setting_V21_t enhance_setting;
| // M4_STRUCT_DESC("hist_setting", "normal_ui_style")
| Hist_setting_V21_t hist_setting;
| } CalibDbDehazeV21_t;
|
| typedef struct CalibDbV2_dehaze_V21_s {
| // M4_STRUCT_DESC("DehazeTuningPara", "normal_ui_style")
| CalibDbDehazeV21_t DehazeTuningPara;
| } CalibDbV2_dehaze_V21_t;
|
| typedef struct CalibDbV2_dehaze_V30_s {
| // M4_STRUCT_DESC("DehazeTuningPara", "normal_ui_style")
| CalibDbDehazeV21_t DehazeTuningPara;
| } CalibDbV2_dehaze_V30_t;
|
|
| RKAIQ_END_DECLARE
|
| #endif
|
|