#include "GL/glew.h"
#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <fstream>
#include <math.h>
#include <string.h>
#include "GlobalUtil.h"
#include "GLTexImage.h"
#include "SiftGPU.h"
#include "ShaderMan.h"
#include "SiftPyramid.h"
#include "ProgramGLSL.h"
#include "PyramidGL.h"
#include "FrameBufferObject.h"
Go to the source code of this file.
Defines | |
#define | FEATURELIST_USE_PBO |
#define | LEVEL_FINISH() if(GlobalUtil::_timingL){ glFinish(); tt = CLOCK();cout<<(tt-t)<<"\t"; t = CLOCK();} |
#define | OCTAVE_FINISH() if(GlobalUtil::_timingO)cout<<"|\t"<<(CLOCK()-t0)<<endl; |
#define | OCTAVE_START() if(GlobalUtil::_timingO){ t = t0 = CLOCK(); cout<<"#"<<i+_down_sample_factor<<"\t"; } |
#define | USE_TIMING() double t, t0, tt; |
#define FEATURELIST_USE_PBO |
Definition at line 1241 of file PyramidGL.cpp.
#define LEVEL_FINISH | ( | ) | if(GlobalUtil::_timingL){ glFinish(); tt = CLOCK();cout<<(tt-t)<<"\t"; t = CLOCK();} |
Definition at line 53 of file PyramidGL.cpp.
#define OCTAVE_FINISH | ( | ) | if(GlobalUtil::_timingO)cout<<"|\t"<<(CLOCK()-t0)<<endl; |
Definition at line 54 of file PyramidGL.cpp.
#define OCTAVE_START | ( | ) | if(GlobalUtil::_timingO){ t = t0 = CLOCK(); cout<<"#"<<i+_down_sample_factor<<"\t"; } |
Definition at line 52 of file PyramidGL.cpp.
#define USE_TIMING | ( | ) | double t, t0, tt; |
Definition at line 51 of file PyramidGL.cpp.