VLTIF
CS426FinalProject
|
#include <DetectorType.h>
Public Member Functions | |
DetectorType () | |
DetectorType (const DetectorType &orig) | |
virtual | ~DetectorType () |
virtual string | isType () const |
virtual void | compute_frame (const Mat &img, vector< KeyPoint > &keypoints, vector< Lane >const &lanes) const =0 |
virtual void | reset_detector ()=0 |
Definition at line 22 of file DetectorType.h.
DetectorType::DetectorType | ( | ) |
Definition at line 10 of file DetectorType.cpp.
{ }
DetectorType::DetectorType | ( | const DetectorType & | orig | ) |
Definition at line 13 of file DetectorType.cpp.
{ }
DetectorType::~DetectorType | ( | ) | [virtual] |
Definition at line 16 of file DetectorType.cpp.
{ }
virtual void DetectorType::compute_frame | ( | const Mat & | img, |
vector< KeyPoint > & | keypoints, | ||
vector< Lane >const & | lanes | ||
) | const [pure virtual] |
string DetectorType::isType | ( | ) | const [virtual] |
Reimplemented in SiftType.
Definition at line 19 of file DetectorType.cpp.
{ return "DetectorType"; }