1 /*
2 * rk_aiq_types_camgroup_abayertnrV2_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_ABAYERTNRV2_ALGO_PRVT_H__
24 #define __RK_AIQ_CAMGROUP_ABAYERTNRV2_ALGO_PRVT_H__
25 
26 #include "abayertnr2/rk_aiq_types_abayertnr_algo_prvt_v2.h"
27 
28 
29 typedef enum CalibDbV2_CamGroup_AbayertnrV2_Method_e {
30     CalibDbV2_CAMGROUP_ABAYERTNRV2_METHOD_MIN = 0,
31     CalibDbV2_CAMGROUP_ABAYERTNRV2_METHOD_MEAN,/*config each camera with same para, para is got by mean stas of all cameras*/
32     CalibDbV2_CAMGROUP_ABAYERTNRV2_METHOD_MAX,   /*config each camera with diff para, each para is got by stats of tha camera*/
33 } CalibDbV2_CamGroup_AbayertnrV2_Method_t;
34 
35 
36 typedef struct CalibDbV2_CamGroup_AbayertnrV2_s {
37     CalibDbV2_CamGroup_AbayertnrV2_Method_t  groupMethod;
38     // add more para for surround view
39 } CalibDbV2_CamGroup_AbayertnrV2_t;
40 
41 
42 typedef struct CamGroup_AbayertnrV2_Contex_s {
43     Abayertnr_Context_V2_t* abayertnr_contex_v2;
44     CalibDbV2_CamGroup_AbayertnrV2_t group_CalibV2;
45     int camera_Num;
46 
47 } CamGroup_AbayertnrV2_Contex_t;
48 
49 
50 
51 #endif
52 
53