VLTIF
CS426FinalProject
VehicleDetection Class Reference

#include <VehicleDetection.h>

List of all members.

Static Public Member Functions

static vector< VehiclecomputeCandidates (const Mat &img)
static vector< VehicleclassifyCandidates (const Mat &img, vector< Vehicle >const &candidates)

Detailed Description

Definition at line 23 of file VehicleDetection.h.


Member Function Documentation

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;
}

The documentation for this class was generated from the following files: