如何进行均值漂移聚类?任何带有或不带有 emgu 的 c# 代码都可用吗?
我需要知道如何进行均值漂移聚类,我正在寻找使用或不使用 emgu 库的任何实现。
我还想知道 k 均值和均值偏移与其他类型的偏移有什么区别?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
K-Means 是一种聚类算法,它将度量空间中的对象组合成组。 Meanshift 是定位密度函数最大值的过程,例如用于跟踪场景中的物体。
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.