毕业设计要做图像分割 识别什么的。

看论文看到 superpixels 开始脑补是  像素插值算出来的

后来越看越不想,搜索发现根本是另外一回事

http://blog.sina.com.cn/s/blog_50363a7901011dtd.html

有定义

Many existing algorithms in computer vision use the pixel-grid as the underlying representation. For example, stochastic models of images, such as Markov random fields, are often defined on this regular grid. Or, face detection is typically done by matching stored templates to every fixed-size (say, 50x50) window in the image.

The pixel-grid, however, is not a natural representation of visual scenes. It is rather an "artifact" of a digital imaging process. It would be more natural, and presumably more efficient, to work with perceptually meaningful entities obtained from a low-level grouping process. For example, we can apply the Normalized Cuts algorithm to partition an image into, say, 500 segments (what we call superpixels).

低级特征分组处理的结果 就叫做 superpixels

Empirical Studies and Applications]" title="超像素:以经验为根据的研究和应用[Superpixel: Empirical Studies and Applications]" action-data="http%3A%2F%2Fttic.uchicago.edu%2F~xren%2Fresearch%2Fsuperpixel%2Fimages%2F100048.jpg" action-type="show-slide" style="margin: 0px; padding: 0px; border-width: 0px; list-style: none;"> Empirical Studies and Applications]" title="超像素:以经验为根据的研究和应用[Superpixel: Empirical Studies and Applications]" action-data="http%3A%2F%2Fttic.uchicago.edu%2F~xren%2Fresearch%2Fsuperpixel%2Fimages%2F100048_seg.jpg" action-type="show-slide" style="margin: 0px; padding: 0px; border-width: 0px; list-style: none;">
(a) (b)
Empirical Studies and Applications]" title="超像素:以经验为根据的研究和应用[Superpixel: Empirical Studies and Applications]" action-data="http%3A%2F%2Fttic.uchicago.edu%2F~xren%2Fresearch%2Fsuperpixel%2Fimages%2F100048_overseg.jpg" action-type="show-slide" style="margin: 0px; padding: 0px; border-width: 0px; list-style: none;"> Empirical Studies and Applications]" title="超像素:以经验为根据的研究和应用[Superpixel: Empirical Studies and Applications]" action-data="http%3A%2F%2Fttic.uchicago.edu%2F~xren%2Fresearch%2Fsuperpixel%2Fimages%2F100048_seg_overseg.jpg" action-type="show-slide" style="margin: 0px; padding: 0px; border-width: 0px; list-style: none;">
(c) (d)

a是待处理图片,b是人类的视觉分割,c是superpixel map,d是根据c新做的人类视觉分割

其方法有多种

http://blog.sina.com.cn/s/blog_6f126f5b010134a3.html 方法简介

超像素 superpixels 是什么东西的更多相关文章

  1. 超像素经典算法SLIC的代码的深度优化和分析。

    现在这个社会发展的太快,到处都充斥着各种各样的资源,各种开源的平台,如github,codeproject,pudn等等,加上一些大型的官方的开源软件,基本上能找到各个类型的代码.很多初创业的老板可能 ...

  2. OpenCV 基于超像素分割的图像区域选取方法及源码

    本系列文章由 @yhl_leo 出品,转载请注明出处. 文章链接: http://blog.csdn.net/yhl_leo/article/details/51386993 工程源码GitHub: ...

  3. Qt之VLFeat SLIC超像素分割(Cpp版)

    源地址:http://yongyuan.name/blog/vlfeat-slic-with-qt.html 近段时间学了点Qt,恰好前段时间用借助VLfeat以及OpenCV捣鼓了SLIC超像素分割 ...

  4. OpenCV3三种超像素分割算法源码以及效果

    OpenCV3中超像素分割算法SEEDS,SLIC, LSC算法在Contrib包里,需要使用Cmake编译使用.为了方便起见,我将三种算法的源码文件从contrib包里拎了出来,可以直接使用,顺便比 ...

  5. SILC超像素分割算法详解(附Python代码)

    SILC算法详解 一.原理介绍 SLIC算法是simple linear iterative cluster的简称,该算法用来生成超像素(superpixel) 算法步骤: 已知一副图像大小M*N,可 ...

  6. 实现SLIC算法生成像素画

    前言 像素风最早出现在8bit的电子游戏中,受制于电脑内存大小以及显示色彩单一, 只能使用少量像素来呈现内容,却成就了不少经典的像素游戏.随着内存容量与屏幕分辨率的提升,内存与显示媒介的限制不再是问题 ...

  7. 『超分辨率重建』从SRCNN到WDSR

    超分辨率重建技术(Super-Resolution)是指从观测到的低分辨率图像重建出相应的高分辨率图像.SR可分为两类:    1. 从多张低分辨率图像重建出高分辨率图像    2. 从单张低分辨率图 ...

  8. 《SLIC Superpixels》阅读笔记

    原始链接:http://blog.csdn.net/jkhere/article/details/16819285 或许有改动,请参考原文! SLIC 超像素(SLICSuperpixels) Rad ...

  9. 用OpenCV4实现图像的超分别率

    用OpenCV4实现图像的超分别率 本实验原文链接:· https://arxiv.org/pdf/1807.06779.pdf 原文摘要 单图像超分辨率(SISR)的主要挑战是如何恢复微小纹理等高频 ...

随机推荐

  1. group by 注意的细节 ,

    1. GROUP BY子句必须出现在WHERE子句之后,ORDER BY子句之前. HAVING语句必须在ORDER BY子句之后.(where先执行,再groupby分组:groupby先分组,ha ...

  2. rest_framework --- APIView

    一.什么是rest_framework 它是基于Django的,帮助我们快速开发符合RESTful规范的接口框架. 安装方式有很多种,可以通过pip,或者在pycharm中安装也可以 二.APIVie ...

  3. django-基于中间件实现限制ip频繁访问

    ########django-基于中间件写一个限制频繁登陆######## 额额,标题已经很醒目了,通过中间件去实现,其他方法也可以实现 浏览器前端传来的请求,必须通过中间件,才能到后面路由,视图函数 ...

  4. jquery把数组中年月相同的数组重新组成新的数组

    //原数组var data = { results: [{ id:0, date:'2017-12-12', content:'123' },{ id:0, date:'2017-12-12', co ...

  5. Angular : 基础语句说明, 响应式表单指令, 组件生命周期钩子

  6. html 截图粘粘图片JS

    web前端socket聊天室功能和在线编辑器上传编辑内容的时候经常会需要上传一些图文信息,但是很多编辑器不支持截图粘粘的功能,这里参考了网友分享的可用方法做一个记录. <html> < ...

  7. queue消息队列

    class queue.Queue(maxsize=0) #先入先出 class queue.LifoQueue(maxsize=0) #last in fisrt out  class queue. ...

  8. ruby $LOAD_PATH及类加载

    $LOAD_PATH $LOAD_PATH 指的是Ruby读取外部文件的一个环境变量,其实和windows的环境变量是一个概念.Ruby会在这个环境变量的路径中读取需要require的文件,如果在环境 ...

  9. linux实现DNS轮询实现负载平衡

    DNS 轮询机制会受到多方面的影响,如:A记录的TTL时间长短的影响:别的 DNS 服务器 Cache 的影响:windows 客户端也有一个DNS Cache.这些都会影响 DNS 轮询的效果.因此 ...

  10. 人人都会设计模式:观察者模式--Observer

    https://segmentfault.com/a/1190000012295887 观察者模式是抽像通知者和观察者,达到具体通知者跟具体观察者没有偶合.能达到不管是切换通知者,或者是切换观察者,都 ...