source: proiecte/PPPP/eigenface/camshift_wrapper.h @ 28

Last change on this file since 28 was 28, checked in by (none), 14 years ago

first try at eigenface

File size: 635 bytes
Line 
1// camshift_wrapper.h - by Robin Hewitt, 2007
2// http://www.cognotics.com/opencv/downloads/camshift_wrapper
3// This is free software. See License.txt, in the download
4// package, for details.
5//
6//
7// Public interface for the Simple Camshift Wrapper
8
9#ifndef __SIMPLE_CAMSHIFT_WRAPPER_H
10#define __SIMPLE_CAMSHIFT_WRAPPER_H
11
12// Main Control functions
13int     createTracker(const IplImage * pImg);
14void    releaseTracker();
15void    startTracking(IplImage * pImg, CvRect * pRect);
16//CvBox2D track(IplImage *);
17CvRect track(IplImage *);
18
19// Parameter settings
20void setVmin(int vmin);
21void setSmin(int smin);
22
23#endif
Note: See TracBrowser for help on using the repository browser.