aewb.h

来自「dm270 source code」· C头文件 代码 · 共 70 行

H
70
字号
/*
    DM270 ARM Evaluation Software

    (c)Texas Instruments 2003
*/

#ifndef __AEWB_H__
#define __AEWB_H__

#include <system/h3a270.h>

typedef struct
{   
  AEWB_ConfigData *aewbConfig;		
  Uint16    AwbDefaultGainR;
  Uint16    AwbDefaultGainG;
  Uint16    AwbDefaultGainB;
  Uint16    AwbRThreshHigh;
  Uint16    AwbRThreshLow;
  Uint16    AwbBThreshHigh;
  Uint16    AwbBThreshLow;
  Uint16    AwbRTotalThreshHigh;
  Uint16    AwbRTotalThreshLow;
  Uint16    AwbBTotalThreshHigh;
  Uint16    AwbBTotalThreshLow;
  Int16		AwbRCompValuePreview;
  Int16		AwbBCompValuePreview;
  Int16		AwbRCompValueCapture;
  Int16		AwbBCompValueCapture;  
} awbprm_t;        

typedef struct
{   
  Uint16  	AeReferenceLevel;
  Uint16	AeCurrentShutterSpeed;
  Uint16    AeCoringLevel;
  Uint16	AeUpperLimiter;
  Uint16	AeInitialShutterSpeed;
} aeprm_t;        

typedef struct
{   
  Int16 	AeLevelPreview;	
  Int16  	AeLevelPostview;
  Int16		AeLevelCapture;
} aeret_t;         

typedef struct
{   
  Uint16 	AwbRgainPreview;	
  Uint16	AwbBgainPreview;
  Uint16 	AwbRgainCapture;	
  Uint16  	AwbGgainCapture;
  Uint16	AwbBgainCapture;
} awbret_t;         

extern aeret_t   aeret;
extern awbret_t  awbret;
extern awbprm_t  awbprm;
extern aeprm_t   aeprm;


void AEWBDemoInit() ;
void AEWBDemoStart() ;
void AEWBDemoStop() ;

#endif	/*	__AEWB_H__	*/


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?