Skip to content

Given an image, the program clusters the major colours in the image together to give a colour bar

Notifications You must be signed in to change notification settings

Ro297/K-means-Clustering-Image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

K Means Clustering - Image

K-means clustering is a form of unsupervised learning, which is used when you have unlabelled data. The goal of this algorithm is to find groups in the data, with the number of groups represented by the variable K. The algorithm works iteratively to assign each data point to one of K groups based on the features that are provided. Data points are clustered based on feature similarity. The results of the K-means clustering algorithm are:

  1. The centroids of the K clusters, which can be used to label new data
  2. Labels for the training data (each data point is assigned to a single cluster)

Rather than defining groups before looking at the data, clustering allows you to find and analyze the groups that have formed organically. The "Choosing K" section below describes how the number of groups can be determined. Source

About

Given an image, the program clusters the major colours in the image together to give a colour bar

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages