c# - Data Clustering approach -


I am writing a program in C # in which I have 200 digits displayed on an image, however, Cluster, and I want to find a way to "cluster". In other words, perhaps draw a circle / oval around the cluster points.

Has anyone seen any way to do this? I've heard about K-Earth clustering, but I'm not sure how to implement it in C #.

Any favorite implementation is out there?

The tool will give you a list of the center of the cluster and the component number. Then you can pull a circle around the point on the radius, which is the maximum (or mean) distance of the component points or you can calculate the convex solution of the point and use it as an "envelope" around the cluster. can do.

K-means is a useful extension of k-means ++ modification which works better to choose initial coordinates.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -