#include "Beowulf/Beowulf.H"
#include "Component/ModelManager.H"
#include "Devices/FrameGrabberConfigurator.H"
#include "GUI/XWindow.H"
#include "Image/ColorOps.H"
#include "Image/CutPaste.H"
#include "Image/DrawOps.H"
#include "Image/FilterOps.H"
#include "Image/Image.H"
#include "Image/ImageSet.H"
#include "Image/MathOps.H"
#include "Image/Pixels.H"
#include "Image/ShapeOps.H"
#include "Parallel/pvisionTCP-defs.H"
#include "Transport/FrameIstream.H"
#include "Util/Assert.H"
#include "Util/Timer.H"
#include <signal.h>
#include <unistd.h>
Go to the source code of this file.
Defines | |
#define | NAVG 20 |
Number of frames over which average framerate is computed. | |
#define | NSTAT 4 |
Number of stats collected. | |
#define | PRESCALE 2 |
prescale level by which we downsize images before sending them off | |
#define | SHIFTINT 5 |
shift attention at most once every SHIFTINT frames | |
#define | SMINJECT 0.6f |
injection ratio between new and older sm: | |
#define | SMTHRESH 200 |
threshold salience (between 0 and 255) to warrant a shift of attention | |
Functions | |
void | terminate (int s) |
Signal handler (e.g., for control-C). | |
int | main (const int argc, const char **argv) |
Variables | |
static bool | goforever = true |
Will turn false on interrupt signal. |
Grab & process over beowulf w/ pvisionTCP2
Definition in file pvisionTCP2-master.C.
#define NAVG 20 |
Number of frames over which average framerate is computed.
This parallel vision processing master is for use with pvisionTCP2. See the pvisionTCP2go script in bin/ for how to launch the slaves.
Definition at line 66 of file pvisionTCP2-master.C.
#define NSTAT 4 |
Number of stats collected.
Definition at line 68 of file pvisionTCP2-master.C.
#define PRESCALE 2 |
prescale level by which we downsize images before sending them off
Definition at line 71 of file pvisionTCP2-master.C.
#define SHIFTINT 5 |
shift attention at most once every SHIFTINT frames
Definition at line 74 of file pvisionTCP2-master.C.
#define SMINJECT 0.6f |
injection ratio between new and older sm:
Definition at line 77 of file pvisionTCP2-master.C.
#define SMTHRESH 200 |
threshold salience (between 0 and 255) to warrant a shift of attention
Definition at line 80 of file pvisionTCP2-master.C.
void terminate | ( | int | s | ) |
Signal handler (e.g., for control-C).
Definition at line 85 of file pvisionTCP2-master.C.
References goforever.
bool goforever = true [static] |
Will turn false on interrupt signal.
Definition at line 82 of file pvisionTCP2-master.C.
Referenced by terminate().