登录
首页 » Others » 点云库PCL学习教程(全16章)+源码

点云库PCL学习教程(全16章)+源码

于 2020-12-07 发布
0 260
下载积分: 1 下载次数: 1

代码说明:

点云库PCL学习教程(全16章)+源码1. 完整版2.高清版3.完整源码

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

发表评论

0 个回复

  • matlab手写卷积神经网络人脸识别matlab.zip
    matlab手写卷积神经网络人脸识别matlab.zip
    2020-05-23下载
    积分:1
  • STK仿真卫星通信实例
    【实例简介】使用STK搭建的同步轨道卫星与两个地面站开展通信,进行通信链路性能评估,可进行误码率仿真
    2021-07-06 00:31:05下载
    积分:1
  • 单相桥式和三相桥式全控整流电路仿真报告
    单相桥式整流电路,三相桥式全控整流电路仿真报告,simuling建模
    2021-05-06下载
    积分:1
  • 利用αβ剪枝和king-queen-move估值实现的亚马逊棋博弈
    该程序仅为c++语言算法,不包含界面。行棋记录:包含六个数字 移动前坐标,移动后坐标,释放障碍坐标输入是回合数和从开始到现在的双方行棋记录,输出是下一步的一条行棋记录。具体的输入输出请参考北京大学人工智能实验室网站botzone下的维基条目。由于botzone的时间限制在1秒内,该程序对不同阶段的搜索层数做了限制,可以在create函数的前几行修改限制。
    2020-12-11下载
    积分:1
  • 新概念51单片机C语言教-入门、提高、开发、拓展全攻略.pdf
    新概念51单片机C语言教程-入门、提高、开发、拓展全攻略.pdf
    2020-12-07下载
    积分: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
  • 遗传算法matlab序m文件
    自己写的一个遗传算法的matlab实现,有注释,实现了基本的遗传算法思想,用于求解函数极大值,初学者可以借鉴,相信有很大帮助价值。缺点是算法难收敛,搞懂算法思想后,大家可自行改进。
    2020-12-11下载
    积分:1
  • 个人简历合集
    个人简历合集本人性格 本人概况个人简介:业余爱好:
    2021-05-06下载
    积分:1
  • 在Simulink中利用simmechanics对三自由度的串联机械臂进行仿真
    在Simulink中利用simmechanics对三自由度的串联机械臂进行仿真
    2020-11-28下载
    积分:1
  • 纯Csm2算法源码
    该资源时纯C源码,可以在任意平台下编译,,本人在QT下经过整理并调试通过,里面有测试数据,其功能有签名,验签,加密和解密等,在windows和linux都可以使用
    2020-12-06下载
    积分:1
  • 696516资源总数
  • 106913会员总数
  • 8今日下载