Introduction to Image Segmentation with K-Means clustering

By KDnuggets - 2021-03-17

Description

Image segmentation is the classification of an image into different groups. Many kinds of research have been done in the area of image segmentation using clustering. In this article, we will explore u ...

Summary

  • Image segmentation is the classification of an image into different groups.
  • Clustering algorithms are unsupervised algorithms but are similar to Classification algorithms but the basis is different.
  • In addition, increasing K without penalty will always reduce the amount of error in the resulting clustering, to the extreme case of zero error if each data point is considered its own cluster (i.e., when K equals the number of data points, n).
  • If an appropriate value of K is not apparent from prior knowledge of the properties of the data set, it must be chosen somehow.

 

Topics

  1. Machine_Learning (0.18)
  2. Backend (0.17)
  3. NLP (0.13)

Similar Articles

Targeted adversarial attacks with Keras and TensorFlow

By PyImageSearch - 2020-10-26

In this tutorial, you will learn how to perform targeted adversarial attacks and construct targeted adversarial images using Keras, TensorFlow, and Deep Learning. Last week’s tutorial covered untarget ...