Struct describing a possible camera configuration. More...
#include <yarp/dev/IRgbVisualParams.h>
Public Member Functions | |
CameraConfig ()=default | |
CameraConfig (int w, int h, double rate, YarpVocabPixelTypesEnum enc) | |
bool | read (yarp::os::ConnectionReader &connection) override |
Read this object from a network connection. | |
bool | write (yarp::os::ConnectionWriter &connection) const override |
Write this object to a network connection. | |
![]() | |
virtual Type | getType () const |
![]() | |
virtual | ~PortReader () |
Destructor. | |
virtual Type | getReadType () const |
![]() | |
virtual | ~PortWriter () |
Destructor. | |
virtual void | onCompletion () const |
This is called when the port has finished all writing operations. | |
virtual void | onCommencement () const |
This is called when the port is about to begin writing operations. | |
virtual yarp::os::Type | getWriteType () const |
Public Attributes | |
int | width {0} |
int | height {0} |
double | framerate {0.0} |
YarpVocabPixelTypesEnum | pixelCoding {VOCAB_PIXEL_INVALID} |
Additional Inherited Members | |
![]() | |
static bool | copyPortable (const PortWriter &writer, PortReader &reader) |
Copy one portable to another, via writing and reading. | |
Struct describing a possible camera configuration.
width | image width |
height | image height |
framerate | camera framerate |
pixelCoding | camera pixel coding |
Definition at line 30 of file IRgbVisualParams.h.
|
default |
yarp::dev::CameraConfig::CameraConfig | ( | int | w, |
int | h, | ||
double | rate, | ||
YarpVocabPixelTypesEnum | enc | ||
) |
Definition at line 10 of file IRgbVisualParams.cpp.
|
overridevirtual |
Read this object from a network connection.
Override this for your particular class.
reader | an interface to the network connection for reading |
Implements yarp::os::Portable.
Definition at line 35 of file IRgbVisualParams.cpp.
|
overridevirtual |
Write this object to a network connection.
Override this for your particular class. Be aware that depending on the nature of the connections a port has, and what protocol they use, and how efficient the YARP implementation is, this method may be called once, twice, or many times, as the result of a single call to Port::write
writer | an interface to the network connection for writing |
Implements yarp::os::Portable.
Definition at line 18 of file IRgbVisualParams.cpp.
double yarp::dev::CameraConfig::framerate {0.0} |
Definition at line 38 of file IRgbVisualParams.h.
int yarp::dev::CameraConfig::height {0} |
Definition at line 37 of file IRgbVisualParams.h.
YarpVocabPixelTypesEnum yarp::dev::CameraConfig::pixelCoding {VOCAB_PIXEL_INVALID} |
Definition at line 39 of file IRgbVisualParams.h.
int yarp::dev::CameraConfig::width {0} |
Definition at line 36 of file IRgbVisualParams.h.