码迷,mamicode.com
首页 >  
搜索关键字:depth    ( 1433个结果
Android USB API获取设备信息失败问题
在华为荣耀的盒子验证openni的程序,发现orbbec的3d摄像头一直无法使用,一直卡在 设备找不到的提示。 开始从下面2个方面验证:1.验证openni的本身自带的SimpleRead程序,看看是否正常读取到设备信息和depth 图。...
分类:移动开发   时间:2015-08-12 11:48:50    阅读次数:151
求二叉树最大层数
都能求最小了,就能求最大:int maxDepth(TreeNode* root) { if (root == nullptr) { return 0; } constexpr int MIN_DEPTH = 0; constexpr int in...
分类:其他好文   时间:2015-08-11 23:03:33    阅读次数:105
使用Depth Texture
使用Depth Textures: 可以将depth信息渲染到一张texture,有些效果的制作会需要scene depth信息,此时depth texture就可以派上用场了。 Depth Texture在不同平台上有不同的实现,并且原生的支持也不一样。 UnityCG.cginc里面...
分类:其他好文   时间:2015-08-11 20:49:46    阅读次数:522
求二叉树最小层数
int minDepth(TreeNode* root) { if (root == nullptr) { return 0; } constexpr int MAX_DEPTH = INT16_MAX; constexpr int initLay...
分类:其他好文   时间:2015-08-11 18:13:04    阅读次数:160
NGUI之渲染DrawCall的合并
在Unity中,每次引擎准备数据并通知GPU的过程称为一次Draw Call。Draw Call值越低,会得到更好的渲染性能。(NGUI 查看DrawCall工具(NGUI-OPEN-Draw Call Tool))Unity默认会按照控件的Depth来渲染。从后往前渲染,NGUI为了减少GPU状态...
分类:其他好文   时间:2015-08-11 10:01:16    阅读次数:200
【LeetCode-面试算法经典-Java实现】【111-Minimum Depth of Binary Tree(二叉树的最小深度)】
【111-Minimum Depth of Binary Tree(二叉树的最小深度)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a binary tree, find its minimum depth.   The minimum depth is the number of nodes along the shortest path from t...
分类:编程语言   时间:2015-08-11 08:33:30    阅读次数:128
[LeetCode] Balanced Binary Tree
Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth...
分类:其他好文   时间:2015-08-09 22:28:53    阅读次数:199
从kinect获取世界坐标
我们可用从Kinect的官方文件知道,Kinect的视锥是这个样子的。图中A,B和小人的脚是处于同一平面的,那么kincet获取到的 世界坐标中A,B的y轴坐标是相等的?还是如在RGB图中看到的一样,A,B,一上一下,y轴坐标不相等呢? 因此我抓获了Kinect的RGB,depth图像,对其后并转换成世界坐标,通过鼠标的点击来查看A,B的坐标。 最后结论如我所期待的一样:A,B在同一...
分类:其他好文   时间:2015-08-09 10:51:21    阅读次数:173
【LeetCode-面试算法经典-Java实现】【104-Maximum Depth of Binary Tree(二叉树的最大深度)】
【104-Maximum Depth of Binary Tree(二叉树的最大深度)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a binary tree, find its maximum depth.   The maximum depth is the number of nodes along the longest path from th...
分类:编程语言   时间:2015-08-08 07:59:24    阅读次数:126
[PHP]JSON 解析
mixedjson_decode(string$json[,bool$assoc= false[,int$depth= 512[,int$options= 0]]] )当第二个参数为TRUE时 返回一个数组否则返回类element1;$element2 = $jsonData->element2;/...
分类:Web程序   时间:2015-08-07 23:52:47    阅读次数:157
1433条   上一页 1 ... 90 91 92 93 94 ... 144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!