| Home | Trees | Indices | Help |
|---|
|
|
1 # PyCV - A Computer Vision Package for Python Incorporating Fast Training of Face Detection
2
3 # Copyright 2007 Nanyang Technological University, Singapore.
4 # Authors: Minh-Tri Pham, Viet-Dung D. Hoang, and Tat-Jen Cham.
5
6 # This file is part of PyCV.
7
8 # PyCV is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public
10 # License as published by the Free Software Foundation, either version
11 # 3 of the License, or (at your option) any later version.
12
13 # PyCV is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 # ---------------------------------------------------------------------
22 #!/usr/bin/env python
23
24
25 """An umbrella package containing all Computer Vision packages.
26
27 For researchers, if you are using any of the methods in this package,
28 please accept the following term:
29 - Any published result, involving training a weak classifier using
30 Haar-like features, based on running any method in the 'haar.py'
31 module, must cite the following paper:
32 @INPROCEEDINGS{Pham2007a,
33 author = {Minh-Tri Pham and Tat-Jen Cham},
34 title = {Fast Training and Selection of Haar features using Statistisc in Boosting-based Face Detection},
35 booktitle = {11th IEEE International Conference on Computer Vision (ICCV 2007)},
36 year = {2007},
37 address = {Rio de Janeiro, Brazil}
38 }
39
40 """
41
42 # For more help: http://projects.scipy.org/scipy/numpy/wiki/DistutilsDoc
43 #global_symbols = ['ScipyTest','NumpyTest']
44 #depends = ['core']
45
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0beta1 on Mon Feb 25 10:24:19 2008 | http://epydoc.sourceforge.net |