1

I need to know how to make mean shift clustering, I'm searching for any implementation using emgu library or without it.
I also want to know what is the difference between k-mean and mean shift and other kind of shifts?

Jakub Hampl
  • 39,863
  • 10
  • 77
  • 106
emykindman
  • 193
  • 1
  • 3
  • 8

1 Answers1

0

K-Means is a clustering algorithm which combines into groups objects in metric space. Meanshift is a procedure for locating the maxima of a density function, which is used for example for tracking objects on the scene.

Andrey Sboev
  • 7,454
  • 1
  • 20
  • 37