kd_fix_rad_search.cpp
上传用户:chinafayin
上传日期:2022-04-05
资源大小:153k
文件大小:7k
源码类别:

并行计算

开发平台:

Visual C++

  1. //----------------------------------------------------------------------
  2. // File: kd_fix_rad_search.cpp
  3. // Programmer: Sunil Arya and David Mount
  4. // Description: Standard kd-tree fixed-radius kNN search
  5. // Last modified: 05/03/05 (Version 1.1)
  6. //----------------------------------------------------------------------
  7. // Copyright (c) 1997-2005 University of Maryland and Sunil Arya and
  8. // David Mount.  All Rights Reserved.
  9. // 
  10. // This software and related documentation is part of the Approximate
  11. // Nearest Neighbor Library (ANN).  This software is provided under
  12. // the provisions of the Lesser GNU Public License (LGPL).  See the
  13. // file ../ReadMe.txt for further information.
  14. // 
  15. // The University of Maryland (U.M.) and the authors make no
  16. // representations about the suitability or fitness of this software for
  17. // any purpose.  It is provided "as is" without express or implied
  18. // warranty.
  19. //----------------------------------------------------------------------
  20. // History:
  21. // Revision 1.1  05/03/05
  22. // Initial release
  23. //----------------------------------------------------------------------
  24. #include "kd_fix_rad_search.h" // kd fixed-radius search decls
  25. //----------------------------------------------------------------------
  26. // Approximate fixed-radius k nearest neighbor search
  27. // The squared radius is provided, and this procedure finds the
  28. // k nearest neighbors within the radius, and returns the total
  29. // number of points lying within the radius.
  30. //
  31. // The method used for searching the kd-tree is a variation of the
  32. // nearest neighbor search used in kd_search.cpp, except that the
  33. // radius of the search ball is known.  We refer the reader to that
  34. // file for the explanation of the recursive search procedure.
  35. //----------------------------------------------------------------------
  36. //----------------------------------------------------------------------
  37. // To keep argument lists short, a number of global variables
  38. // are maintained which are common to all the recursive calls.
  39. // These are given below.
  40. //----------------------------------------------------------------------
  41. ANN_THREAD_LOCAL int ANNkdFRDim; // dimension of space
  42. ANN_THREAD_LOCAL ANNpoint ANNkdFRQ; // query point
  43. ANN_THREAD_LOCAL ANNdist ANNkdFRSqRad; // squared radius search bound
  44. ANN_THREAD_LOCAL double ANNkdFRMaxErr; // max tolerable squared error
  45. ANN_THREAD_LOCAL ANNpointArray ANNkdFRPts; // the points
  46. ANN_THREAD_LOCAL ANNmin_k* ANNkdFRPointMK; // set of k closest points
  47. ANN_THREAD_LOCAL int ANNkdFRPtsVisited; // total points visited
  48. ANN_THREAD_LOCAL int ANNkdFRPtsInRange; // number of points in the range
  49. //----------------------------------------------------------------------
  50. // annkFRSearch - fixed radius search for k nearest neighbors
  51. //----------------------------------------------------------------------
  52. int ANNkd_tree::annkFRSearch(
  53. ANNpoint q, // the query point
  54. ANNdist sqRad, // squared radius search bound
  55. int k, // number of near neighbors to return
  56. ANNidxArray nn_idx, // nearest neighbor indices (returned)
  57. ANNdistArray dd, // the approximate nearest neighbor
  58. double eps) // the error bound
  59. {
  60. ANNkdFRDim = dim; // copy arguments to static equivs
  61. ANNkdFRQ = q;
  62. ANNkdFRSqRad = sqRad;
  63. ANNkdFRPts = pts;
  64. ANNkdFRPtsVisited = 0; // initialize count of points visited
  65. ANNkdFRPtsInRange = 0; // ...and points in the range
  66. ANNkdFRMaxErr = ANN_POW(1.0 + eps);
  67. ANN_FLOP(2) // increment floating op count
  68. ANNkdFRPointMK = new ANNmin_k(k); // create set for closest k points
  69. // search starting at the root
  70. root->ann_FR_search(annBoxDistance(q, bnd_box_lo, bnd_box_hi, dim));
  71. for (int i = 0; i < k; i++) { // extract the k-th closest points
  72. if (dd != NULL)
  73. dd[i] = ANNkdFRPointMK->ith_smallest_key(i);
  74. if (nn_idx != NULL)
  75. nn_idx[i] = ANNkdFRPointMK->ith_smallest_info(i);
  76. }
  77. delete ANNkdFRPointMK; // deallocate closest point set
  78. return ANNkdFRPtsInRange; // return final point count
  79. }
  80. //----------------------------------------------------------------------
  81. // kd_split::ann_FR_search - search a splitting node
  82. // Note: This routine is similar in structure to the standard kNN
  83. // search.  It visits the subtree that is closer to the query point
  84. // first.  For fixed-radius search, there is no benefit in visiting
  85. // one subtree before the other, but we maintain the same basic
  86. // code structure for the sake of uniformity.
  87. //----------------------------------------------------------------------
  88. void ANNkd_split::ann_FR_search(ANNdist box_dist)
  89. {
  90. // check dist calc term condition
  91. if (ANNmaxPtsVisited != 0 && ANNkdFRPtsVisited > ANNmaxPtsVisited) return;
  92. // distance to cutting plane
  93. ANNcoord cut_diff = ANNkdFRQ[cut_dim] - cut_val;
  94. if (cut_diff < 0) { // left of cutting plane
  95. child[ANN_LO]->ann_FR_search(box_dist);// visit closer child first
  96. ANNcoord box_diff = cd_bnds[ANN_LO] - ANNkdFRQ[cut_dim];
  97. if (box_diff < 0) // within bounds - ignore
  98. box_diff = 0;
  99. // distance to further box
  100. box_dist = (ANNdist) ANN_SUM(box_dist,
  101. ANN_DIFF(ANN_POW(box_diff), ANN_POW(cut_diff)));
  102. // visit further child if in range
  103. if (box_dist * ANNkdFRMaxErr <= ANNkdFRSqRad)
  104. child[ANN_HI]->ann_FR_search(box_dist);
  105. }
  106. else { // right of cutting plane
  107. child[ANN_HI]->ann_FR_search(box_dist);// visit closer child first
  108. ANNcoord box_diff = ANNkdFRQ[cut_dim] - cd_bnds[ANN_HI];
  109. if (box_diff < 0) // within bounds - ignore
  110. box_diff = 0;
  111. // distance to further box
  112. box_dist = (ANNdist) ANN_SUM(box_dist,
  113. ANN_DIFF(ANN_POW(box_diff), ANN_POW(cut_diff)));
  114. // visit further child if close enough
  115. if (box_dist * ANNkdFRMaxErr <= ANNkdFRSqRad)
  116. child[ANN_LO]->ann_FR_search(box_dist);
  117. }
  118. ANN_FLOP(13) // increment floating ops
  119. ANN_SPL(1) // one more splitting node visited
  120. }
  121. //----------------------------------------------------------------------
  122. // kd_leaf::ann_FR_search - search points in a leaf node
  123. // Note: The unreadability of this code is the result of
  124. // some fine tuning to replace indexing by pointer operations.
  125. //----------------------------------------------------------------------
  126. void ANNkd_leaf::ann_FR_search(ANNdist)
  127. {
  128. register ANNdist dist; // distance to data point
  129. register ANNcoord* pp; // data coordinate pointer
  130. register ANNcoord* qq; // query coordinate pointer
  131. register ANNcoord t;
  132. register int d;
  133. for (int i = 0; i < n_pts; i++) { // check points in bucket
  134. pp = ANNkdFRPts[bkt[i]]; // first coord of next data point
  135. qq = ANNkdFRQ; // first coord of query point
  136. dist = 0;
  137. for(d = 0; d < ANNkdFRDim; d++) {
  138. ANN_COORD(1) // one more coordinate hit
  139. ANN_FLOP(5) // increment floating ops
  140. t = *(qq++) - *(pp++); // compute length and adv coordinate
  141. // exceeds dist to k-th smallest?
  142. if( (dist = ANN_SUM(dist, ANN_POW(t))) > ANNkdFRSqRad) {
  143. break;
  144. }
  145. }
  146. if (d >= ANNkdFRDim && // among the k best?
  147.    (ANN_ALLOW_SELF_MATCH || dist!=0)) { // and no self-match problem
  148. // add it to the list
  149. ANNkdFRPointMK->insert(dist, bkt[i]);
  150. ANNkdFRPtsInRange++; // increment point count
  151. }
  152. }
  153. ANN_LEAF(1) // one more leaf node visited
  154. ANN_PTS(n_pts) // increment points visited
  155. ANNkdFRPtsVisited += n_pts; // increment number of points visited
  156. }