ViSP  2.6.2
vpVideoReader.h
1 /****************************************************************************
2  *
3  * $Id: vpImagePoint.h 2359 2009-11-24 15:09:25Z nmelchio $
4  *
5  * This file is part of the ViSP software.
6  * Copyright (C) 2005 - 2012 by INRIA. All rights reserved.
7  *
8  * This software is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * ("GPL") version 2 as published by the Free Software Foundation.
11  * See the file LICENSE.txt at the root directory of this source
12  * distribution for additional information about the GNU GPL.
13  *
14  * For using ViSP with software that can not be combined with the GNU
15  * GPL, please contact INRIA about acquiring a ViSP Professional
16  * Edition License.
17  *
18  * See http://www.irisa.fr/lagadic/visp/visp.html for more information.
19  *
20  * This software was developed at:
21  * INRIA Rennes - Bretagne Atlantique
22  * Campus Universitaire de Beaulieu
23  * 35042 Rennes Cedex
24  * France
25  * http://www.irisa.fr/lagadic
26  *
27  * If you have questions regarding the use of this file, please contact
28  * INRIA at visp@inria.fr
29  *
30  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
31  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
32  *
33  *
34  * Description:
35  * Read videos and sequences of images .
36  *
37  * Authors:
38  * Nicolas Melchior
39  * Fabien Spindler
40  *
41  *****************************************************************************/
42 
48 #ifndef vpVideoReader_H
49 #define vpVideoReader_H
50 
51 #include <visp/vpDiskGrabber.h>
52 #include <visp/vpFFMPEG.h>
53 
121 class VISP_EXPORT vpVideoReader : public vpFrameGrabber
122 {
123  private:
125  vpDiskGrabber *imSequence;
126 #ifdef VISP_HAVE_FFMPEG
127  vpFFMPEG *ffmpeg;
129 #endif
130  typedef enum
132  {
133  FORMAT_PGM,
134  FORMAT_PPM,
135  FORMAT_JPEG,
136  FORMAT_PNG,
137  FORMAT_AVI,
138  FORMAT_MPEG,
139  FORMAT_MOV,
140  FORMAT_OGV,
141  FORMAT_UNKNOWN
142  } vpVideoFormatType;
143 
145  vpVideoFormatType formatType;
146 
148  char fileName[FILENAME_MAX];
150  bool initFileName;
152  bool isOpen;
154  long frameCount;
156  long firstFrame;
158  long lastFrame;
159 
160  public:
161  vpVideoReader();
162  ~vpVideoReader();
163 
170  inline void setFirstFrameIndex(const long firstFrame) {this->firstFrame = firstFrame;}
171 
179  inline void resetFrameCounter() {frameCount = firstFrame;}
180 
186  inline long getLastFrameIndex() const {return lastFrame;}
187 
188  void setFileName(const char *filename);
189  void open (vpImage< vpRGBa > &I);
190  void open (vpImage< unsigned char > &I);
191  void acquire(vpImage< vpRGBa > &I);
193  bool getFrame(vpImage<vpRGBa> &I, long frame);
194  bool getFrame(vpImage<unsigned char> &I, long frame);
195  void close(){;}
196 
204  inline long getFrameIndex() const { return frameCount;}
205 
206 
207  private:
208  vpVideoFormatType getFormat(const char *filename);
209  static std::string getExtension(const std::string &filename);
210  void findLastFrameIndex();
211 };
212 
213 #endif
void setFirstFrameIndex(const long firstFrame)
long getFrameIndex() const
long getLastFrameIndex() const
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
virtual void open(vpImage< unsigned char > &I)=0
void resetFrameCounter()
This class interfaces the FFmpeg library to enable the reading of video files.
Definition: vpFFMPEG.h:154
Class to grab (ie. read) images from the disk.
Base class for all video devices. It is designed to provide a front end to video sources.
virtual void acquire(vpImage< unsigned char > &I)=0