EstervQrCode 1.1.1
Library for qr code manipulation
ground_truth.h
1 /***********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved.
5  * Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved.
6  *
7  * THE BSD LICENSE
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in the
17  * documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *************************************************************************/
30 
31 #ifndef OPENCV_FLANN_GROUND_TRUTH_H_
32 #define OPENCV_FLANN_GROUND_TRUTH_H_
33 
35 
36 #include "dist.h"
37 #include "matrix.h"
38 
39 
40 namespace cvflann
41 {
42 
43 template <typename Distance>
44 void find_nearest(const Matrix<typename Distance::ElementType>& dataset, typename Distance::ElementType* query, int* matches, int nn,
45  int skip = 0, Distance distance = Distance())
46 {
47  typedef typename Distance::ResultType DistanceType;
48  int n = nn + skip;
49 
50  std::vector<int> match(n);
52 
53  dists[0] = distance(dataset[0], query, dataset.cols);
54  match[0] = 0;
55  int dcnt = 1;
56 
57  for (size_t i=1; i<dataset.rows; ++i) {
58  DistanceType tmp = distance(dataset[i], query, dataset.cols);
59 
60  if (dcnt<n) {
61  match[dcnt] = (int)i;
62  dists[dcnt++] = tmp;
63  }
64  else if (tmp < dists[dcnt-1]) {
65  dists[dcnt-1] = tmp;
66  match[dcnt-1] = (int)i;
67  }
68 
69  int j = dcnt-1;
70  // bubble up
71  while (j>=1 && dists[j]<dists[j-1]) {
72  std::swap(dists[j],dists[j-1]);
73  std::swap(match[j],match[j-1]);
74  j--;
75  }
76  }
77 
78  for (int i=0; i<nn; ++i) {
79  matches[i] = match[i+skip];
80  }
81 }
82 
83 
84 template <typename Distance>
85 void compute_ground_truth(const Matrix<typename Distance::ElementType>& dataset, const Matrix<typename Distance::ElementType>& testset, Matrix<int>& matches,
86  int skip=0, Distance d = Distance())
87 {
88  for (size_t i=0; i<testset.rows; ++i) {
89  find_nearest<Distance>(dataset, testset[i], matches[i], (int)matches.cols, skip, d);
90  }
91 }
92 
93 
94 }
95 
97 
98 #endif //OPENCV_FLANN_GROUND_TRUTH_H_
T distance(T... args)
Definition: flann.hpp:60
T swap(T... args)