CAMERAWhiteBalance

Definition

#include <twl/camera.h>


typedef enum
{
    CAMERA_WHITE_BALANCE_AUTO,

    CAMERA_WHITE_BALANCE_3200K,
    CAMERA_WHITE_BALANCE_4150K,
    CAMERA_WHITE_BALANCE_5200K,
    CAMERA_WHITE_BALANCE_6000K,
    CAMERA_WHITE_BALANCE_7000K,

    CAMERA_WHITE_BALANCE_MAX,

    // alias
    CAMERA_WHITE_BALANCE_NORMAL                     = CAMERA_WHITE_BALANCE_AUTO,
    CAMERA_WHITE_BALANCE_TUNGSTEN                   = CAMERA_WHITE_BALANCE_3200K,
    CAMERA_WHITE_BALANCE_WHITE_FLUORESCENT_LIGHT    = CAMERA_WHITE_BALANCE_4150K,
    CAMERA_WHITE_BALANCE_DAYLIGHT                   = CAMERA_WHITE_BALANCE_5200K,
    CAMERA_WHITE_BALANCE_CLOUDY                     = CAMERA_WHITE_BALANCE_6000K,
    CAMERA_WHITE_BALANCE_HORIZON                    = CAMERA_WHITE_BALANCE_6000K,
    CAMERA_WHITE_BALANCE_SHADE                      = CAMERA_WHITE_BALANCE_7000K
}
CAMERAWhiteBalance;

Elements

CAMERA_WHITE_BALANCE_TUNGSTEN 3200K (Incandescent bulb)
CAMERA_WHITE_BALANCE_WHITE_FLUORESCENT_LIGHT 4150K (White fluorescent light)
CAMERA_WHITE_BALANCE_DAYLIGHT 5200K (Sunlight)
CAMERA_WHITE_BALANCE_CLOUDY 6000K (Cloudy)
CAMERA_WHITE_BALANCE_HORIZON 6000K (Sunset)
CAMERA_WHITE_BALANCE_SHADE 7000K (Shade)
CAMERA_WHITE_BALANCE_NORMAL Auto

Description

This is an enumerated type that is used to specify the camera's white balance.

Revision History

2008/03/13 Changed the definition.
2007/11/12 Initial version.


CONFIDENTIAL