Camera QML Type

An interface for camera settings related to focus and zoom. More...

Import Statement: import QtMultimedia
Instantiates: QCamera

Properties

Signals

Methods

Detailed Description

The Camera element can be used within a CaptureSession for video recording and image taking.

You can use MediaDevices to list available cameras and choose which one to use.

MediaDevices {
    id: mediaDevices
}
CaptureSession {
    camera: Camera {
        cameraDevice: mediaDevices.defaultVideoInput
    }
}

On hardware that supports it, QCamera lets you adjust the focus and zoom. This also includes functionality such as a "Macro" mode for close up work (e.g. reading barcodes, or recognizing letters), or "touch to focus" - indicating an interesting area of the image for the hardware to attempt to focus on.

Item {
    width: 640
    height: 360

    CaptureSession {
        camera: Camera {
            id: camera

            focusMode: Camera.FocusModeAutoNear
            customFocusPoint: Qt.point(0.2, 0.2) // Focus relative to top-left corner
        }
        videoOutput: videoOutput
    }

    VideoOutput {
        id: videoOutput
        anchors.fill: parent
    }
}

The minimumZoomFactor and maximumZoomFactor properties provide the range of supported zoom factors. The zoomFactor property allows changing the zoom factor.

Camera {
    zoomFactor: maximumZoomFactor // zoom in as much as possible
}

After capturing the raw data for a camera frame, the camera hardware and software performs various image processing tasks to produce the final image. This includes compensating for ambient light color, reducing noise, as well as making some other adjustments to the image.

You can control many of these processing steps through the Camera properties. For example, you can set the white balance (or color temperature) used for processing images:

Camera {
    whiteBalanceMode: Camera.WhiteBalanceManual
    colorTemperature: 5600
}

For more information on image processing of camera frames, see Camera Image Processing.

See the camera overview for more information.

Property Documentation

active : bool

Describes whether the camera is currently active.


cameraDevice : cameraDevice

Gets or sets the currently active camera device.


cameraFormat : cameraFormat

Gets or sets the currently active camera format.

Note: When using the FFMPEG backend on an Android target device if you request YUV420P format, you will receive either a fully planar 4:2:0 YUV420P or a semi-planar NV12/NV21. This depends on the codec implemented by the device OEM.

See also cameraDevice::videoFormats.


customFocusPoint : point

This property holds the position of custom focus point, in relative frame coordinates. This means that QPointF(0,0) points to the top-left corner of the frame, and QPointF(0.5,0.5) points to the center of the frame.

Custom focus point is used only in FocusPointCustom focus mode.

You can check whether custom focus points are supported by querying supportedFeatures() with the Feature.CustomFocusPoint flag.


[read-only] error : enumeration

Returns the error state of the camera.

See also QCamera::Error.


[read-only] errorString : string

Returns a human readable string describing a camera's error state.


exposureCompensation : real

Gets or sets the exposure compensation in EV units.

Exposure compensation property allows to adjust the automatically calculated exposure.


exposureMode : ExposureMode

The exposure mode being used.

See also QCamera::ExposureMode and Camera::isExposureModeSupported().


[read-only] exposureTime : float

Returns the Camera's exposure time in seconds.

See also manualExposureTime.


flashMode : enumeration

Gets or sets a certain flash mode if the camera has a flash.

ConstantDescription
Camera.FlashOffFlash is Off.
Camera.FlashOnFlash is On.
Camera.FlashAutoAutomatic flash.

See also isFlashModeSupported and isFlashReady.


[read-only] flashReady : bool

Indicates if the flash is charged and ready to use.


focusDistance : float

This property return an approximate focus distance of the camera. The value reported is between 0 and 1, 0 being the closest possible focus distance, 1 being as far away as possible. Note that 1 is often, but not always infinity.

Setting the focus distance will be ignored unless the focus mode is set to FocusModeManual.


focusMode : enumeration

This property holds the current camera focus mode.

Note: In automatic focusing modes and where supported, the focusPoint property provides information and control over the area of the image that is being focused.

ConstantDescription
Camera.FocusModeAutoContinuous auto focus mode.
Camera.FocusModeAutoNearContinuous auto focus, preferring objects near to the camera.
Camera.FocusModeAutoFarContinuous auto focus, preferring objects far away from the camera.
Camera.FocusModeHyperfocalFocus to hyperfocal distance, with the maximum depth of field achieved. All objects at distances from half of this distance out to infinity will be acceptably sharp.
Camera.FocusModeInfinityFocus strictly to infinity.
Camera.FocusModeManualManual or fixed focus mode.

If a certain focus mode is not supported, setting it will have no effect.

See also isFocusModeSupported.


[read-only] focusPoint : point

Returns the point currently used by the auto focus system to focus onto.


[read-only] isoSensitivity : int

Describes the ISO sensitivity currently used by the camera.


manualExposureTime : real

Gets or sets a manual exposure time.

Setting this property to -1 (the default) means that the camera automatically determines the exposure time.


manualIsoSensitivity : int

Describes a manually set ISO sensitivity

Setting this property to -1 (the default), implies that the camera automatically adjusts the ISO sensitivity.


[read-only] maximumZoomFactor : real

This property holds the maximum zoom factor supported.

This will be 1.0 on cameras that do not support zooming.


[read-only] minimumZoomFactor : real

This property holds the minimum zoom factor supported.

This will be 1.0 on cameras that do not support zooming.


[read-only] supportedFeatures : Features

Returns the features supported by this camera.

See also QCamera::Feature.


torchMode : Camera::TorchMode

Gets or sets the torch mode being used.

A torch is a continuous source of light. It can be used during video recording in low light conditions. Enabling torch mode will usually override any currently set flash mode.

See also QCamera::TorchMode, Camera::isTorchModeSupported(), and Camera::flashMode.


whiteBalanceMode : WhiteBalanceMode

Gets or sets the white balance mode being used.

See also QCamera::WhiteBalanceMode.


zoomFactor : real

Gets or sets the current zoom factor. Values will be clamped between minimumZoomFactor and maximumZoomFactor.


Signal Documentation

void errorOccurred(Camera::Error error, string errorString)

This signal is emitted when error state changes to error. A description of the error is provided as errorString.

Note: The corresponding handler is onErrorOccurred.


Method Documentation

colorTemperature()

Gets or sets the current color temperature.

Setting a color temperature will only have an effect if WhiteBalanceManual is supported. In this case, setting a temperature greater 0 will automatically set the white balance mode to WhiteBalanceManual. Setting the temperature to 0 will reset the white balance mode to WhiteBalanceAuto.


bool isExposureModeSupported(ExposureMode mode)

Returns true if the exposure mode is supported.


bool isFlashModeSupported(FlashMode mode)

Returns true if the flash mode is supported.


bool isFlashReady()

Returns true if flash is charged.


bool isFocusModeSupported(FocusMode mode)

Returns true if the focus mode is supported by the camera.


bool isTorchModeSupported(TorchMode mode)

Returns true if the torch mode is supported.


bool isWhiteBalanceModeSupported(WhiteBalanceMode mode)

Returns true if the white balance mode is supported.


void start()

Starts the camera.

Same as setting the active property to true.

If the camera can't be started for some reason, the errorOccurred() signal is emitted.


void stop()

Stops the camera. Same as setting the active property to false.


void zoomTo(factor, rate)

Zooms to a zoom factor factor using rate.

The rate is specified in powers of two per second. At a rate of 1 it would take 2 seconds to go from a zoom factor of 1 to 4.

Note: Using a specific rate is not supported on all cameras. If not supported, zooming will happen as fast as possible.


© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.