自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (7)
  • 收藏
  • 关注

原创 Apollo教程笔记7——Control

文章目录ControlIntroductionSebastian's TakeControl pipelinePID ControlPID Pros and ConsLinear Quadratic RegulatorModel Predictive Control, MPCTime Horizon and Vehicle ModelOptimization for MPCMPC Pros and...

2019-10-29 10:49:44 353

原创 Apollo教程笔记6——Planning

文章目录1.Introduction to Planning2.Sebastian's Take3.Routing4.World to Graph5.Grid World6.A*7.From Routing to Trajectories8.3D trajectory9.练习:Evaluating a Trajectory10.Frenet Coordinates11.Path-Velocity ...

2019-10-29 10:42:27 665

原创 Apollo教程笔记5——Prediction

文章目录1.Introduction to Prediction2.Sebastian's Take3.Prediction Approaches4.Lane-Sequence-Based Prediction5.Obstacle Status6.Predict Target Lane7.Recurrent Neural Networks8.RNNs for Target Lane Predict...

2019-10-29 10:39:23 1116

原创 Apollo教程笔记4——Perception

文章目录1.Introduction to Perception2.Sebastian’s Take3.Computer Vision4.Camera Images5.LiDAR Images6.Machine Learning7.Neural Network8.Backpropagation9.Convolutional Neural Network10.Detection and Classi...

2019-10-29 10:36:26 871

原创 Apollo教程笔记3——Localization

Intro to LocalizationThe task of localization is to locate your vehicle on the high-definition map.the most common method is to compare what the car sensors see with what appears on the map.vehicl...

2019-10-28 19:03:03 1294

原创 Apollo教程笔记2 —— HDMap

无人驾驶车需要更详细、精确的地图Apollo 高精度地图源码Navigation Map vs. HD MapA high definition map contains a huge amount of driving assistance informationthe accurate three-dimensional representation of the road n...

2019-10-28 18:48:14 1909

原创 Apollo教程笔记1——无人驾驶概览

文章目录What will you learn?HDMapsLocalizationPerceptionPredictionPlanningControlWhat is Self-Driving?How Self-Driving Cars Work?Apollo Team and ArchitectureReference Vehicle Platform and Hardware Platfor...

2019-10-28 18:30:05 796

原创 C语言sizeof 和 strlen 的区别

先来看下面一段简单的代码段#include <stdio.h>int main(int argc, const char * argv[]) { const char str[] = "hello"; printf("%lu %d\n",sizeof(str), strlen(str)); return 0;}输出 6 5我们知道, C 字符串会在末尾添加一个 \0 作为终

2017-07-14 00:31:04 173

原创 linux和mac/windows文件传输

linux 和 windows 文件传输可以利用 sz 和 rz 命令。sz:把linux的文件传送到windows本地上sz filenamerz: 指定windows本地上的文件传送到linux上rz查看是否有安装rpm -qa | grep lrzsz安装命令yum install lrzszlinux 和 mac 文件传输linux->mac scp linux用户名@服务器IP:待下载

2017-07-13 01:31:00 618

原创 内存管理 ARC

ARC:Automatic Reference Counting(自动引用计数)ARC的实现细节➢ 编译器会自动在适当的地方插入适当的retain、release、autorelease语句➢也就是说, 编译器会自动生成内存管理的代码, 不用程序猿手动编写ARC的注意点➢ ARC是编译器特性,而不是运行时特性➢ARC不是其它语言中的垃圾回收, 有

2015-11-09 15:58:55 333

原创 内存管理- MRC

下列行为会增加一个app的内存应用创建一个OC对象定义一个变量调用一个函数或者方法内存管理,涉及的操作:分配内存:如创建一个对象,会增加内存占用清除内存:如销毁一个对象,能减小内存占用内存管理的管理范围任何继承了NSObject的对象对其它非对象类型无效(int, char, float, double, struct, enum等)只有

2015-11-09 15:52:50 386

原创 Swift - Tuple(元组)

应用背景:1. 当数据成对出现,或者更多时:比如(x,y)、 (x,y,z)这样的数据。 2. 需要给函数传入多个参数的时候 或者 需要返回多个参数的时候利用Tuple可以非常方便的展示这样的数据。Tuple本身也是一种数据类型,可以包含不同的数据类型:

2015-11-03 18:48:43 272

原创 scheduledTimerWithTimeInterval

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeatsDescription:Creates and returns a new N

2015-05-27 11:03:57 1753

原创 iOS:分类、协议、代理

在iOS学习中,1. 分类 :Categories  -> modularise the definition of a class into groups or categories of related methods.  -> extend an existing class definition 应用场景: 1.为自定义的类,添加新方法时, 2.为库中的类(比如NS

2015-05-18 15:20:04 413

原创 iOS中代理和通知的选择

共同点:都能完成对象之间的通信不同点:     代理-> 一对一关系     通知-> 多对多关系

2015-05-14 19:48:24 363

ICADR2017 Andreas Dengel 教授讲座分享

document analysis research questions/options and the hidden patterns of our community

2018-11-14

白翔 ICDAR2017 OCR 讲座分享

白翔 ICDAR2017 讲座分享,主要讲OCR检测与识别,值得一看。

2018-11-14

MySQL5.5 中文官方文档

学习数据库,官方文档是最重要的参考资料,看不懂英文?我为你准备了中文版

2016-04-19

MySQL5.7 官方文档

学习MySQL,怎能缺少最权威的文档?

2016-04-19

php和mysql web 开发

学习PHP必备书

2016-04-18

apprence Getting Started

以一个游戏开始你的第一个iOS应用.手把手教你如何开始iOS开发,经典教程

2015-11-24

iOS 6实践指南

我专职从事开収已经 20 年了,几乎学习了所有语言和平台,但是我相信 iOS 开収是所 有开収中最令人激劢,有趣,回报高,极具挑戓性的。我爱 iOS 开収。 从开収者的角度来说他丌但是最吸引人的,而且它同时也是领先的手机平台。这就意味 着有很多可以做的,成长很多,变化很多,还可以从苹果,论坛还有其他开収者,书籍,会 议等等方面得到很多的支持。 随着 iOS 系统和其他手机平台,平板的成长,这些很好的连接了传统电脑和只能手机 的平台,现在都成为了巨大的市场。这些手机设备给开収者带来了更多的机会,iOS 让你能 够同时为两个平台做开収。

2015-06-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除