Banuba SDK
detected_face.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 
10 #include <cstdint>
11 #include <utility>
12 
13 namespace bnb { namespace interfaces {
14 
15 struct detected_face final {
16  bool has_rectangle;
17  /** In percents */
18  int32_t probability;
19 
20  detected_face(bool has_rectangle_,
21  int32_t probability_)
22  : has_rectangle(std::move(has_rectangle_))
23  , probability(std::move(probability_))
24  {}
25 };
26 
27 } } // namespace bnb::interfaces
28 /// @}
29 
bnb::interfaces::detected_face::probability
int32_t probability
In percents.
Definition: detected_face.hpp:18
bnb::interfaces::detected_face
Definition: detected_face.hpp:15