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

📄 motionfield.hh

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 HH
字号:
/*********************************************************************  libvideogfx/graphics/datatypes/motionfield.hh  purpose:  notes:  to do:  author(s):   - Dirk Farin, farin@ti.uni-mannheim.de     University Mannheim, Dept. Circuitry and Simulation     B 6,26 EG, room 0.10 / D-68131 Mannheim / Germany  modifications:    1999/Oct/19 - Dirk Farin - integration into CVS, mostly rewritten *********************************************************************/#ifndef LIBVIDEOGFX_GRAPHICS_DATATYPES_MOTIONFIELD_HH#define LIBVIDEOGFX_GRAPHICS_DATATYPES_MOTIONFIELD_HH#include "libvideogfx/graphics/basic/bitmap.hh"struct MotionVector{  double h,v;};struct MotionVectorField{  MotionVectorField(int p_nblks_h,                    int p_nblks_v,                    int p_blksize_h = 16,                    int p_blksize_v = 16)  {    blksize_h = p_blksize_h;    blksize_v = p_blksize_v;    nblks_h   = p_nblks_h;    nblks_v   = p_nblks_v;    mv.Create(nblks_h, nblks_v);  }  Bitmap<MotionVector> mv;  int blksize_h,blksize_v;  int nblks_h  ,nblks_v;};#endif

⌨️ 快捷键说明

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