7 #include <yarp/sig/all.h>
8 #include <yarp/os/all.h>
9 #include <yarp/os/RFModule.h>
10 #include <yarp/os/Network.h>
11 #include <yarp/os/Thread.h>
12 #include <yarp/sig/Image.h>
13 #include <yarp/os/BufferedPort.h>
15 #ifndef ICUB_TOOLS_IMAGE_SPLITTER_H
16 #define ICUB_TOOLS_IMAGE_SPLITTER_H
25 yarp::os::BufferedPort<yarp::sig::ImageOf<yarp::sig::PixelRgb> > inputPort;
26 yarp::os::BufferedPort<yarp::sig::ImageOf<yarp::sig::PixelRgb> > outLeftPort;
27 yarp::os::BufferedPort<yarp::sig::ImageOf<yarp::sig::PixelRgb> > outRightPort;
29 int inWidth, inHeight;
30 int outWidth, outHeight;
35 bool configure(yarp::os::ResourceFinder &rf);
bool configure(yarp::os::ResourceFinder &rf)