CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - edges

搜索资源列表

  1. fuc

    0下载:
  2. 破圈法,边割法,避圈法的比较: 当图为连通且边树较少时,用破圈法较好 当图边数较多时,使用边割法和避圈法较好 -breaking lap, cutting edge, avoiding the comparison circle : When map is connected and fewer side tree, breaking lap with a better method when the edges of a few more, the use of cut
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5978
    • 提供者:aa
  1. tudeshengdubianli

    0下载:
  2. 图的深度遍历,用二叉树实现,输入时要遵循二叉树的顶点和边数的对应关系-traverse the depth map, using binary tree realize that the importation of binary tree to be followed when the number of vertices and edges of the relationship
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1121
    • 提供者:朱建鲁
  1. dijkstraautomatique

    0下载:
  2. dijkstra算法,windows和linux下编译通过,可以从文件读取数据,也可以手动输入边数及点数,自动生成边长。-dijkstra algorithm, windows and linux under compile, can read data from the paper, can also manually input edges and points, automatic generation length.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2037
    • 提供者:YIN WEI
  1. Bellman_Fordautomatique

    0下载:
  2. bellmanford算法,windows和linux下编译通过,可以从文件读取数据,也可以手动输入边数及点数,自动生成边长。-bellmanford algorithm, windows and linux under compile, can read data from the paper, can also manually input edges and points, automatic generation length.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2038
    • 提供者:YIN WEI
  1. kthtree

    0下载:
  2. kthtree问题 给定一棵有向树T,树T 中每个顶点u都有一个权w(u);树的每条边(u,v)也都有一个 非负边长d(u,v)。有向树T的每个顶点u 可以看作客户,其服务需求量为w(u)。每条边(u,v)的边长d(u,v) 可以看作运输费用。如果在顶点u 处未设置服务机构,则将顶点u 处的服务需求沿有向树的边(u,v)转移到顶点v 处服务机构需付出的服务转移费用为w(u)*d(u,v)。 树根处已设置了服务机构,现在要在树T中增设k处服务机构,使得整棵树T 的服务转移费用最小-kt
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:218097
    • 提供者:wu
  1. 2722

    0下载:
  2. 北京大学ACM题 Here is a geometric problem. You have an angle and some squares in the first quadrant of the plane rectangular coordinates. The vertex of the angle is fixed on the origin O of the coordinates, and both of its radial lines are specified
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1435
    • 提供者:pengfam
  1. 多种图像边缘检测与分割处理

    0下载:
  2. 程序代码说明 P0401:用Prewitt算子检测图像的边缘 P0402:用不同σ值的LoG算子检测图像的边缘 P0403:用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405:用水线阈值法分割图像 P0406:对矩阵进行四叉树分解 P0407:将图像分为文字和非文字的两个类别 P0408:形态学梯度检测二值图像的边缘 P0409:形态学实例——从PCB图像中删除所有电流线,仅保留芯片对象-code P0401 Note : Prewitt operator to detect
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:41953
    • 提供者:何问宇
  1. 第四章 控制系统的分析方法

    0下载:
  2. 用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405:用水线阈值法分割图像 P0406:对矩阵进行四叉树分解 P0407:将图像分为文字和非文字的两个类别 P0408:形态学梯度检测二值图像的边缘 P0409:形态学实例——从PCB图像中删除所有电流线,仅保留芯片对象-with Canny operator to detect the edges in the image P0404 : image thresholding segmentation P0405 : water
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:1982
    • 提供者:肖雷
  1. 第一章 计算机辅助设计与仿真技术概述

    0下载:
  2. 用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405:用水线阈值法分割图像 P0406:对矩阵进行四叉树分解 P0407:将图像分为文字和非文字的两个类别 P0408:形态学梯度检测二值图像的边缘 P0409:形态学实例——从PCB图像中删除所有电流线,仅保留芯片对象-with Canny operator to detect the edges in the image P0404 : image thresholding segmentation P0405 : water
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:14518
    • 提供者:肖雷
  1. 图的遍历演示

    1下载:
  2. 一. 问题描述很多涉及图上操作的算法都是以图的遍历为基础的。试写一个程序,演示在连通的无向图上访问全部节点的操作。二. 基本要求以邻接多重链表为存储结构。实现连通无向图的深度和广度优先遍历。以用户指定的节点为起点,分别输出每种遍历下的节点访问序列和相应生成树的边集。-one. Descr iption many issues involving maps of algorithms are to traverse the map-based. A written test procedures,
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2575
    • 提供者:雨后阳光
  1. Sea

    0下载:
  2. 用BP网络实现对图像的边缘进行提取,本程序为演示程序,可以看到BP在应用中的效果-BP network of image edges extraction, the procedure for the demonstration program, we can see BP in the application of the results
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:938487
    • 提供者:刘峰
  1. Imageprocessing.rar

    2下载:
  2. 包括图像分析的四部分代码:matlab扩散和高斯函数,线性扩散,线性复扩散,非线性扩散。,It contains four parts: [1]MATLAB function:diffusion.m gauss.m [2]Linear diffusion Applying linear diffusion to images creating linear scale-space. MATLAB code: demo_lin.m Image: haifa1.bmp [3]Li
  3. 所属分类:matlab

    • 发布日期:2017-03-25
    • 文件大小:240077
    • 提供者:吴豪科
  1. shujujiegou

    0下载:
  2. 对任意给定的图(顶点数不小于20,边数不少于30,图的类型可以是有向图、无向图、有向网、无向网),能够输入图的顶点和边(或弧)的信息,并存储到相应存储结构(邻接矩阵、邻接表、十字链表、邻接多重表,任选其中两种类型),对自己所创建的图完成以下操作: -For any given map (not less than 20 vertices, edges not less than 30, the type of map can be a directed graph, undirected g
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:7635
    • 提供者:李朗
  1. playMax

    0下载:
  2. 用回溯法和递归调用的思想实现了多边形游戏算法,用codeblocks开发。输入多边形的N个定点的数值和N条边的运算符,可计算任意断开一条边后计算所得的最大值。-Backtracking and recursive calls with the idea to achieve a polygon game algorithm, using codeblocks development. Input polygon fixed values ​ ​ of N and N edge
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:7757
    • 提供者:pu
  1. Dijkstra

    0下载:
  2. 这个例程,会在多条相同最短路径中选出边数最少的路径.只是改变path域即可在遍历的时候访问到边数少的路径.核心的思想,就是建立一个数组,存放从出发点到当前顶点的最短路径边数.通过每次查看最短路径相同的情况, 即dv + cvw = dw.时,如果 Count[v] + 1 < Count[w]时,就执行 Count[w] = Count[v] + 1, 同时 w -> path = c.-This routine will be the same number of shortest
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:885
    • 提供者:php0
  1. residues

    0下载:
  2. 该文件含残差点数目计算、均方差计算、信噪比计算、边缘等效视数计算-The document containing terms of the number of residues are calculated variance, SNR calculation, calculation of equivalent number of edges
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:1899
    • 提供者:juchengyu
  1. Acquisition_canny

    0下载:
  2. Matlab code to acquire a frame from video input device and find edges using canny algorithm
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:725
    • 提供者:Uncle82
  1. regionbased_seg

    0下载:
  2. The wellknown ChanVese segmentation algorithm from the paper “Active Contours Without Edges,” is a great example of active contours
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:11520
    • 提供者:IrisGA
  1. wavelet-edges

    0下载:
  2. edges detection using wavelet tansform
  3. 所属分类:matlab

    • 发布日期:2017-04-29
    • 文件大小:32815
    • 提供者:bensmoun
  1. projection-functions-in-mouth-detection-edges

    0下载:
  2. In this source code we used integral and variance projection functions and their gradients to find mouth edges.
  3. 所属分类:matlab

    • 发布日期:2017-05-03
    • 文件大小:778105
    • 提供者:Abet
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com