camshift_wrapper.h
来自「face detecting source code very fast」· C头文件 代码 · 共 24 行
H
24 行
// camshift_wrapper.h - by Robin Hewitt, 2007
// http://www.cognotics.com/opencv/downloads/camshift_wrapper
// This is free software. See License.txt, in the download
// package, for details.
//
//
// Public interface for the Simple Camshift Wrapper
#ifndef __SIMPLE_CAMSHIFT_WRAPPER_H
#define __SIMPLE_CAMSHIFT_WRAPPER_H
// Main Control functions
int createTracker(const IplImage * pImg);
void releaseTracker();
void startTracking(IplImage * pImg, CvRect * pRect);
CvBox2D track(IplImage *);
// Parameter settings
void setVmin(int vmin);
void setSmin(int smin);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?