1 /* 2 * rk_aiq_types_camgroup_asharp_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_ASHARP_ALGO_PRVT_H__ 24 #define __RK_AIQ_CAMGROUP_ASHARP_ALGO_PRVT_H__ 25 26 #include "asharp3/rk_aiq_types_asharp_algo_prvt_v3.h" 27 28 typedef enum CalibDbV2_CamGroup_AsharpV3_Method_e { 29 CalibDbV2_CAMGROUP_ASHARPV3_METHOD_MIN = 0, 30 CalibDbV2_CAMGROUP_ASHARPV3_METHOD_MEAN,/*config each camera with same para, para is got by mean stas of all cameras*/ 31 CalibDbV2_CAMGROUP_ASHARPV3_METHOD_MAX, /*config each camera with diff para, each para is got by stats of tha camera*/ 32 } CalibDbV2_CamGroup_AsharpV3_Method_t; 33 34 35 typedef struct CalibDbV2_CamGroup_AsharpV3_s { 36 CalibDbV2_CamGroup_AsharpV3_Method_t groupMethod; 37 // add more para for surround view 38 } CalibDbV2_CamGroup_AsharpV3_t; 39 40 41 typedef struct CamGroup_AsharpV3_Contex_s { 42 Asharp_Context_V3_t* asharp_contex_v3; 43 CalibDbV2_CamGroup_AsharpV3_t group_CalibV2; 44 int camera_Num; 45 46 } CamGroup_AsharpV3_Contex_t; 47 48 49 50 #endif 51 52