登录
首页 » Others » matlab边界跟踪,输出边界点的坐标。

matlab边界跟踪,输出边界点的坐标。

于 2020-07-02 发布
0 118
下载积分: 1 下载次数: 2

代码说明:

matlab 边界跟踪程序,图像要求为二值图像,输出为边界的点的坐标。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • hybrid-astar-planning:混合A *路径规划-源码.zip
    【实例简介】混合A *路径规划 此项目是之后的一项连续工作。 感谢他的出色工作。 该项目为非完整车辆实现了Hybrid-A *路径规划算法。 它受此启发。 我的贡献如下 测试并更新代码,使其至少可以在Linux Ubuntu和Mac OS中运行。 使用面向对象编程来重构代码结构。 用A *搜索替换Dijkstra的2d搜索算法。 将启发式函数更新为max(非完整,无障碍,完整,无障碍)。 本文介绍了Hybrid-A *算法,即。 尽管该代码可以作为示例在此存储库中独立运行,但可以随时运行实际的自动驾驶汽车。 档案结构 . ├── CMakeLists.txt ├── README.md ├── data │   ├── map1.png │   ├── map2.png │   └── map3.png ├── include │   ├── algorithm.h │   ├── gu
    2021-11-24 00:41:55下载
    积分:1
  • java人事管理系统毕业设计
    基于java的人事系统开发代码和论文,人事管理系统系统主要功能有实现管理员登录功能,实现员工信息的添加、查询、修改、删除,实现管理员的增加、查询、修改、删除,培训的添加、删除和修改。还有员工的工资情况,员工可以按照各种条件对工资进行查询。能够对员工实行培训录入培训资料,修改和删除培训资料。员工各种信息的输入,包括员工基本信息、学历信息、婚姻状况、职称等。对于转出、辞职、退休员工信息的删除。按照某种条件查询、统计符合条件的员工信息。对查询、统计的结果打印输出。人事系统的使用帮助。
    2020-12-03下载
    积分:1
  • bladed软件使用教
    bladed软件的使用方法,便于更好的应用
    2020-11-30下载
    积分:1
  • matlab SIRT CT重建算法
    基本的SIRT重建算法,已调试,可以运行。做的比较简单,有兴趣的话可以在这个的基础上加点东西。欢迎交流讨论~
    2020-12-04下载
    积分:1
  • 六自由度机械臂正逆运动Matlab仿真
    自己做的机械臂仿真,使用的MATLAB2016b。运行znGUI使用,动态显示机械臂变化,各个关节角的具体变化从变量cz中提取
    2020-11-30下载
    积分:1
  • QT设计图标登录及三个游戏设计(潜艇游戏,俄罗斯方块游戏,人机交互的球球游戏)
    进入登陆游戏主界面,点击XX游戏图标时弹出XX游戏,游戏图标按住左键可以移动,双击进入,点击右键退出。潜艇游戏,俄罗斯方块游戏,人机交互的球球游戏
    2020-03-03下载
    积分:1
  • flex中调用dll,测试可用
    flex中调用dll,可以让大家方便的控制各种硬件设备等
    2020-11-30下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 基于DTW算法的语音识别原理与Matlab实现〔论文说明+源代码〕
    以一个能识别数字0~9的语音识别系统的实现过程为例,阐述了基于DTW算法的特定人孤立词语音识别的基本原理和关键技术。其中包括对语音端点检测方法、特征参数计算方法和DTW算法实现的详细讨论,最后给出了在Matlab下的编程方法和实验结果。
    2020-12-12下载
    积分:1
  • simulink全方位教.rar
    【实例简介】包含了一些常用技术的讲义,simulink方面的教程和资源。具体到实际问题的解决,希望对大家有所帮助
    2021-12-11 00:42:29下载
    积分:1
  • 696524资源总数
  • 103838会员总数
  • 43今日下载