VideoTools
|
A callback interface for Gv::ImageInputSource. More...
#include <gvimageinput.h>
Public Member Functions | |
virtual void | onImageInput (ImageInputSource &, Gr::Image)=0 |
Called by Gv::ImageInputSource to deliver a new image. More... | |
virtual void | onNonImageInput (ImageInputSource &, Gr::Image, const std::string &type_str) |
Called by Gv::ImageInputSource to deliver a new non-image. More... | |
virtual ImageInputConversion | imageInputConversion (ImageInputSource &)=0 |
Returns the required image type conversion. More... | |
virtual | ~ImageInputHandler () |
Destructor. | |
A callback interface for Gv::ImageInputSource.
Definition at line 84 of file gvimageinput.h.
|
pure virtual |
Returns the required image type conversion.
This is called just before each image is delivered.
|
pure virtual |
Called by Gv::ImageInputSource to deliver a new image.
It is allowed to call removeImageInputHandler() from within the callback.
|
virtual |
Called by Gv::ImageInputSource to deliver a new non-image.
This default implementation does nothing.
Definition at line 258 of file gvimageinput.cpp.