#include <harrislike.h>
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 |
void ShiTomasiDetect::operator() | ( | const CVD::Image< CVD::byte > & | i, | |
std::vector< CVD::ImageRef > & | c, | |||
unsigned int | N | |||
) | const [virtual] |
Detect corners.
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 }