#include "Image/OpenCVUtil.H"
#include "Component/ModelManager.H"
#include "Image/Image.H"
#include "Image/ImageSet.H"
#include "Image/ShapeOps.H"
#include "Image/CutPaste.H"
#include "Image/DrawOps.H"
#include "Image/FilterOps.H"
#include "Image/ColorOps.H"
#include "Image/Transforms.H"
#include "Image/MathOps.H"
#include "Image/Kernels.H"
#include "Image/fancynorm.H"
#include "Image/Layout.H"
#include "Transport/FrameInfo.H"
#include "Raster/Raster.H"
#include "Raster/GenericFrame.H"
#include "GUI/DebugWin.H"
#include "Neuro/EnvVisualCortex.H"
#include "Neuro/getSaliency.H"
#include "Media/FrameSeries.H"
#include "Util/Timer.H"
#include "RCBot/Motion/MotionEnergy.H"
#include "Neuro/BeoHeadBrain.H"
#include "Learn/Bayes.H"
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <math.h>
Go to the source code of this file.
Defines | |
#define | OPENCV_HOUGH 1 |
#define | ORI_QUE 1 |
Functions | |
Image< byte > | watershed (Image< float > &img) |
float | w (float *p, int k) |
float | u (float *p, int k) |
float | nu (float *p, int k, float ut, float vt) |
Image< float > | segmentProb (const Image< float > &img) |
Image< float > | integralImage (const Image< float > &img) |
Image< float > | getHaarFeature (Image< float > &integImg, int i) |
Image< float > | centerSurround (Image< float > &integImg) |
Rectangle | update_mhi (IplImage *img, IplImage *dst, int diff_threshold) |
void | findMinMax (const std::vector< double > &vec, double &min, double &max) |
Image< PixRGB< byte > > | showHist (const std::vector< double > &hist, int loc=0) |
void | smoothHist (std::vector< double > &hist) |
void | normalizeHist (std::vector< double > &hist, double high, double low) |
void | normalizeHist (std::vector< double > &hist) |
void | putLine (Image< PixRGB< byte > > &img, int x, int y, float a, int len) |
Image< PixRGB< byte > > | generateInput (float &angle) |
int | main (const int argc, const char **argv) |
Variables | |
const double | MHI_DURATION = 1 |
const double | MAX_TIME_DELTA = 0.5 |
const double | MIN_TIME_DELTA = 0.05 |
const int | N = 4 |
IplImage ** | buf = 0 |
int | last = 0 |
IplImage * | mhi = 0 |
IplImage * | orient = 0 |
IplImage * | mask = 0 |
IplImage * | segmask = 0 |
CvMemStorage * | storage = 0 |
test for geon based recognition
Definition in file test-gbr.C.