⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pyramid.h

📁 klt, a tracking algorithm
💻 H
字号:
/********************************************************************* * pyramid.h *********************************************************************/#ifndef _PYRAMID_H_#define _PYRAMID_H_#include "klt_util.h"typedef struct  {  int subsampling;  int nLevels;  _KLT_FloatImage *img;  int *ncols, *nrows;}  _KLT_PyramidRec, *_KLT_Pyramid;_KLT_Pyramid _KLTCreatePyramid(  int ncols,  int nrows,  int subsampling,  int nlevels);void _KLTComputePyramid(  _KLT_FloatImage floatimg,   _KLT_Pyramid pyramid,  float sigma_fact);void _KLTFreePyramid(  _KLT_Pyramid pyramid);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -