MRPT
1.9.9
|
An output stream which takes a sequence of images and writes a video file in any of a given of compatible formats.
The output file is open when calling "open", and it's closed at destructor or after calling "close".
Example of usage:
There are two methods for adding frames to the video:
Definition at line 40 of file CVideoFileWriter.h.
#include <mrpt/vision/CVideoFileWriter.h>
Public Member Functions | |
CVideoFileWriter () | |
Default constructor, which does not open any file. More... | |
virtual | ~CVideoFileWriter () |
Destructor. More... | |
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. More... | |
void | close () |
Finish the file writing and close the file output. More... | |
bool | isOpen () const |
Return true if already successfully open with open() and not closed yet. More... | |
const CVideoFileWriter & | operator<< (const mrpt::img::CImage &img) const |
Write image to the video file. More... | |
bool | writeImage (const mrpt::img::CImage &img) const |
Write image to the video file (method function, alternative to the operator <<). More... | |
Private Attributes | |
mrpt::void_ptr_noncopy | m_video |
A pointer to CvVideoWriter. More... | |
mrpt::img::TImageSize | m_img_size |
A copy of the video size. More... | |
CVideoFileWriter::CVideoFileWriter | ( | ) |
Default constructor, which does not open any file.
Definition at line 30 of file CVideoFileWriter.cpp.
|
virtual |
Destructor.
Definition at line 34 of file CVideoFileWriter.cpp.
References close().
void CVideoFileWriter::close | ( | ) |
Finish the file writing and close the file output.
Definition at line 82 of file CVideoFileWriter.cpp.
References M_WRITER, and M_WRITER_PTR.
Referenced by open(), and ~CVideoFileWriter().
bool CVideoFileWriter::isOpen | ( | ) | const |
Return true if already successfully open with open() and not closed yet.
Definition at line 94 of file CVideoFileWriter.cpp.
References M_WRITER.
bool CVideoFileWriter::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.
out_file | The video file to create for output. |
fourcc | The video codec, as a string. See notes below. fps The video FPS (frames per seconds). |
frameSize | The size of the video frames. All subsequent images must be of this size. |
isColor | Set to false to create a grayscale video. |
Definition at line 38 of file CVideoFileWriter.cpp.
References close(), mrpt::non_copiable_ptr_basic< T >::get(), m_img_size, m_video, mrpt::img::TPixelCoord::x, and mrpt::img::TPixelCoord::y.
const CVideoFileWriter & CVideoFileWriter::operator<< | ( | const mrpt::img::CImage & | img | ) | const |
Write image to the video file.
std::exception | On any error |
Definition at line 106 of file CVideoFileWriter.cpp.
References mrpt::img::CImage::asCvMat(), mrpt::format(), mrpt::non_copiable_ptr_basic< T >::get(), mrpt::img::CImage::getHeight(), mrpt::img::CImage::getWidth(), m_img_size, m_video, M_WRITER, mrpt::img::SHALLOW_COPY, THROW_EXCEPTION, mrpt::img::TPixelCoord::x, and mrpt::img::TPixelCoord::y.
bool CVideoFileWriter::writeImage | ( | const mrpt::img::CImage & | img | ) | const |
Write image to the video file (method function, alternative to the operator <<).
Definition at line 129 of file CVideoFileWriter.cpp.
References mrpt::img::CImage::asCvMat(), mrpt::format(), mrpt::non_copiable_ptr_basic< T >::get(), mrpt::img::CImage::getHeight(), mrpt::img::CImage::getWidth(), m_img_size, m_video, M_WRITER, mrpt::img::SHALLOW_COPY, mrpt::img::TPixelCoord::x, and mrpt::img::TPixelCoord::y.
|
private |
A copy of the video size.
Definition at line 46 of file CVideoFileWriter.h.
Referenced by open(), operator<<(), and writeImage().
|
private |
A pointer to CvVideoWriter.
Definition at line 44 of file CVideoFileWriter.h.
Referenced by open(), operator<<(), and writeImage().
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: c7a3bec24 Sun Mar 29 18:33:13 2020 +0200 at dom mar 29 18:50:38 CEST 2020 |