iVS3D v2.0.0
Loading...
Searching...
No Matches
keyframeselector.h
1#ifndef KEYFRAMESELECTOR_H
2#define KEYFRAMESELECTOR_H
3
4#include <QObject>
5#include <QVariant>
6
20class KeyframeSelector : public QObject
21{
22 Q_OBJECT
23public:
24 KeyframeSelector(double threshold);
25 std::vector<uint> select(std::vector<uint> frameVector, std::vector<double> flowValues, volatile bool *stopped);
26
27private:
28 // functions
29 double median(std::vector<double> &vec);
30 // member variables
31 double m_threshold = 0.3;
32};
33
34#endif // KEYFRAMESELECTOR_H
The ImageGatherer class is an interface which defines the structure for the usecase specific algorith...
Definition keyframeselector.h:20