Image Component Library (ICL)
CV.h
Go to the documentation of this file.
1 /********************************************************************
2 ** Image Component Library (ICL) **
3 ** **
4 ** Copyright (C) 2006-2013 CITEC, University of Bielefeld **
5 ** Neuroinformatics Group **
6 ** Website: www.iclcv.org and **
7 ** http://opensource.cit-ec.de/projects/icl **
8 ** **
9 ** File : ICLCV/src/ICLCV/CV.h **
10 ** Module : ICLCV **
11 ** Authors: Christof Elbrechter **
12 ** **
13 ** **
14 ** GNU LESSER GENERAL PUBLIC LICENSE **
15 ** This file may be used under the terms of the GNU Lesser General **
16 ** Public License version 3.0 as published by the **
17 ** **
18 ** Free Software Foundation and appearing in the file LICENSE.LGPL **
19 ** included in the packaging of this file. Please review the **
20 ** following information to ensure the license requirements will **
21 ** be met: http://www.gnu.org/licenses/lgpl-3.0.txt **
22 ** **
23 ** The development of this software was supported by the **
24 ** Excellence Cluster EXC 277 Cognitive Interaction Technology. **
25 ** The Excellence Cluster EXC 277 is a grant of the Deutsche **
26 ** Forschungsgemeinschaft (DFG) in the context of the German **
27 ** Excellence Initiative. **
28 ** **
29 ********************************************************************/
30 
31 #pragma once
32 
33 #include <ICLCV/Extrapolator.h>
35 #include <ICLCV/MeanShiftTracker.h>
36 
37 #include <ICLCV/PositionTracker.h>
38 #include <ICLCV/VectorTracker.h>
39 #include <ICLCV/RegionDetector.h>
40 
41 
44 #include <ICLCore/Img.h>
45 
46 
180 namespace icl{
181  namespace cv{
183 
238  std::vector<utils::Rect> ICLCV_API matchTemplate(const core::Img8u &src,
239  const core::Img8u &templ,
240  float significance,
241  core::Img8u *buffer=0,
242  bool clipBuffersToROI=true,
243  RegionDetector *rd=0,
244  bool useCrossCorrCoeffInsteadOfSqrDistance=false);
245 
246 
248  std::vector<utils::Rect> ICLCV_API matchTemplate(const core::Img8u &src,
249  const core::Img8u *srcMask,
250  const core::Img8u &templ,
251  const core::Img8u *templMask,
252  float significance,
253  core::Img8u *srcBuffer=0,
254  core::Img8u *templBuffer=0,
255  core::Img8u *buffer=0,
256  bool clipBuffersToROI=true,
257  RegionDetector *rd=0,
258  bool useCrossCorrCoeffInsteadOfSqrDistance=false);
259 
260 
261 
262  } // namespace cv
263 } // namespace icl
undocument this line if you encounter any issues!
Definition: Any.h:37
#define ICLCV_API
Definition: CompatMacros.h:177
Img< icl8u > Img8u
typedef for 8bit integer images
Definition: Types.h:42
std::vector< utils::Rect > ICLCV_API matchTemplate(const core::Img8u &src, const core::Img8u &templ, float significance, core::Img8u *buffer=0, bool clipBuffersToROI=true, RegionDetector *rd=0, bool useCrossCorrCoeffInsteadOfSqrDistance=false)
template matching using proximity measurement