您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. median filtering 中值滤波 matlab程序

  2. 自己写的matlab中值滤波程序,简单易懂。滤除噪音,图像模糊
  3. 所属分类:其它

    • 发布日期:2009-05-17
    • 文件大小:993
    • 提供者:ztttccc
  1. median.c求中位数

  2. 求中位数,按照提示输入即可,简单易用。To get the median point, quite easy to use.
  3. 所属分类:C

    • 发布日期:2010-02-26
    • 文件大小:968
    • 提供者:lhangfan
  1. Motion adaptive interpolation with horizontal motion detection for deinterlacing.pdf

  2. 这篇论文主要讲了去隔行中的运动检测算法及边沿插值算法(ELA-Median).
  3. 所属分类:其它

    • 发布日期:2010-05-22
    • 文件大小:898048
    • 提供者:stevenlee0221
  1. Facility Location:Concepts,Models,Algorithms and Case Studies

  2. 介绍Facility Location相关算法的综述性的经典文献,推荐研究P-Median和P-Center的同僚们阅读。
  3. 所属分类:其它

    • 发布日期:2010-07-14
    • 文件大小:6291456
    • 提供者:phoenix05056
  1. Methods for Solving the p-Median Problem:An AnnotatedBibliography

  2. 有关P-Median问题相关算法分类的综述文献
  3. 所属分类:其它

    • 发布日期:2010-07-14
    • 文件大小:292864
    • 提供者:phoenix05056
  1. fingding the median distributively

  2. fingding the median distributively
  3. 所属分类:专业指导

    • 发布日期:2011-01-09
    • 文件大小:316416
    • 提供者:mostovoi1234
  1. xilinx中值滤波程序vhdl源码 median filter

  2. FPGA应用。VHDL语言实现图像处理中的种植滤波
  3. 所属分类:其它

    • 发布日期:2011-07-29
    • 文件大小:537600
    • 提供者:liywf
  1. A fast algorithm fortwo-dimensional median filtering

  2. A fast algorithm fortwo-dimensional median filtering
  3. 所属分类:专业指导

    • 发布日期:2011-10-18
    • 文件大小:1048576
    • 提供者:qly212
  1. A fast median filter using AltiVec

  2. A fast median filter using AltiVec,一种有效的中值滤波快速算法。
  3. 所属分类:其它

    • 发布日期:2012-08-12
    • 文件大小:228352
    • 提供者:chenmoumou
  1. a new directional weighted median filter

  2. a new directional weighted median filter for removal of random-valued impulse noise,附带matlab代码的
  3. 所属分类:其它

    • 发布日期:2012-12-06
    • 文件大小:1048576
    • 提供者:henley1989
  1. On Median Graphs_Properties_Algorithms_and Applications

  2. On Median Graphs_Properties_Algorithms_and Applications
  3. 所属分类:其它

    • 发布日期:2008-08-28
    • 文件大小:363520
    • 提供者:HongKongMilkTea
  1. median filtering

  2. matlab编写median滤波 去除椒盐噪声(给出图片实例) 最后附加自带程序medfilt2(J)
  3. 所属分类:其它

    • 发布日期:2013-05-04
    • 文件大小:1024
    • 提供者:jixiangsong
  1. 题目1004:Median

  2. Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} is 12, and the median of S2={9, 10, 15, 16, 17} is 15. The median of two sequences is defined to be the med
  3. 所属分类:C/C++

  1. Analysis of Median of Medians Algorithm

  2. This document contains a more detailed analysis of the Select or median of medians algorithm than is contained in the text.
  3. 所属分类:其它

    • 发布日期:2014-01-13
    • 文件大小:63488
    • 提供者:wjianwen
  1. The gravity p-median model

  2. sci文章 The gravity p-median model
  3. 所属分类:物流

    • 发布日期:2014-03-28
    • 文件大小:230400
    • 提供者:u014413494
  1. Median Filtering in Constant time 文章源代码

  2. 论文Median filtering in constant time 一文提供的源代码
  3. 所属分类:C

    • 发布日期:2016-06-24
    • 文件大小:5120
    • 提供者:u013035197
  1. 基于遗传算法的带容量限制的P-median设施选址问题

  2. 备注无比详细,格式美观,绝对看得懂!!基于启发式遗传算法的带容量限制的P-median设施选址问题(在N个需求点中找出P个点建设设施满足全部需求,各点设施建设有容量限制,目标为最小化距离与对应需求量的乘积),通过轮盘法进行染色体种群进化,数据部分可导入文件计算,可动态设置种群规模和繁衍次数。
  3. 所属分类:C/C++

    • 发布日期:2018-06-11
    • 文件大小:11264
    • 提供者:qq_26791373
  1. multi-period-balanced-p-median-源码

  2. multi-period-balanced-p-median
  3. 所属分类:其它

    • 发布日期:2021-03-18
    • 文件大小:219152384
    • 提供者:weixin_42173205
  1. k-median问题反向贪心随机算法

  2. k-median问题反向贪心随机算法
  3. 所属分类:其它

    • 发布日期:2021-02-21
    • 文件大小:391168
    • 提供者:weixin_38725531
  1. Python数据处理numpy.median的实例讲解

  2. numpy模块下的median作用为: 计算沿指定轴的中位数 返回数组元素的中位数 其函数接口为: median(a, axis=None, out=None, overwrite_input=False, keepdims=False) 其中各参数为: a:输入的数组; axis:计算哪个轴上的中位数,比如输入是二维数组,那么axis=0对应行,axis=1对应列; out:用于放置求取中位数后的数组。 它必须具有与预期输出相同的形状和缓冲区长度; overwrite_input:一个bo
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:44032
    • 提供者:weixin_38617297
« 12 3 4 5 6 7 8 9 10 »