-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcompv_matchers.cxx
executable file
·81 lines (65 loc) · 2.53 KB
/
compv_matchers.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* Copyright (C) 2011-2020 Doubango Telecom <https://www.doubango.org>
* File author: Mamadou DIOP (Doubango Telecom, France).
* License: GPLv3. For commercial license please contact us.
* Source code: https://github.com/DoubangoTelecom/compv
* WebSite: http://compv.org
*/
#include "compv/base/compv_matchers.h"
#include "compv/base/compv_base.h"
#define COMPV_THIS_CLASSNAME "CompVMatcher"
COMPV_NAMESPACE_BEGIN()
std::map<int, const CompVMatcherFactory*> CompVMatcher::s_Factories;
//
// CompVMatcher
//
CompVMatcher::CompVMatcher()
{
}
CompVMatcher::~CompVMatcher()
{
}
COMPV_ERROR_CODE CompVMatcher::init()
{
COMPV_DEBUG_INFO_EX(COMPV_THIS_CLASSNAME, "Matchers initialization");
/* Register built-in matchers */
// Brute Force
// COMPV_CHECK_CODE_RETURN(addFactory(&bruteForceFactory));
// FLANN
// COMPV_CHECK_CODE_RETURN(addFactory(&flannFactory));
return COMPV_ERROR_CODE_S_OK;
}
COMPV_ERROR_CODE CompVMatcher::addFactory(const CompVMatcherFactory* factory)
{
COMPV_CHECK_EXP_RETURN(!factory, COMPV_ERROR_CODE_E_INVALID_PARAMETER);
if (s_Factories.find(factory->id) != s_Factories.end()) {
const CompVMatcherFactory* old = s_Factories.find(factory->id)->second;
COMPV_DEBUG_WARN_EX(COMPV_THIS_CLASSNAME, "Matcher factory with id = %d already exist and will be replaced old name=%s, new name=%s", factory->id, old->name, factory->name);
}
COMPV_DEBUG_INFO_EX(COMPV_THIS_CLASSNAME, "Registering matcher factory with id = %d and name = '%s'...", factory->id, factory->name);
s_Factories[factory->id] = factory;
return COMPV_ERROR_CODE_S_OK;
}
const CompVMatcherFactory* CompVMatcher::findFactory(int deteId)
{
std::map<int, const CompVMatcherFactory*>::const_iterator it = s_Factories.find(deteId);
if (it == s_Factories.end()) {
return NULL;
}
return it->second;
}
COMPV_ERROR_CODE CompVMatcher::newObj(CompVMatcherPtrPtr matcher, int matcherId)
{
COMPV_CHECK_EXP_RETURN(!CompVBase::isInitialized(), COMPV_ERROR_CODE_E_NOT_INITIALIZED);
COMPV_CHECK_EXP_RETURN(!matcher, COMPV_ERROR_CODE_E_INVALID_PARAMETER);
const CompVMatcherFactory* factory_ = CompVMatcher::findFactory(matcherId);
if (!factory_) {
COMPV_DEBUG_ERROR_EX(COMPV_THIS_CLASSNAME, "Failed to find matcher factory with id = %d", matcherId);
return COMPV_ERROR_CODE_E_INVALID_PARAMETER;
}
if (!factory_->newObjMatcher) {
COMPV_DEBUG_ERROR_EX(COMPV_THIS_CLASSNAME, "Factory with id = %d and name = '%s' doesn't have a constructor", factory_->id, factory_->name);
return COMPV_ERROR_CODE_E_INVALID_CALL;
}
return factory_->newObjMatcher(matcher);
}
COMPV_NAMESPACE_END()