Removed unused "opencl" config attribute

This commit is contained in:
Matt Hill
2014-08-19 22:23:52 -04:00
parent b9a8b87cf1
commit 88f1b2854c
3 changed files with 0 additions and 3 deletions

View File

@@ -31,7 +31,6 @@ detection_strictness = 3
max_detection_input_width = 1280 max_detection_input_width = 1280
max_detection_input_height = 720 max_detection_input_height = 720
opencl_enabled = 0
multithreading_cores = 1 multithreading_cores = 1

View File

@@ -127,7 +127,6 @@ void Config::loadValues(string country)
runtimeBaseDir = getString("common", "runtime_dir", "/usr/share/openalpr/runtime_data"); runtimeBaseDir = getString("common", "runtime_dir", "/usr/share/openalpr/runtime_data");
opencl_enabled = getBoolean("common", "opencl_enabled", false);
multithreading_cores = getInt("common", "multithreading_cores", 1); multithreading_cores = getInt("common", "multithreading_cores", 1);
detection_iteration_increase = getFloat("common", "detection_iteration_increase", 1.1); detection_iteration_increase = getFloat("common", "detection_iteration_increase", 1.1);

View File

@@ -45,7 +45,6 @@ class Config
std::string country; std::string country;
bool opencl_enabled;
int multithreading_cores; int multithreading_cores;
float detection_iteration_increase; float detection_iteration_increase;