FLImaging 7.8.25.3
StatisticsResult.h
1#pragma once
2
3namespace FLImaging
4{
5 namespace ThreeDim
6 {
7 #pragma pack(push, 1)
8 template <typename InputType, typename StatsType>
9 struct FL_EXPORT SStatisticsResult
10 {
11 #if (defined(_MSVC_LANG) && _MSVC_LANG > 201400) || \
12 (!defined(_MSVC_LANG) && __cplusplus > 201400)
13 SStatisticsResult() = default;
14 #else
15 SStatisticsResult(){}
16 #endif
17
18 SStatisticsResult(const Base::CFLArray<InputType>& flaValues);
19 SStatisticsResult(InputType* arrValues, int64_t i64Count);
20
21 int64_t i64Count;
22 InputType min;
23 InputType max;
24 StatsType mean;
25 StatsType stdDev;
26 };
27 #pragma pack(pop)
28 }
29}
Definition Algorithm3DBase.h:16