码迷,mamicode.com
首页 >  
搜索关键字:cell    ( 5130个结果
e595. Drawing an Image
See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File. ...
分类:Windows程序   时间:2018-09-06 11:05:55    阅读次数:187
e611. Setting Focus Traversal Keys for the Entire Application
This example changes the focus traversal keys for the entire application. For an example of how to change the focus traversal keys for a particular co ...
分类:移动开发   时间:2018-09-06 10:55:14    阅读次数:215
C语言实现常用数据结构——栈
#include #include //用链表实现栈 typedef struct Node { int data; struct Node *next; } node; int IsEmpty(node *p) { return p->next==NULL; } node *CreateStack... ...
分类:编程语言   时间:2018-09-05 19:47:31    阅读次数:200
DeepVO: Towards End-to-End Visual Odometry with Deep Recurrent Convolutional Neural Networks
1、Introduction DL解决VO问题:End-to-End VO with RCNN 2、Network structure a.CNN based Feature Extraction 论文使用KITTI数据集。 CNN部分有9个卷积层,除了Conv6,其他的卷积层后都连接1层ReLU, ...
分类:Web程序   时间:2018-09-05 13:58:11    阅读次数:629
tensorflow源码解析之common_runtime-direct_session
目录 1. 核心概念 2. direct_session 1. direct_session.h 2. direct_session.cc 1. 核心概念 读过之前文章的读者应该还记得,session是一个执行代理。我们把计算图和输入交给session,由它来调度执行器,执行计算产生结果。TF给我们 ...
分类:其他好文   时间:2018-09-05 00:47:28    阅读次数:224
数据库命名规则
一.数据库: 1. 基本命名规则 表 1. 基本数据库对象命名 数据库对象 前缀 表 (Table) 字段(Column) 视图 (View) 存储过程 (Stored procedure) 触发器(Trigger) 索引(Index) 主键(Primary key) 外键(Foreign key) ...
分类:数据库   时间:2018-09-04 17:04:58    阅读次数:210
KBEngine源码:Space空间
Space空间是一个抽象概念,它只是存在于cellapp的内存中。由于空间是一个抽象的概念,所以具体是什么,是由用户来定义,它可以是一个场景、副本、房间等等等。 Space与Entity、Cell的关系 1:每个Space至少有一个Entity。 2:每个Space含有一个Cell ...
分类:其他好文   时间:2018-09-03 02:27:28    阅读次数:441
e660. 用一组像素创建图像
This example demonstrates how to convert a byte array of pixel values that are indices to a color table into an Image. In particular, the example gene ...
分类:其他好文   时间:2018-09-03 00:00:15    阅读次数:176
e657. 用直线和曲线绘制图形
GeneralPath shape = new GeneralPath(); shape.moveTo(x, y); shape.lineTo(x, y); shape.quadTo(controlPointX, controlPointY, x, y); shape.curveTo(control... ...
分类:其他好文   时间:2018-09-02 23:57:00    阅读次数:289
e581. Animating an Array of Images in an Application
This is the simplest application to animate an array of images. ...
分类:移动开发   时间:2018-09-02 23:52:50    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!