Banuba SDK
Loading...
Searching...
No Matches
feature_parameter.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 <utility>
11
12namespace bnb { namespace interfaces {
13
14/**
15 * User configurable parameters for in-CPU calculations during `FrameData`
16 * processing. Meaning of this parameters are defined by features itself.
17 * Passed in list to `FrameData.addFeatureParameters`.
18 */
19struct feature_parameter final {
20 float x;
21 float y;
22 float z;
23 float w;
24
25 feature_parameter(float x_,
26 float y_,
27 float z_,
28 float w_)
29 : x(std::move(x_))
30 , y(std::move(y_))
31 , z(std::move(z_))
32 , w(std::move(w_))
33 {}
34};
35
36} } // namespace bnb::interfaces
37/// @}
38
User configurable parameters for in-CPU calculations during FrameData processing.