YARP
Yet Another Robot Platform
os/image_process/image_process.cpp

An example of how to receive, process, and output images to and from a port.

/*
* Copyright (C) 2006-2020 Istituto Italiano di Tecnologia (IIT)
* Copyright (C) 2006-2010 RobotCub Consortium
* All rights reserved.
*
* This software may be modified and distributed under the terms of the
* BSD-3-Clause license. See the accompanying LICENSE file for details.
*/
#include <yarp/os/Value.h>
#include <yarp/sig/Image.h>
/*
This example adds a moving circle to an image stream.
Suppose we have an image source on port /source such as:
yarpdev --device fakeFrameGrabber --name /source --mode line --framerate 10
And suppose we have an image viewer on port /view:
yarpview --name /view
Then we can hook this program up in between as follows:
./image_process --name /worker
yarp connect /source /worker
yarp connect /worker /view
You should see the normal scrolling line of fakeFrameGrabber, with a moving
circle overlaid.
*/
int main(int argc, char* argv[])
{
// Initialize network
Network yarp;
// Make a port for reading and writing images
BufferedPort<ImageOf<PixelRgb>> port;
// Get command line options
Property options;
options.fromCommand(argc, argv);
// Set the name of the port (use "/worker" if there is no --name option)
std::string portName = options.check("name", Value("/worker")).asString();
port.open(portName);
size_t ct = 0;
while (true) {
// read an image from the port
ImageOf<PixelRgb>* img = port.read();
if (img == nullptr) {
continue;
}
// add a blue circle
PixelRgb blue{0, 0, 255};
addCircle(*img, blue, ct, 50, 10);
ct = (ct + 5) % img->width();
// output the image
port.prepare() = *img;
port.write();
}
return 0;
}
Network.h
main
int main(int argc, char *argv[])
Definition: yarpros.cpp:261
ImageDraw.h
yarp::sig::ImageOf
Typed image class.
Definition: Image.h:647
yarp::os::BufferedPort
A mini-server for performing network communication in the background.
Definition: BufferedPort.h:64
Property.h
BufferedPort.h
Image.h
yarp::sig::PixelRgb
Packed RGB pixel type.
Definition: Image.h:453
yarp::os::Network
Utilities for manipulating the YARP network, including initialization and shutdown.
Definition: Network.h:786
yarp
The main, catch-all namespace for YARP.
Definition: environment.h:18
yarp::sig::draw::addCircle
void addCircle(ImageOf< T > &dest, const T &pix, int i, int j, int r)
Definition: ImageDraw.h:43
yarp::os::Value
A single value (typically within a Bottle).
Definition: Value.h:47
Value.h
yarp::os::Property
A class for storing options and configuration information.
Definition: Property.h:37