|
VLTIF
CS426FinalProject
|
#include <VehicleDetection.h>
Static Public Member Functions | |
| static vector< Vehicle > | computeCandidates (const Mat &img) |
| static vector< Vehicle > | classifyCandidates (const Mat &img, vector< Vehicle >const &candidates) |
Definition at line 23 of file VehicleDetection.h.
| vector< Vehicle > VehicleDetection::classifyCandidates | ( | const Mat & | img, |
| vector< Vehicle >const & | candidates | ||
| ) | [static] |
Definition at line 20 of file VehicleDetection.cpp.
{
//output list of vehicle candidates
vector<Vehicle> vehicles;
return vehicles;
}| vector< Vehicle > VehicleDetection::computeCandidates | ( | const Mat & | img | ) | [static] |
Definition at line 10 of file VehicleDetection.cpp.
{
//output list of vehicle candidates
vector<Vehicle> candidates;
return candidates;
}