码迷,mamicode.com
首页 >  
搜索关键字:depth    ( 1433个结果
个人卷积神经网络学习笔记(我的理解)
学习过程相当于使用一个滤波器,定义滤波器大小和深度步长,在原图像上滑动,滤波器上每一个深度的点对原图像上特征点响应的量化值都是不同的,响应过程是一个卷积过程,原图像如果是3 7*7(3是原来的depth),滤波器定义为10 3*3 stride=1则获得的输出为10 5*5,在学习过程中卷积层的大小 ...
分类:其他好文   时间:2018-03-11 14:40:58    阅读次数:147
二叉树题型归纳
以下是比较常见的题型 1、二叉树的深度/宽度 二叉树的最大深度 "104 Maximum Depth of Binary Tree" 二叉树的最小深度 "111 Minimum Depth of Binary Tree" 二叉树的最大宽度 "662 Maximum Width of Binary T ...
分类:其他好文   时间:2018-03-11 14:32:08    阅读次数:254
104. Maximum Depth of Binary Tree
原题链接: "https://leetcode.com/problems/maximum depth of binary tree/description/" 这道题目级别为“Easy”,也确实是简单! 不废话,直接使用递归实现深度优先搜索即可: ...
分类:其他好文   时间:2018-03-10 14:07:02    阅读次数:130
深度优先搜索(DFS)
深度优先搜索(Depth-First-Search),简称深搜、DFS,由Robert Tarjan与John E. Hopcroft提出。多用于处理地图搜索、全排列,在竞赛中也是一个骗分神器。 刚入门会觉得,绕来绕去,又调用自己,会感到学习困难,但只要做多了,便觉得so easy。 ...
分类:其他好文   时间:2018-03-05 21:37:56    阅读次数:167
将xtion pro的depthimage转换为LaserScan
参考:http://www.cnblogs.com/cj2014/p/4007165.htmlhttp://www.cnblogs.com/huicanlin/p/5442479.htmlhttp://answers.ros.org/question/62990/add-depth-image-to ...
分类:其他好文   时间:2018-03-04 10:35:34    阅读次数:157
算法知识目录整理
算法知识目录整理 1. 算法部分 二分搜索 Binary Search 分治 Divide Conquer 宽度优先搜索 Breadth First Search 深度优先搜索 Depth First Search 回溯法 Backtracking 双指针 Two Pointers 动态规划 Dyn ...
分类:编程语言   时间:2018-03-02 23:54:12    阅读次数:206
Rendering in UE4(Gnomon School UE4 大师课笔记)
Rendering in UE4 Presented at the Gnomon School of VFX in January 2018, part two of the class offers an in depth look at the rendering pipeline in Unr ...
分类:其他好文   时间:2018-03-02 14:59:33    阅读次数:429
LC.104. Maximum Depth of Binary Tree
https://leetcode.com/problems/maximum-depth-of-binary-tree/description/Given a binary tree, find its maximum depth.The maximum depth is the number of ... ...
分类:其他好文   时间:2018-02-27 10:23:20    阅读次数:189
图 - 广度优先遍历
图的遍历和树的遍历类似,我们希望从图中某一顶点出发访遍图中其余顶点,且使每一个顶点仅被访问一次,这一过程就叫做图的遍历(Traverse Graph)。 图的遍历方法一般有两种,第一种是我们在前面讲过的《深度优先遍历(Depth First Search)》,也有称为深度优先搜索,简称为DFS。第二 ...
分类:其他好文   时间:2018-02-26 11:38:06    阅读次数:185
图 - 深度优先遍历
图的遍历和树的遍历类似,我们希望从图中某一顶点出发访遍图中其余顶点,且使每一个顶点仅被访问一次,这一过程就叫做图的遍历(Traverse Graph)。 图的遍历方法一般有两种,第一种是深度优先遍历(Depth First Search),也有称为深度优先搜索,简称为DFS。第二种是《广度优先遍历( ...
分类:其他好文   时间:2018-02-26 11:28:40    阅读次数:174
1433条   上一页 1 ... 42 43 44 45 46 ... 144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!