Is there a meanshift clustering implementation in OpenCV? If so, is there any documentation about how I can do it?
OpenCV - Meanshift clustering
13.1k Views Asked by deniz At
2
There are 2 best solutions below
1

There is a pyramid mean shift filtering that can be used as a building block for creating your own mean shift segmentation or a GPU based mean shift segmentation.
As you may know, this is not the place to ask this kind of questions (here you should come with programming problems...).
Regarding your question, OpenCv only has meanshift for tracking. For example, here you can find a tutorial for Python. The basic idea of using meanshift is the following:
the result
track_window
will contain the new position of the element. As simple as that. Hope it helps