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?
Asked
Active
Viewed 3,094 times
1

Jakub Hampl
- 39,863
- 10
- 77
- 106

emykindman
- 193
- 1
- 3
- 8
-
Mean shift: http://stackoverflow.com/questions/4831813/image-segmentation-using-mean-shift-explained/4835340#4835340 – Dr. belisarius Mar 22 '11 at 12:58
-
K-Means example: http://stackoverflow.com/questions/3165867/create-a-summary-description-of-a-schedule-given-a-list-of-shifts/3251229#3251229 – Dr. belisarius Mar 22 '11 at 12:59
-
this link is for mean shift segmentation not clustering . – emykindman Mar 22 '11 at 16:01
-
It's the same algorithm used for lightly different purposes. See for example http://www.sci.utah.edu/~fletcher/CS7960/homeworks/hw3.pdf – Dr. belisarius Mar 22 '11 at 16:35
1 Answers
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
-
so is there any implementation for meanshift in c# , or steps to iplement it ? – emykindman Mar 22 '11 at 12:57
-
Implementation of meanshift is included to OpenCV library. EmguCv is a binding to C#. Doesn't it contain meanshift interface? – Andrey Sboev Mar 22 '11 at 13:03
-
ok, what i've wrote about using meanshift is related to camshift. – Andrey Sboev Mar 22 '11 at 13:07