mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
fixed spelling error
--HG-- rename : dlib/test/corellation_tracker.cpp => dlib/test/correlation_tracker.cpp
This commit is contained in:
parent
a73155e6d0
commit
eb25bf44a8
@ -39,7 +39,7 @@ set (tests
|
||||
conditioning_class_c.cpp
|
||||
conditioning_class.cpp
|
||||
config_reader.cpp
|
||||
corellation_tracker.cpp
|
||||
correlation_tracker.cpp
|
||||
crc32.cpp
|
||||
create_iris_datafile.cpp
|
||||
data_io.cpp
|
||||
|
@ -14,17 +14,17 @@ namespace
|
||||
using namespace test;
|
||||
using namespace dlib;
|
||||
using namespace std;
|
||||
dlib::logger dlog("test.corellation_tracker");
|
||||
dlib::logger dlog("test.correlation_tracker");
|
||||
|
||||
|
||||
class corellation_tracker_tester : public tester
|
||||
class correlation_tracker_tester : public tester
|
||||
{
|
||||
public:
|
||||
corellation_tracker_tester(
|
||||
correlation_tracker_tester(
|
||||
) :
|
||||
tester (
|
||||
"test_corellation_tracker", // the command line argument name for this test
|
||||
"Run tests on the corellation_tracker functions.", // the command line argument description
|
||||
"test_correlation_tracker", // the command line argument name for this test
|
||||
"Run tests on the correlation_tracker functions.", // the command line argument description
|
||||
0 // the number of command line arguments for this test
|
||||
)
|
||||
{
|
||||
@ -946,7 +946,7 @@ namespace
|
||||
|
||||
};
|
||||
|
||||
corellation_tracker_tester a;
|
||||
correlation_tracker_tester a;
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user