This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
prpa/src/filterSample/drunk.hh
2012-07-16 12:16:19 +02:00

17 lines
291 B
C++

#ifndef DRUNK_HH_
# define DRUNK_HH_
# include "tbb/pipeline.h"
# include "opencv2/opencv.hpp"
class Drunk: public tbb::filter
{
public:
Drunk(): filter(tbb::filter::parallel), last_(nullptr) {}
void* operator()(void*);
private:
cv::Mat* last_;
};
#endif /* !DRUNK_HH_ */