Mercurial > hg > nsaunier > traffic-intelligence
view include/InputFrameProviderIface.h @ 606:75ad9c0d6cc3
update the method to use multi featutes instead on single feature
| author | MohamedGomaa |
|---|---|
| date | Mon, 24 Nov 2014 13:02:10 -0500 |
| parents | b829ebdc18e6 |
| children |
line wrap: on
line source
#ifndef INPUT_FRAME_PROVIDER_IFACE_H #define INPUT_FRAME_PROVIDER_IFACE_H #include "opencv2/core/core.hpp" #include <string> class InputFrameProviderIface { public: virtual ~InputFrameProviderIface(){} virtual bool getNextFrame(cv::Mat&)=0; virtual unsigned int getNbFrames() = 0; virtual bool isOpen() const = 0; virtual void setFrameNumber(const unsigned int& frameNumber) = 0; virtual const cv::Size& getSize() const = 0; }; #endif
