📄 camshift_wrapper.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -