HarrisDetect Struct Reference
[Functions for detecting corners of various types.]

#include <harrislike.h>

Inheritance diagram for HarrisDetect:

DetectN

List of all members.


Detailed Description

Class wrapping the Shi-Tomasi detector.

Definition at line 43 of file harrislike.h.


Public Member Functions

void operator() (const CVD::Image< CVD::byte > &i, std::vector< CVD::ImageRef > &c, unsigned int N) const

Member Function Documentation

void HarrisDetect::operator() ( const CVD::Image< CVD::byte > &  i,
std::vector< CVD::ImageRef > &  c,
unsigned int  N 
) const [virtual]

Detect corners.

Parameters:
i Image in which to detect corners
c Detected corners are inserted in to this container
N Number of corners to detect

Implements DetectN.

Definition at line 157 of file harrislike.cc.

00158 {
00159     float blur = GV3::get<float>("harris.blur", 2.5, 1);
00160     float sigmas = GV3::get<float>("harris.sigmas", 2.0, 1);
00161     harris_like<HarrisScore,PosInserter>(i, c, N, blur, sigmas);
00162 }


The documentation for this struct was generated from the following files:
Generated on Mon Mar 2 12:47:14 2009 for FAST-ER by  doxygen 1.5.3