Banuba SDK
Loading...
Searching...
No Matches
full_image_format.hpp
Go to the documentation of this file.
1/// \file
2/// \addtogroup Types
3/// @{
4///
5// AUTOGENERATED FILE - DO NOT MODIFY!
6// This file was generated by Djinni from types.djinni
7
8#pragma once
9
11#include <cstdint>
12#include <utility>
13
14namespace bnb { namespace interfaces {
15
16struct full_image_format final {
17 int32_t width;
18 int32_t height;
19 rotation orientation;
20
21 full_image_format(int32_t width_,
22 int32_t height_,
23 rotation orientation_)
24 : width(std::move(width_))
25 , height(std::move(height_))
26 , orientation(std::move(orientation_))
27 {}
28};
29
30} } // namespace bnb::interfaces
31/// @}
32
camera_orientation
camera image layout is top-left, 0 orientation is portrait, rotation is counterclockwise