iVS3D v2.0.0
Loading...
Searching...
No Matches
imagegatherercpu.h
1#ifndef IMAGEGATHERERCPU_H
2#define IMAGEGATHERERCPU_H
3
4#include "imagegatherer.h"
5
6#include <opencv2/video/tracking.hpp>
7
18{
19public:
20 ImageGathererCpu(Reader *reader, std::vector<uint> futureFrames);
21private:
27 cv::Mat gatherSingleImage(uint frameIdx) override;
28};
29
30#endif // IMAGEGATHERERCPU_H
The ImageGathererCpu class implements the ImageGatherer interface as a cuda specific algorithm....
Definition imagegatherercpu.h:18
cv::Mat gatherSingleImage(uint frameIdx) override
gatherSingleImage reads, resizes and greyscales a single frame
Definition imagegatherercpu.cpp:9
The ImageGatherer class is an interface which defines the structure for the hardware specific algorit...
Definition imagegatherer.h:30
The Reader interface defines functions which are used for reading and parsing the import.
Definition reader.h:23