-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathfingerprint_matcher.h
76 lines (58 loc) · 2.33 KB
/
fingerprint_matcher.h
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
// Copyright (C) 2016 Lukas Lalinsky
// Distributed under the MIT license, see the LICENSE file for details.
#ifndef CHROMAPRINT_FINGERPRINT_MATCHER_H_
#define CHROMAPRINT_FINGERPRINT_MATCHER_H_
#include <vector>
#include <memory>
#include <cstdint>
#include <cassert>
namespace chromaprint {
class FingerprinterConfiguration;
struct Segment
{
size_t pos1;
size_t pos2;
size_t duration;
double score;
double left_score;
double right_score;
Segment(size_t pos1, size_t pos2, size_t duration, double score)
: pos1(pos1), pos2(pos2), duration(duration), score(score), left_score(score), right_score(score) {}
Segment(size_t pos1, size_t pos2, size_t duration, double score, double left_score, double right_score)
: pos1(pos1), pos2(pos2), duration(duration), score(score), left_score(left_score), right_score(right_score) {}
int public_score() const {
//return std::max(0, int(100 - std::round(score * (100.0 / 14.0))));
//return std::max(0, int(100 - std::round(score * (100.0 / 14.0))));
return int(score * 100 + 0.5);
}
Segment merged(const Segment &other) {
assert(pos1 + duration == other.pos1);
assert(pos2 + duration == other.pos2);
const auto new_duration = duration + other.duration;
const auto new_score = (score * duration + other.score * other.duration) / new_duration;
return Segment(pos1, pos2, new_duration, new_score, score, other.score);
}
};
class FingerprintMatcher
{
public:
FingerprintMatcher(FingerprinterConfiguration *config);
// Anything above this is not considered a match.
void set_match_threshold(double t) { m_match_threshold = t; }
double match_threshold() const { return m_match_threshold; }
static constexpr double kDefaultMatchThreshold = 10.0;
bool Match(const std::vector<uint32_t> &fp1, const std::vector<uint32_t> &fp2);
bool Match(const uint32_t fp1_data[], size_t fp1_size, const uint32_t fp2_data[], size_t fp2_size);
double GetHashTime(size_t i) const;
double GetHashDuration(size_t i) const;
const std::vector<Segment> &segments() const { return m_segments; };
private:
std::unique_ptr<FingerprinterConfiguration> m_config;
std::vector<uint32_t> m_offsets;
std::vector<uint32_t> m_histogram;
std::vector<std::pair<uint32_t, uint32_t>> m_best_alignments;
std::vector<Segment> m_segments;
double m_match_threshold = kDefaultMatchThreshold;
};
}; // namespace chromaprint
#endif