CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - edges

搜索资源列表

  1. ConsoleApplication2

    0下载:
  2. 1.校园导游咨询 【问题描述】 设计一个校园导游程序,为来访的客人提供各种信息查询服务。 【基本要求】 (1)设计你的学校的校园平面图,所含景点不少于10个。以图中顶点表示学校各景点,存放景点名称、代号、简介等信息;以边表示路径,存放路径长度等相关信息。 (2)为来访客人提供图中任意景点的问路查询,即查询任意两个景点之间的一条最短的简单路径。 (3)为来访客人提供图中任意景点相关信息的查询。 【测试数据】 由读者根据实际情况指定。 【实现提示】 一般情况下,校园的
  3. 所属分类:C#编程

    • 发布日期:2017-12-22
    • 文件大小:602112
    • 提供者:anbayz
  1. 26755455dijkstra

    0下载:
  2. Dijkstra(迪杰斯特拉)算法是典型的单源最短路径算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。Dijkstra算法是很有代表性的最短路径算法,在很多专业课程中都作为基本内容有详细的介绍,如数据结构,图论,运筹学等等。注意该算法要求图中不存在负权边。 问题描述:在无向图 G=(V,E) 中,假设每条边 E[i] 的长度为 w[i],找到由顶点 V0 到其余各点的最短路径。(单源最短路径)(Dijkstra (Dijkstra)
  3. 所属分类:其他

  1. 1

    0下载:
  2. GN算法是一种分裂型的社区结构发现算法。该算法根据网络中社区内部高内聚、社区之间低内聚的特点,逐步去除社区之间的边,取得相对内聚的社区结构。(GN algorithm is a divisive community structure discovery algorithm. According to the characteristics of high cohesion within the community and low cohesion between communities, th
  3. 所属分类:大数据

    • 发布日期:2017-12-19
    • 文件大小:1024
    • 提供者:刘小联合
  1. vnttbw

    0下载:
  2. MATLAB源码,P0401:用Prewitt算子检测图像的边缘 不错的 很好(The MATLAB source code, P0401: use Prewitt operator to detect image edges good is very good)
  3. 所属分类:图形图象

    • 发布日期:2017-12-25
    • 文件大小:570368
    • 提供者:Keitl
  1. edges-master

    0下载:
  2. 使用matlab的边缘检测工具箱, 里面包含各种代码(edge detedtion, matlab toolbox)
  3. 所属分类:matlab例程

  1. otrrutor

    0下载:
  2. 用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405(Use Canny operator to detect image edges P0404: image threshold segmentation P0405)
  3. 所属分类:系统编程

    • 发布日期:2017-12-28
    • 文件大小:18432
    • 提供者:sobnelx
  1. calue

    0下载:
  2. 用Prewitt算子检测图像的边缘 P0402:用不同σ值的LoG算子检测图像的边缘(Use Prewitt operator to detect image edges P0402: use different sigma value of LoG operator to detect image edges)
  3. 所属分类:图形/文字识别

    • 发布日期:2017-12-24
    • 文件大小:41984
    • 提供者:alofince
  1. openCV-Practicefh

    0下载:
  2. 人脸识别: 相关功能: 1.将图像转换为灰度显示 2.应用高斯滤波器去除小的边缘 3.计算与画布边缘 4.修改边缘颜色 5.将Mat转换为Xcode的UIImageView显示(Face recognition: Related functions: 1. Convert the image to grayscale display 2. Use gaussian filter to remove small edges 3. Calculate the edge of th
  3. 所属分类:OpenCV

    • 发布日期:2017-12-18
    • 文件大小:31098880
    • 提供者:fangs
  1. susanCorner

    0下载:
  2. 基于SUSAN算法的角点检测,只能检测灰度图像的角点和边缘(Corner detection based on SUSAN algorithm.only the corners and edges of grayscale images can be detected.)
  3. 所属分类:图形图像处理

  1. spectalCluster

    0下载:
  2. 谱聚类是从图论中演化出来的算法,后来在聚类中得到了广泛的应用。它的主要思想是把所有的数据看做空间中的点,这些点之间可以用边连接起来。距离较远的两个点之间的边权重值较低,而距离较近的两个点之间的边权重值较高,通过对所有数据点组成的图进行切图,让切图后不同的子图间边权重和尽可能的低,而子图内的边权重和尽可能的高,从而达到聚类的目的。(Spectral clustering is an algorithm evolved from graph theory, and has been widely u
  3. 所属分类:数学计算

    • 发布日期:2017-12-28
    • 文件大小:1024
    • 提供者:Mr24
  1. edgebox

    0下载:
  2. 提取结构化的边缘特征,然后利用edgebox进行Object Proposals 提取。是ECCV2014的一篇关于目标检测的文章代码《Edge Boxes: Locating Object Proposals from Edges》(Extracting structured edge features, and then using edgebox to extract Object Proposals)
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:32542720
    • 提供者:青木华藏
  1. 贪婪算法

    0下载:
  2. 用某种方法选择n-1条边使它们形成G的最小生成树。至少可以采用三种不同的贪婪策略来选择这n-1条边。(Choose n-1 edges in some way so that they form the minimum spanning tree of G. At least three different greedy strategies can be used to select this n-1 edge.)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-30
    • 文件大小:79872
    • 提供者:涂海华
  1. Teesennerat

    0下载:
  2. Tiffs paper presents a new operator called entropy operator for extracting edges using entropy of brightness in a local region of a picture. This operator calculates the entropy of brightness in the region. The entropy(Edge extraction is one of the
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-29
    • 文件大小:755712
    • 提供者:song86
  1. 多边形(合)

    0下载:
  2. 画多边形,梯形,对话框输入宽高宽画四边形,输入上宽下宽高画梯形,可倒四边圆角量,也有多边形选择,输入边数,如5边,然后输入边长画出多边形(Draw a polygon, trapezoidal, wide width of the dialog box enter the picture input quadrilateral, width width and height can be inverted trapezoid drawing, four have rounded, polygon
  3. 所属分类:CAD

    • 发布日期:2017-12-31
    • 文件大小:14336
    • 提供者:ll13416725557
  1. CANNY

    0下载:
  2. 根据CNNAY算法的4个步骤 1. 用高斯滤波器平滑图像;(图像去噪) 2. 用一阶偏导有限差分计算梯度幅值和方向;(特征增强) 3. 对梯度幅值进行非极大值抑制 ;(边缘检测) 4. 用双阈值算法检测和连接边缘。(形态学处理) 编写的边缘检测程序,简单实用(There are four parts of Canny edge detection: 1. smoothing the image with Gauss filter; (image denoising) 2. c
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-30
    • 文件大小:1024
    • 提供者:UJSLEMON
  1. matlab作业

    0下载:
  2. MATLAB编写简单应用程序 ,可以对图像进行简单的处理,包括灰度亮度的调整,截图,查找边缘等操作(MATLAB to write simple applications, you can simply deal with the image, including grayscale brightness adjustment, screenshots, looking for edges and other operations)
  3. 所属分类:图形图象

    • 发布日期:2018-01-01
    • 文件大小:8192
    • 提供者:赤壁123
  1. 哈密顿

    0下载:
  2. 由c语言编程,在window下运行,为无向图,先读入两个数据,第一个数据为点的个数,第二个数据为边的个数。此后依次输入哪两个点之前连线,即完成无向图。之后程序会输出0和1,0代表不存在哈密顿回路,1代表存在哈密顿回路(Programming by C language, run under window, for undirected graph, read two data first, the first data is the number of points, the second da
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:19456
    • 提供者:晓&风
  1. ECStrategy

    0下载:
  2. 基于元胞自动机的删除边的免疫策略,没有重连算法,自己的实现欢迎大家指正(Implementation of immune policy with deleting edges)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:1024
    • 提供者:CarinaHu
  1. cohen_sutherland_clipping

    0下载:
  2. ohen-sutherland直线裁剪算法(The algorithm also called the encoding algorithm, the clipping window four edges where the line can put the plane into 9 regions, each region of the encoding including four is inside the 0 and 1 (for example, x coordinates less
  3. 所属分类:绘图程序

    • 发布日期:2018-01-02
    • 文件大小:18831360
    • 提供者:Phsyi
  1. Edge-Detection-master

    0下载:
  2. This project is about detecting edges using canny edge detector. The canny edge detector is implemented from scratch using c++. Steps involved in creating a canny edge detector: STEP 1: smoothen the image using gaussian blur. STEP 2: Use differential
  3. 所属分类:图形图像处理

    • 发布日期:2018-01-03
    • 文件大小:5120
    • 提供者:穿山甲说
« 1 2 ... 34 35 36 37 38 3940 41 42 »
搜珍网 www.dssz.com