1 /* 2 * rk_aiq_types_camgroup_acnr_algo_prvt.h 3 4 * for rockchip v30.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 v30.0.0*/ 22 23 #ifndef __RK_AIQ_CAMGROUP_ACNRV30_ALGO_PRVT_H__ 24 #define __RK_AIQ_CAMGROUP_ACNRV30_ALGO_PRVT_H__ 25 26 #include "acnrV30/rk_aiq_types_acnr_algo_prvt_v30.h" 27 28 typedef enum CalibDbV2_CamGroup_AcnrV30_Method_e { 29 CalibDbV2_CAMGROUP_ACNRV30_METHOD_MIN = 0, 30 CalibDbV2_CAMGROUP_ACNRV30_METHOD_MEAN,/*config each camera with same para, para is got by mean stas of all cameras*/ 31 CalibDbV2_CAMGROUP_ACNRV30_METHOD_MAX, /*config each camera with diff para, each para is got by stats of tha camera*/ 32 } CalibDbV2_CamGroup_AcnrV30_Method_t; 33 34 35 typedef struct CalibDbV2_CamGroup_AcnrV30_s { 36 CalibDbV2_CamGroup_AcnrV30_Method_t groupMethod; 37 // add more para for surround view 38 } CalibDbV2_CamGroup_AcnrV30_t; 39 40 41 typedef struct CamGroup_AcnrV30_Contex_s { 42 Acnr_Context_V30_t* acnr_contex_v30; 43 CalibDbV2_CamGroup_AcnrV30_t group_CalibV30; 44 int camera_Num; 45 46 } CamGroup_AcnrV30_Contex_t; 47 48 49 50 #endif 51 52