MRPT  2.0.4
CVideoFileWriter.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
11 #include <mrpt/core/pimpl.h>
13 #include <mrpt/img/CImage.h>
14 #include <mrpt/vision/utils.h>
15 
16 namespace mrpt::vision
17 {
18 /** An output stream which takes a sequence of images and writes a video file
19  * in any of a given of compatible formats.
20  *
21  * The output file is open when calling "open", and it's closed at destructor
22  * or after calling "close".
23  *
24  * Example of usage:
25  *
26  * \code
27  * CVideoFileWriter vid;
28  * vid.open("test.avi",15,TPixelCoord(320,200), "MJPG");
29  * CImage img(320,200);
30  * vid << img;
31  * vid.close;
32  * \endcode
33  *
34  * There are two methods for adding frames to the video:
35  * - The operator <<: Which will raise an exception on any error.
36  * - The method writeImage, which does not raise any exception on errors.
37  *
38  * \note This class is a wrapper for OpenCV's CvVideoWriter.
39  * \ingroup mrpt_vision_grp
40  */
42 {
43  private:
44  /** cv::VideoWriter object */
45  struct Impl;
47 
48  /** A copy of the video size */
50 
51  public:
52  /** Default constructor, which does not open any file */
54  /** Destructor */
55  virtual ~CVideoFileWriter();
56 
57  /** Open a file for writing the video.
58  * \param out_file The video file to create for output.
59  * \param fourcc The video codec, as a string. See notes below.
60  * \paam fps The video FPS (frames per seconds).
61  * \param frameSize The size of the video frames. All subsequent images
62  * must be of this size.
63  * \param isColor Set to false to create a grayscale video.
64  *
65  * \note If fourcc is left as an empty string a default codec will be
66  * seleceted (e.g. "IYUV").
67  * \note Other valid values for "fourcc" are: "PIM1" -> MPEG1, "MJPG" ->
68  * Motion JPEG, "XVID", etc...
69  *
70  * \return false on any error, true on success.
71  */
72  bool open(
73  const std::string& out_file, double fps,
74  const mrpt::img::TImageSize& frameSize,
75  const std::string& fourcc = std::string(""), bool isColor = true);
76 
77  /** Finish the file writing and close the file output
78  */
79  void close();
80 
81  /** Return true if already successfully open with open() and not closed yet.
82  */
83  bool isOpen() const;
84 
85  /** Write image to the video file.
86  * \exception std::exception On any error
87  */
89 
90  /** Write image to the video file (method function, alternative to the
91  * operator <<).
92  * \return false on any error
93  */
94  bool writeImage(const mrpt::img::CImage& img);
95 
96 }; // end of class
97 
98 } // namespace mrpt::vision
bool writeImage(const mrpt::img::CImage &img)
Write image to the video file (method function, alternative to the operator <<).
const CVideoFileWriter & operator<<(const mrpt::img::CImage &img)
Write image to the video file.
void close()
Finish the file writing and close the file output.
spimpl::impl_ptr< T > pimpl
Definition: pimpl.h:15
bool open(const std::string &out_file, double fps, const mrpt::img::TImageSize &frameSize, const std::string &fourcc=std::string(""), bool isColor=true)
Open a file for writing the video.
mrpt::img::TImageSize m_img_size
A copy of the video size.
bool isOpen() const
Return true if already successfully open with open() and not closed yet.
A pair (x,y) of pixel coordinates (integer resolution).
Definition: TPixelCoord.h:40
Classes for computer vision, detectors, features, etc.
Definition: CDifodo.h:17
CVideoFileWriter()
Default constructor, which does not open any file.
virtual ~CVideoFileWriter()
Destructor.
An output stream which takes a sequence of images and writes a video file in any of a given of compat...
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148



Page generated by Doxygen 1.8.14 for MRPT 2.0.4 Git: 33de1d0ad Sat Jun 20 11:02:42 2020 +0200 at sáb jun 20 17:35:17 CEST 2020