#include "Neuro/GistEstimatorBeyondBoF.H"
#include "Neuro/VisualCortex.H"
#include "Neuro/NeuroSimEvents.H"
#include "Simulation/SimEventQueue.H"
#include "SIFT/ScaleSpace.H"
#include "SIFT/Keypoint.H"
#include "Image/Kernels.H"
#include "Image/Convolutions.H"
#include "Image/MathOps.H"
#include "Image/ShapeOps.H"
#include "Image/CutPaste.H"
#include "Image/Point2D.H"
#include "Image/Dims.H"
#include "Util/Timer.H"
#include "nub/ref.h"
#include "rutz/shared_ptr.h"
#include <sstream>
#include <numeric>
#include <algorithm>
#include <functional>
#include <map>
#include <list>
#include <stdexcept>
#include <utility>
#include <limits>
#include <ctime>
Go to the source code of this file.
Defines | |
#define | GE_BBOF_ERR_NO_VOCABULARY |
Typedefs | |
typedef GistEstimatorBeyondBoF | BBoF |
typedef BBoF::Vocabulary | Vocabulary |
typedef BBoF::SiftDescriptor | SiftDescriptor |
typedef BBoF::SiftGrid | SiftGrid |
typedef float | PixelType |
typedef Image< PixelType > | ImageType |
typedef Image< double > | GistVectorType |
Functions | |
static ImageType | get_row (int r, const ImageType &I) |
std::ostream & | operator<< (std::ostream &os, const SiftDescriptor &d) |
Variables | |
static int | HISTOGRAM_SIZE_PER_LEVEL = 21 |
This file defines the member functions, static members, etc. of the GistEstimatorBeyondBoF class. Further details are in the header file.
Definition in file GistEstimatorBeyondBoF.C.
#define GE_BBOF_ERR_NO_VOCABULARY |
"GistEstimatorBeyondBoF requires vocabulary of " \ "prototypical SIFT descriptors"
Definition at line 86 of file GistEstimatorBeyondBoF.C.