view include/InputFrameListModule.h @ 457:95a8eb38d9a2

update to weather function
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 19 Feb 2014 16:33:49 -0500
parents b829ebdc18e6
children
line wrap: on
line source

#ifndef INPUT_FRAME_LIST_MODULE_H
#define INPUT_FRAME_LIST_MODULE_H

#include "InputFrameProviderIface.h"

#include <string>
#include <vector>

class InputFrameListModule : public InputFrameProviderIface
{
 public:
  InputFrameListModule(const std::string& _dirname);
  ~InputFrameListModule();

  bool getNextFrame(cv::Mat&);
  unsigned int getNbFrames();
  bool isOpen() const { return mInit;}
  void setFrameNumber(const unsigned int& frameNumber);

  virtual const cv::Size& getSize() const { return mSize;}
 private:
  void loadImageList(void);
  std::vector<std::string> filenames;
  unsigned int mCurrentIdx;
  bool mInit;
  std::string dirname;
  cv::Size mSize;
};

#endif