surface models 1. The two main methods of creating surface models are interpolation and triangulation interpolation: we use it to help developing 3D s ...
分类:
其他好文 时间:
2019-06-21 12:57:21
阅读次数:
80
修改官方文档的错误 运行官方文档中的代码可能会报错(维度不一致): Traceback (most recent call last): File "<stdin>", line 1, in <module> File "e:\Anaconda3\lib\site-packages\torch\nn ...
分类:
其他好文 时间:
2019-06-05 09:50:14
阅读次数:
965
4.1 遍历整个列表:for循环 注意:使用单数和复数式名称, 可帮助你判断代码段处理的是单个列表元素还是整个列表。 循环语句的冒号不可省略,循环体部分需要统一缩进 01 # ex1 02 magicians = ['alice', 'david', 'carolina'] ... ...
分类:
其他好文 时间:
2019-06-05 00:14:59
阅读次数:
104
Problem Statement On a two-dimensional plane, there are N red points and N blue points. The coordinates of the i-th red point are (ai,bi), and the coo ...
分类:
编程语言 时间:
2019-05-07 19:39:30
阅读次数:
162
原文:DirectX11--深入理解与使用缓冲区资源前言 在Direct3D 11中,缓冲区属于其中一种资源类型,它在内存上的布局是一维线性的。根据HLSL支持的类型以及C++的使用情况,缓冲区可以分为下面这些类型: 顶点缓冲区(Vertex Buffer) 索引缓冲区(Index Buffer) ... ...
分类:
其他好文 时间:
2019-05-05 10:20:59
阅读次数:
173
Dimension CC 2019直装独立版安装教程分享,不用断网,但是需要将旧版本卸载干净,否则无法安装成功! Adobe Dimensions与一般的3D绘图软件相较之下,在操作界面在功能上有点不大相同,不过却能与大名鼎鼎的Adobe Photoshop以及illustrator等软件紧密的结合 ...
分类:
其他好文 时间:
2019-04-23 17:27:18
阅读次数:
785
一 . np.vstack: 按垂直方向(行顺序)堆叠数组构成一个新的数组 二 . np.hstack:按水平方向(列顺序)堆叠数组构成一个新的数组 三 . numpy.ndarray.flat/flatten 1. flat返回的是一个迭代器,可以用for访问数组每一个元素 2. ndarray. ...
分类:
其他好文 时间:
2019-04-22 10:43:14
阅读次数:
200
About this Course This course will teach you the "magic" of getting deep learning to work well. Rather than the deep learning process being a black bo ...
分类:
Web程序 时间:
2019-04-14 09:31:56
阅读次数:
223
折腾了一段时间,也在网上找了很多资料(有些真的不想吐槽),还是简单小结一下Win8上面,OpenGL的开发环境搭建方法,其实并没有那么复杂。 1. 我的目标环境 环境:VS2015+glew+glfw 2. 下载glew和glfw源码 2.1 下载源码 首先,需要准备glew和glfw库,这样可以直 ...
分类:
其他好文 时间:
2019-03-11 00:55:33
阅读次数:
395
一,介绍 NumPy是Python语言的一个扩展程序库。支持高端大量的维度数组与矩阵运算,此外也针对数组运算提供大量的数学函数库。 ndarray 数据结构: NumPy的核心功能是"ndarray"(即n-dimensional array,多维数组)数据结构。这是一个表示多维度、同质并且固定大小 ...
分类:
其他好文 时间:
2019-03-06 20:49:53
阅读次数:
271