摄像机在HoloLens开发中相当于人的眼睛 首先先新建一个Camera 然后将其xyz位置设置成0,0,0 然后将其天空盒改成固定颜色,并修改为纯黑 因为纯黑在HoloLens渲染中=透明 Clipping Planes 建议设置成 Near:0.85 Far:1000 这是有摄像机的渲染远近,官 ...
分类:
其他好文 时间:
2018-03-28 14:19:10
阅读次数:
248
词频统计预处理 下载一首英文的歌词或文章 news = ''' She hangs out every day near by the beach . Havin’ a HEINEKEN fallin’ asleep She looks so sexy when she’s walking the ...
分类:
其他好文 时间:
2018-03-27 23:57:20
阅读次数:
222
1.echarts: 2.highcharts: 3.d3: 【附】:d3.js API说明: d3 (核心部分)选择集d3.select - 从当前文档中选择一系列元素。d3.selectAll - 从当前文档中选择多项元素。selection.attr - 设置或获取指定属性。 selectio ...
分类:
其他好文 时间:
2018-03-26 16:06:27
阅读次数:
920
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2018-03-25 22:17:50
阅读次数:
202
1. 设计的工程在Compile Design的时候出现以下的错误,百思不得姐 2. 看下出现错误的地方,完全看不出来有啥问题,后来把代码的空格和回车换行的地方删除,重新添加了一下,不报错了。所以猜测是空格或者回车韩航地方有问题。 3. 使用Quartus自带的工具,显示缩格和显示空格,发现在提示错 ...
分类:
其他好文 时间:
2018-03-25 18:15:56
阅读次数:
269
IMU的输入为imu_linear_acceleration 和 imu_angular_velocity 线加速和角速度。最终作为属性输出的是方位四元数。 Eigen::Quaterniond orientation() const { return orientation_; } ...
分类:
其他好文 时间:
2018-03-21 11:46:54
阅读次数:
711
函数remove_if()移除序列[start, end)中所有应用于谓词p返回true的元素. 此函数返回一个指向被修剪的序列的最后一个元素迭代器. 记住, remove_if()并不会实际移除序列[start, end)中的元素; 如果在一个容器上应用remove_if(), 容器的长度并不会改 ...
分类:
编程语言 时间:
2018-03-17 16:13:08
阅读次数:
197
To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mat ...
分类:
其他好文 时间:
2018-03-14 21:09:53
阅读次数:
197
交叉验证之前的知识:我们如何评估一个模型 当我们想要测试我们的模型效果怎么样的时候,最好的方法是在实际的样本当中进行测试,这样可以测试出模型的泛化误差,但是实际的样本是没有标签的,所以这是一个悖论,我们无法知道样本的泛化误差。 假如我们在我们训练模型的数据上面直接进行测试的话,结果会很好,会出现过拟 ...
分类:
其他好文 时间:
2018-03-13 14:01:11
阅读次数:
5946
本章主要介绍几种可替代普通最小二乘拟合的其他一些方法。 Why might we want to use another fitting procedure instead of least squares? better prediction accuracy(预测精度) and better m ...
分类:
其他好文 时间:
2018-03-06 20:23:57
阅读次数:
205