Skip to content

Instantly share code, notes, and snippets.

@llb4ll
Forked from patricksurry/README.md
Last active June 17, 2023 09:48
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save llb4ll/8709363 to your computer and use it in GitHub Desktop.
Save llb4ll/8709363 to your computer and use it in GitHub Desktop.
k-nearest-neighbor search using D3 quadtrees

This example was inspired by patricksurry's D3JS quadtree nearest neighbor algorithm and finds the k-nearest neighbors (shown red) of a new point (shown yellow) using D3's Quadtrees. Orange points are visited but not selected. k is fixed to 10 for this demo.

Choose a new point to classify by clicking on the diagram.

The algorithm is based on one very simple but effective incremental approach first proposed by Hjaltason and Samet in their Ranking in Spatial Databases in 1995.

This is the very first version of the implementation. I would appreciate feedback on how to improve the implementation.

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>Quadtree - nearest neighbor</title>
<style>
.point {
fill: #999;
stroke: #fff;
}
.point.scanned {
fill: orange;
fill-opacity: 1;
stroke: brown;
}
.point.selected {
fill: red;
fill-opacity: 1;
}
.node {
fill: none;
stroke: #ccc;
shape-rendering: crispEdges;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
</style>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var data = d3.range(1000).map(function() {
return [Math.random() * width, Math.random() * height];
});
var quadtree = d3.geom.quadtree()
.extent([[-1, -1], [width + 1, height + 1]])
(data);
var color = d3.scale.linear()
.domain([0, 8]) // max depth of quadtree
.range(["#efe", "#060"]);
var svg = d3.select("body").append("div")
.attr("width", width)
.attr("height", height)
.on("click", function (d) {
var xy = d3.mouse(d3.selectAll('svg')[0][0]);
svg.selectAll("#pt")
.attr("cx", xy[0])
.attr("cy", xy[1]);
clicked();
});
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.on("click", function (d) {
var xy = d3.mouse(d3.selectAll('svg')[0][0]);
svg.selectAll("#pt")
.attr("cx", xy[0])
.attr("cy", xy[1]);
clicked();
});
var rect = svg.selectAll(".node")
.data(nodes(quadtree))
.enter().append("rect")
.attr("class", "node")
.attr("x", function(d) { return d.x1; })
.attr("y", function(d) { return d.y1; })
.attr("width", function(d) { return d.x2 - d.x1; })
.attr("height", function(d) { return d.y2 - d.y1; });
var point = svg.selectAll(".point")
.data(data)
.enter().append("circle")
.attr("class", "point")
.attr("cx", function(d) { return d[0]; })
.attr("cy", function(d) { return d[1]; })
.attr("r", 3);
svg.append("circle")
.attr("id", "pt")
.attr("r", 3)
.attr("cx", width/2)
.attr("cy", height/2)
.style("fill", "yellow");
// PDS Collect a list of nodes to draw rectangles, adding extent and depth data
function nodes(quadtree) {
var nodes = [];
quadtree.depth = 0; // root
quadtree.visit(function(node, x1, y1, x2, y2) {
node.x1 = x1;
node.y1 = y1;
node.x2 = x2;
node.y2 = y2;
nodes.push(node);
for (var i=0; i<4; i++) {
if (node.nodes[i]) node.nodes[i].depth = node.depth+1;
}
});
return nodes;
}
// calculate euclidean distance of two points with coordinates: a(ax, ay) and b(bx, by)
function euclidDistance(ax, ay, bx, by){
return Math.sqrt(Math.pow(ax-bx, 2) + Math.pow(ay-by, 2));
}
// calculate mindist between searchpoint and rectangle
function mindist(x, y, x1, y1, x2, y2){
var dx1 = x - x1, dx2 = x - x2, dy1 = y - y1, dy2 = y - y2;
if (dx1*dx2 < 0) { // x is between x1 and x2
if (dy1*dy2 < 0) { // (x,y) is inside the rectangle
return 0; // return 0 as point is in rect
}
return Math.min(Math.abs(dy1),Math.abs(dy2));
}
if (dy1*dy2 < 0) { // y is between y1 and y2
// we don't have to test for being inside the rectangle, it's already tested.
return Math.min(Math.abs(dx1),Math.abs(dx2));
}
return Math.min( Math.min(euclidDistance(x,y,x1,y1),euclidDistance(x,y,x2,y2)), Math.min(euclidDistance(x,y,x1,y2),euclidDistance(x,y,x2,y1)) );
}
// Find the nodes within the specified rectangle.
function knearest(bestqueue, resultqueue, x, y, k) {
// sort children according to their mindist/dist to searchpoint
bestqueue.sort(function(a, b){
// add minidst to nodes if not there already
[a, b].forEach(function(val, idx, array){
if(val.mindist == undefined){
val.scanned = true;
if(val.leaf){
val.point.scanned=true;
val.mindist = euclidDistance(x, y, val.x, val.y);
}else{
val.mindist = mindist(x, y, val.x1, val.y1, val.x2, val.y2);
}
}
});
return b.mindist - a.mindist;
});
// add nearest leafs if any
for (var i=bestqueue.length-1; i>=0; i--){
var elem = bestqueue[i];
if(elem.leaf){
elem.point.selected = true;
bestqueue.pop();
resultqueue.push(elem);
}else{
break;
}
if(resultqueue.length >=k){
break;
}
}
// check if enough points found
if(resultqueue.length >=k || bestqueue.length == 0){
// return if k neighbors found
return;
}else{
// add child nodes to bestqueue and recurse
var vistitednode = bestqueue.pop();
vistitednode.visited = true;
// add nodes to queue
vistitednode.nodes.forEach(function(val, idx, array){
bestqueue.push(val);
});
// recursion
knearest(bestqueue, resultqueue, x, y, k);
}
}
function clicked() {
pt = d3.selectAll('#pt');
var x = +pt.attr('cx'), y = +pt.attr('cy');
// TODO these values should be stored seperately so that points don't have to be visited after each query
// idea assign unique ids to quadtree nodes and have a separate mindist array
point.each(function(d) { d.scanned = d.selected = false; d.mindist = undefined; });
rect.each(function(d) { d.visited = false; d.mindist = undefined;});
//get nearest neighbors
var bestqueue = new Array(quadtree);
var resultqueue = [];
knearest(bestqueue, resultqueue, x, y, 10);
point.classed("scanned", function(d) { return d.scanned; });
point.classed("selected", function(d) { return d.selected; });
rect.style('fill', function(d) { return d.visited ? color(d.depth) : 'none'; });
}
clicked();
</script>
</body>
</html>
@llb4ll
Copy link
Author

llb4ll commented May 22, 2021

@ffreelance7
Copy link

Do you have version C++?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment