ViSP  2.6.2
vpVideoWriter.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  * Write videos and sequences of images.
36  *
37  * Authors:
38  * Nicolas Melchior
39  *
40  *****************************************************************************/
41 
47 #ifndef vpVideoWriter_H
48 #define vpVideoWriter_H
49 
50 #include <visp/vpImageIo.h>
51 #include <visp/vpFFMPEG.h>
52 
131 class VISP_EXPORT vpVideoWriter
132 {
133  private:
134 #ifdef VISP_HAVE_FFMPEG
135  vpFFMPEG *ffmpeg;
138  CodecID codec;
140  unsigned int bit_rate;
141 #endif
142  typedef enum
144  {
145  FORMAT_PGM,
146  FORMAT_PPM,
147  FORMAT_JPEG,
148  FORMAT_PNG,
149  FORMAT_AVI,
150  FORMAT_MPEG,
151  FORMAT_MOV,
152  FORMAT_UNKNOWN
153  } vpVideoFormatType;
154 
156  vpVideoFormatType formatType;
157 
159  char fileName[FILENAME_MAX];
160 
162  bool initFileName;
163 
165  bool isOpen;
166 
168  unsigned int frameCount;
169 
171  unsigned int firstFrame;
172 
174  unsigned int width;
175  unsigned int height;
176 
177  public:
178  vpVideoWriter();
179  ~vpVideoWriter();
180 
186  inline void setFirstFrameIndex(const unsigned int firstFrame) {this->firstFrame = firstFrame;}
187 
193  inline void resetFrameCounter() {frameCount = firstFrame;}
194 
200  inline unsigned int getCurrentFrameIndex() const {return frameCount;}
201 
202  #ifdef VISP_HAVE_FFMPEG
203 
210  inline void setBitRate(const unsigned int bit_rate) {this->bit_rate = bit_rate;}
211 
221  inline void setCodec(const CodecID codec) {this->codec = codec;}
222  #endif
223 
224  void setFileName(const char *filename);
225  void open (vpImage< vpRGBa > &I);
226  void open (vpImage< unsigned char > &I);
227  void saveFrame (vpImage< vpRGBa > &I);
228  void saveFrame (vpImage< unsigned char > &I);
229  void close();
230 
231  private:
232  vpVideoFormatType getFormat(const char *filename);
233  static std::string getExtension(const std::string &filename);
234 };
235 
236 #endif
void setCodec(const CodecID codec)
void setBitRate(const unsigned int bit_rate)
unsigned int getCurrentFrameIndex() const
void resetFrameCounter()
Class that enables to write easily a video file or a sequence of images.
This class interfaces the FFmpeg library to enable the reading of video files.
Definition: vpFFMPEG.h:154
void setFirstFrameIndex(const unsigned int firstFrame)