SmartSpectra C++ SDK
Measure human vitals from video with SmartSpectra C++ SDK.
Loading...
Searching...
No Matches
preprocessing_stream_and_packet_names.hpp
1
2
// preprocessing_stream_and_packet_names.hpp
3
// Created by greg on 1/14/25.
4
// Copyright (C) 2025 Presage Security, Inc.
5
//
6
// This program is free software; you can redistribute it and/or
7
// modify it under the terms of the GNU Lesser General Public
8
// License as published by the Free Software Foundation; either
9
// version 3 of the License, or (at your option) any later version.
10
//
11
// This program is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
// Lesser General Public License for more details.
15
//
16
// You should have received a copy of the GNU Lesser General Public License
17
// along with this program; if not, write to the Free Software Foundation,
18
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
21
// === standard library includes (if any) ===
22
// === third-party includes (if any) ===
23
// === local includes (if any) ===
24
25
#pragma once
26
namespace
presage::smartspectra::lab::preprocessing_graph {
27
namespace
output_streams{
28
constexpr
char
kPreprocessedData[] =
"preprocessed_data"
;
29
// Debug/visualization-related streams (available in preprocessing graphs)
30
constexpr
char
kPointsChest[] =
"points_chest"
;
31
constexpr
char
kPointsAbdomen[] =
"points_abdomen"
;
32
constexpr
char
kPointsGlutes[] =
"points_glutes"
;
33
constexpr
char
kPointsKnees[] =
"points_knees"
;
34
// Image transformation size (std::pair<int,int>) used inside preprocessing
35
constexpr
char
kTransformedSize[] =
"transformed_size"
;
36
}
// namespace output_streams
37
}
// namespace presage::smartspectra::lab::preprocessing_graph