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