IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QCameraFormat Class

The QCameraFormat class describes a video format supported by a camera device.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QCameraFormat Class

  • Header: QCameraFormat

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Multimedia)

    target_link_libraries(mytarget PRIVATE Qt6::Multimedia)

  • qmake: QT += multimedia

  • Group: QCameraFormat is part of multimedia, multimedia_camera

Detailed Description

QCameraFormat represents a certain video format supported by a camera device.

The format is a combination of a pixel format, resolution and a range of frame rates.

QCameraFormat objects can be queried from QCameraDevice to inspect the set of supported video formats.

See Also

Property Documentation

 

[read-only] maxFrameRate : const float

Returns the highest frame rate defined by this format.

In 6.2, the camera will always try to use the highest frame rate supported by a certain video format.

Access functions:

  • float maxFrameRate() const

[read-only] minFrameRate : const float

Returns the lowest frame rate defined by this format.

Access functions:

  • float minFrameRate() const

[read-only] pixelFormat : const QVideoFrameFormat::PixelFormat

Returns the pixel format.

Most commonly this is either QVideoFrameFormat::Format_Jpeg or QVideoFrameFormat::Format_YUVY but other formats could also be supported by the camera.

Access functions:

  • pixelFormat() const

See Also

[read-only] resolution : const QSize

Returns the resolution.

Access functions:

  • resolution() const

Member Function Documentation

 

QCameraFormat::QCameraFormat()

Constructs a null camera format.

See Also

See also isNull()

QCameraFormat::QCameraFormat(const QCameraFormat &other)

Copy constructs a camera format from the other format.

QCameraFormat::~QCameraFormat()

Destructs the camera format object.

bool QCameraFormat::isNull() const

Returns true if this is a default constructed QCameraFormat.

bool QCameraFormat::operator!=(const QCameraFormat &other) const

Returns false if the other format is equal to this camera format, otherwise true.

QCameraFormat &QCameraFormat::operator=(const QCameraFormat &other)

Assign other to this.

bool QCameraFormat::operator==(const QCameraFormat &other) const

Returns true if the other format is equal to this camera format, otherwise false.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+