CameraImageProcessingThe CameraImageProcessing type provides an interface for camera capture related settings More... Inherits QtObject Properties
Detailed DescriptionCameraImageProcessing provides control over post-processing done by the camera middleware, including white balance adjustments, contrast, saturation, sharpening, and denoising It should not be constructed separately, instead the imageProcessing property of a Camera should be used. import QtQuick 2.0 import QtMultimedia 5.0 Camera { id: camera imageProcessing { whiteBalanceMode: Camera.WhiteBalanceTungsten contrast: 0.66 saturation: -0.5 } } Property DocumentationImage contrast adjustment. Valid contrast adjustment values range between -1.0 and 1.0, with a default of 0. Adjustment of denoising applied to image. Valid denoising level values range between -1.0 for for denoising disabled, 0 for default denoising level and 1.0 for maximum denoising applied. The color temperature used when in manual white balance mode (WhiteBalanceManual). The units are Kelvin. See also whiteBalanceMode. Image saturation adjustment. Valid saturation adjustment values range between -1.0 and 1.0, the default is 0. Adjustment of sharpening level applied to image. Valid sharpening level values range between -1.0 for for sharpening disabled, 0 for default sharpening level and 1.0 for maximum sharpening applied.
See also manualWhiteBalance. |