VLTIF
CS426FinalProject
|
#include <Options.h>
Public Member Functions | |
Options () | |
Options (const Options &rhs) | |
virtual | ~Options () |
Public Attributes | |
size_t | frame_rate |
size_t | start_frame |
size_t | frame_count |
size_t | interest_point_max_life |
bool | show |
string | window_name |
string | video_filename |
string | video_output_filename |
string | detector_type |
DetectorType * | detector |
VideoCapture | cap |
VideoWriter | vout |
VideoWriter | bout |
VideoWriter | dout |
Mat | frame |
Mat | black_frame |
Mat | gray_frame |
Mat | density_frame |
char | key |
int | stop_frame |
PointTracker | pointHistory |
vector< Lane > | lanes |
bool | saveLanes |
bool | loadLanes |
bool | saveAvgFrame |
bool | loadAvgFrame |
string | laneFilename |
string | avgFilename |
bool | equalizeHistogram |
bool | SIFT_lane_crop |
SURF_PARAMS | surfParams |
SIFT::CommonParams | siftCommonParams |
SIFT::DescriptorParams | siftDescriptorParams |
SIFT::DetectorParams | siftDetectorParams |
bool | DEBUG |
int | density_window |
Options::Options | ( | ) |
Definition at line 10 of file Options.cpp.
References show, and window_name.
{ window_name = "Window"; show = false; }
Options::Options | ( | const Options & | rhs | ) |
Definition at line 15 of file Options.cpp.
References window_name.
{ window_name = rhs.window_name; }
Options::~Options | ( | ) | [virtual] |
Definition at line 19 of file Options.cpp.
{ }
string Options::avgFilename |
Definition at line 66 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
VideoWriter Options::bout |
VideoCapture Options::cap |
bool Options::DEBUG |
Definition at line 79 of file Options.h.
Referenced by main(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 43 of file Options.h.
Referenced by main(), and Parser::parse_config_file().
string Options::detector_type |
Definition at line 42 of file Options.h.
Referenced by Parser::parse_config_file(), and Parser::write_configuration().
VideoWriter Options::dout |
Mat Options::frame |
size_t Options::frame_count |
size_t Options::frame_rate |
Definition at line 32 of file Options.h.
Referenced by main(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 36 of file Options.h.
Referenced by init(), Parser::parse_config_file(), and Parser::write_configuration().
char Options::key |
string Options::laneFilename |
Definition at line 65 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
vector<Lane> Options::lanes |
Definition at line 60 of file Options.h.
Referenced by lane_manager(), and main().
Definition at line 64 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
bool Options::loadLanes |
Definition at line 62 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 63 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
bool Options::saveLanes |
Definition at line 61 of file Options.h.
Referenced by lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
bool Options::show |
Definition at line 38 of file Options.h.
Referenced by init(), main(), Options(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 70 of file Options.h.
Referenced by Parser::parse_config_file(), and Parser::write_configuration().
SIFT::CommonParams Options::siftCommonParams |
Definition at line 73 of file Options.h.
Referenced by init(), Parser::parse_config_file(), and Parser::write_configuration().
SIFT::DescriptorParams Options::siftDescriptorParams |
Definition at line 74 of file Options.h.
Referenced by init(), Parser::parse_config_file(), and Parser::write_configuration().
SIFT::DetectorParams Options::siftDetectorParams |
Definition at line 75 of file Options.h.
Referenced by init(), Parser::parse_config_file(), and Parser::write_configuration().
size_t Options::start_frame |
Definition at line 33 of file Options.h.
Referenced by init(), lane_manager(), main(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 56 of file Options.h.
Referenced by main(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 72 of file Options.h.
Referenced by Parser::parse_config_file(), and Parser::write_configuration().
string Options::video_filename |
Definition at line 40 of file Options.h.
Referenced by init(), lane_manager(), Parser::parse_config_file(), and Parser::write_configuration().
Definition at line 41 of file Options.h.
Referenced by init(), Parser::parse_config_file(), and Parser::write_configuration().
VideoWriter Options::vout |
string Options::window_name |