Quick Shift and Kernel Methods for Mode Seeking

这篇论文介绍了快速切换(Quickshift)和核方法在模式寻找中的应用,它们能够将模式寻找算法扩展到非欧几里得空间。相比于传统的均值平移,快速切换在保持聚类效果的同时,通过调整参数平衡了过分割和欠分割问题,且在实践中运行速度更快。此外,快速切换在图像分割任务中表现出与均值平移相当甚至更好的性能,但计算时间更短。
摘要由CSDN通过智能技术生成

日常读论文(1)

在这里插入图片描述
Quick shift and kernel methods for mode seeking, Vedaldi, A. and Soatto, S. European Conference on Computer Vision, 2008

Overview

In this paper we show that the computational complexity of Euclidean
medoid shift is only O(dN2) (with a small constant), which makes it
faster (not slower!) than mean shift (Sect. 3).

In summary, we show that kernels extend mode seeking
algorithms to non-Euclidean spaces in a simple, general and efficient way

In this paper we exploited kernels to extend mean shift and other mode seeking
algorithms to a non-Euclidean setting.

We also introduced quick shift, which can balance under- and over-frag-
mentation of the clusters by the choice of a real parameter. We showed that,
in practice, this algorithm is very competitive, resulting in good (and sometimes
better) segmentations compared to mean shift, at a fraction of the computation
time.

Mode-seeking algorithm comparsion

在这里插入图片描述

  • Mean shift moves the points uphill towards the mode approximately
    following the gradien (left)
  • Medoid shift approximates mean shift trajectories by
    connecting data points. (middle)
  • Quick shift (Sect. 3) seeks the energy modes
    by connecting nearest neighbors at higher energy levels, trading-off mode over- and
    under-fragmentation.(right)

Application: Image segmentation

Comparing their execution time, quick shift is faster.
在这里插入图片描述

Skimage library-segmentation-quickshift

from skimage.segmentation import quickshift
img = "../image/test/3096.jpg"
img = io.imread(img)
segments_quick = quickshift(img, kernel_size=5, max_dist=10, ratio=0.5)

在这里插入图片描述

在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值