Banuba SDK
analytics_config.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup EffectPlayer
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file generated by Djinni from effect_player.djinni
7 
8 #pragma once
9 
10 #include <cstdint>
11 #include <string>
12 #include <utility>
13 
14 namespace bnb { namespace interfaces {
15 
16 /**internal */
17 struct analytics_config final {
18  /** Number of frames to record when face was found */
19  int32_t frames_count;
20  /** Number of frames to skip before record start */
22  /** Path to folder for results storing */
23  std::string output_path;
24 
25  analytics_config(int32_t frames_count_,
26  int32_t delay_for_record_with_face_,
27  std::string output_path_)
28  : frames_count(std::move(frames_count_))
29  , delay_for_record_with_face(std::move(delay_for_record_with_face_))
30  , output_path(std::move(output_path_))
31  {}
32 };
33 
34 } } // namespace bnb::interfaces
35 /// @}
36 
bnb::interfaces::analytics_config::frames_count
int32_t frames_count
Number of frames to record when face was found.
Definition: analytics_config.hpp:19
bnb::interfaces::analytics_config::output_path
std::string output_path
Path to folder for results storing.
Definition: analytics_config.hpp:23
bnb::interfaces::analytics_config::delay_for_record_with_face
int32_t delay_for_record_with_face
Number of frames to skip before record start.
Definition: analytics_config.hpp:21
bnb::interfaces::analytics_config
internal
Definition: analytics_config.hpp:17