1 /*
2 * rk_aiq_types_camgroup_abayer2dnrV23_algo_prvt.h
3 
4 * for rockchip v2.0.0
5 *
6 *  Copyright (c) 2019 Rockchip Corporation
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 *      http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 *
20 */
21 /* for rockchip v2.0.0*/
22 
23 #ifndef __RK_AIQ_CAMGROUP_ABAYERNRV23_ALGO_PRVT_H__
24 #define __RK_AIQ_CAMGROUP_ABAYERNRV23_ALGO_PRVT_H__
25 
26 #include "abayer2dnrV23/rk_aiq_types_abayer2dnr_algo_prvt_v23.h"
27 
28 typedef enum CalibDbV2_CamGroup_Abayer2dnrV23_Method_e {
29     CalibDbV2_CAMGROUP_ABAYER2DNRV23_METHOD_MIN = 0,
30     CalibDbV2_CAMGROUP_ABAYER2DNRV23_METHOD_MEAN,/*config each camera with same para, para is got by mean stas of all cameras*/
31     CalibDbV2_CAMGROUP_ABAYER2DNRV23_METHOD_MAX,   /*config each camera with diff para, each para is got by stats of tha camera*/
32 } CalibDbV2_CamGroup_Abayer2dnrV23_Method_t;
33 
34 
35 typedef struct CalibDbV2_CamGroup_Abayer2dnrV23_s {
36     CalibDbV2_CamGroup_Abayer2dnrV23_Method_t  groupMethod;
37     // add more para for surround view
38 } CalibDbV2_CamGroup_Abayer2dnrV23_t;
39 
40 
41 
42 typedef struct CamGroup_Abayer2dnrV23_Contex_s {
43     Abayer2dnr_Context_V23_t* abayer2dnr_contex_v23;
44     CalibDbV2_CamGroup_Abayer2dnrV23_t group_CalibV23;
45     int camera_Num;
46 
47 } CamGroup_Abayer2dnrV23_Contex_t;
48 
49 
50 
51 #endif
52 
53