YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
OpenCVWriter Class Reference

OpenCVWriter: A device which receives images and writes a video file to disk using openCV More...

#include <openCVWriter/OpenCVWriter.h>

+ Inheritance diagram for OpenCVWriter:

Public Member Functions

 OpenCVWriter ()
 
virtual ~OpenCVWriter ()
 
bool open (yarp::os::Searchable &config) override
 Open the DeviceDriver.
 
bool close () override
 Close the DeviceDriver.
 
bool putImage (yarp::sig::ImageOf< yarp::sig::PixelRgb > &image) override
 Write an image to the device.
 
- Public Member Functions inherited from yarp::dev::IFrameWriterImage
virtual ~IFrameWriterImage ()
 Destructor.
 
- Public Member Functions inherited from yarp::dev::DeviceDriver
 DeviceDriver ()
 
 DeviceDriver (const DeviceDriver &other)=delete
 
 DeviceDriver (DeviceDriver &&other) noexcept=delete
 
DeviceDriveroperator= (const DeviceDriver &other)=delete
 
DeviceDriveroperator= (DeviceDriver &&other) noexcept=delete
 
virtual ~DeviceDriver ()
 
virtual std::string id () const
 Return the id assigned to the PolyDriver.
 
virtual void setId (const std::string &id)
 Set the id for this device.
 
template<class T >
bool view (T *&x)
 Get an interface to the device driver.
 
virtual DeviceDrivergetImplementation ()
 Some drivers are bureaucrats, pointing at others.
 
- Public Member Functions inherited from OpenCVWriter_ParamsParser
 OpenCVWriter_ParamsParser ()
 
 ~OpenCVWriter_ParamsParser () override=default
 
bool parseParams (const yarp::os::Searchable &config) override
 Parse the DeviceDriver parameters.
 
std::string getDeviceClassName () const override
 Get the name of the DeviceDriver class.
 
std::string getDeviceName () const override
 Get the name of the device (i.e.
 
std::string getDocumentationOfDeviceParams () const override
 Get the documentation of the DeviceDriver's parameters.
 
std::vector< std::string > getListOfParams () const override
 Return a list of all params used by the device.
 
bool getParamValue (const std::string &paramName, std::string &paramValue) const override
 Return the value (represented as a string) of the requested parameter.
 
std::string getConfiguration () const override
 Return the configuration of the device.
 
- Public Member Functions inherited from yarp::dev::IDeviceDriverParams
virtual ~IDeviceDriverParams ()
 

Protected Attributes

cv::VideoWriter m_writer
 
bool m_isInitialized =false
 

Additional Inherited Members

- Public Attributes inherited from OpenCVWriter_ParamsParser
const std::string m_device_classname = {"OpenCVWriter"}
 
const std::string m_device_name = {"openCVWriter"}
 
bool m_parser_is_strict = false
 
const parser_version_type m_parser_version = {}
 
std::string m_provided_configuration
 
const std::string m_filename_defaultValue = {"output.avi"}
 
const std::string m_framerate_defaultValue = {"30"}
 
const std::string m_width_defaultValue = {"0"}
 
const std::string m_height_defaultValue = {"0"}
 
std::string m_filename = {"output.avi"}
 
double m_framerate = {30}
 
int m_width = {0}
 
int m_height = {0}
 

Detailed Description

OpenCVWriter: A device which receives images and writes a video file to disk using openCV

Parameters required by this device are shown in class: OpenCVGrabber_ParamsParser

Definition at line 25 of file OpenCVWriter.h.

Constructor & Destructor Documentation

◆ OpenCVWriter()

OpenCVWriter::OpenCVWriter ( )
inline

Definition at line 32 of file OpenCVWriter.h.

◆ ~OpenCVWriter()

virtual OpenCVWriter::~OpenCVWriter ( )
inlinevirtual

Definition at line 33 of file OpenCVWriter.h.

Member Function Documentation

◆ close()

bool OpenCVWriter::close ( )
overridevirtual

Close the DeviceDriver.

Returns
true/false on success/failure.

Reimplemented from yarp::dev::DeviceDriver.

Definition at line 64 of file OpenCVWriter.cpp.

◆ open()

bool OpenCVWriter::open ( yarp::os::Searchable config)
overridevirtual

Open the DeviceDriver.

Parameters
configis a list of parameters for the device. Which parameters are effective for your device can vary. See device invocation examples. If there is no example for your device, you can run the "yarpdev" program with the verbose flag set to probe what parameters the device is checking. If that fails too, you'll need to read the source code (please nag one of the yarp developers to add documentation for your device).
Returns
true/false upon success/failure

Reimplemented from yarp::dev::DeviceDriver.

Definition at line 41 of file OpenCVWriter.cpp.

◆ putImage()

bool OpenCVWriter::putImage ( yarp::sig::ImageOf< yarp::sig::PixelRgb > &  image)
overridevirtual

Write an image to the device.

Parameters
imagethe image to write
Returns
true/false upon success/failure

Implements yarp::dev::IFrameWriterImage.

Definition at line 74 of file OpenCVWriter.cpp.

Member Data Documentation

◆ m_isInitialized

bool OpenCVWriter::m_isInitialized =false
protected

Definition at line 42 of file OpenCVWriter.h.

◆ m_writer

cv::VideoWriter OpenCVWriter::m_writer
protected

Definition at line 41 of file OpenCVWriter.h.


The documentation for this class was generated from the following files: