view include/InputVideoFileModule.h @ 409:3c271a46b4d4

updated code for OpenCV 2.4.6
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 13 Aug 2013 23:36:58 -0400
parents b829ebdc18e6
children 2be846d36dec
line wrap: on
line source

#ifndef INPUT_VIDEO_FILE_MODULE_H
#define INPUT_VIDEO_FILE_MODULE_H

#include "InputFrameProviderIface.h"
#include <string>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui.hpp"

class InputVideoFileModule : public InputFrameProviderIface
{
public:
  InputVideoFileModule(const std::string& videoPath);
  ~InputVideoFileModule();

  bool getNextFrame(cv::Mat&);

  unsigned int getNbFrames(){		return mNumberOfFrame;}

  bool isOpen() const { return mInit;}

  void setFrameNumber(const unsigned int& frameNumber);

  const cv::Size& getSize() const { return mSize;}
	
private:
  cv::Size mSize;
  cv::VideoCapture mVideoCapture;
  bool mInit;
  int mNumberOfFrame;
};

#endif