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

#include <harrislike.h>

Inheritance diagram for ShiTomasiDetect:

DetectN

List of all members.


Detailed Description

Class wrapping the Harris detector.

Definition at line 31 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 ShiTomasiDetect::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 164 of file harrislike.cc.

00165 {
00166     float blur = GV3::get<float>("shitomasi.blur", 2.5, 1);
00167     float sigmas = GV3::get<float>("shitomasi.sigmas", 2.0, 1);
00168     harris_like<ShiTomasiScore, PosInserter>(i, c, N, blur, sigmas);
00169 }


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