An open API service indexing awesome lists of open source software.

https://github.com/kunukn/single-detect

Detect singles on 2D dimension space
https://github.com/kunukn/single-detect

Last synced: about 2 months ago
JSON representation

Detect singles on 2D dimension space

Awesome Lists containing this project

README

        

Single Detect with C#
=============

Detect singles and K-nearest neighbors in 2D dimension space
* Console code examples for K-nearest neighbors (knn) and singles
* Gui code examples for knn and singles (WPF with animation and mouse interaction, i.e. dynamic data)
* Algorithm strategy option between Grid, Naive and KdTree
* Option to apply knn on same type points only
* Euclidean distance is used


Single detection
------------

About Single detection? Read this [blog](http://kunuk.wordpress.com/2013/01/13/single-detection-in-2d-dimension).

![Single Detect](https://raw.github.com/kunukn/single-detect/master/img/singledetect.gif "single detect image")

The red colors are the identified singles.


K-nearest neighbor
------------

About K-nearest neighbor? Read this [blog](http://kunuk.wordpress.com/2013/01/21/k-nearest-neighbor-in-2d-dimension-space).

![K Nearest Neighbor](https://raw.github.com/kunukn/single-detect/master/img/knn.gif "knn image")

The origin in the center is the red color.

You can move the mouse pointer around and the neighbors will be updated.

The pink colors are the nearest neighbors and are slightly larger in size.

![K Nearest Neighbor](https://raw.github.com/kunukn/single-detect/master/img/knn2.gif "knn image2")

Nearest neighbors by same type only. The origin is the red and the same type are all the purple colors.

The identified nearest neighbors are the purple colors slightly larger in size

(Only supported in Naive and Grid strategy algorithm).