Dreams save us. Dreams lift us up and transform us into something better.梦想能够拯救我们.梦想能够激励我们并让我们成为更好的人.…
此部分是计算机视觉部分,主要侧重在底层特征提取,视频分析,跟踪,目标检测和识别方面等方面.对于自己不太熟悉的领域比如摄像机标定和立体视觉,仅仅列出上google上引用次数比较多的文献.有一些刚刚出版的文章,个人非常喜欢,也列出来了. 33. SIFT关于SIFT,实在不需要介绍太多,一万多次的引用已经说明问题了.SURF和PCA-SIFT也是属于这个系列.后面列出了几篇跟SIFT有关的问题.[1999 ICCV] Object recognition from local scale-invar…
      he University of Virginia American Studies Program 2002-2003.                     Randy Pausch's Last Lecture: Really Achieving Your Childhood Dreams Given at Carnegie Mellon University Tuesday, September 18, 2007 McConomy Auditorium For more i…
http://www.ximalaya.com/#/17209107/sound/6883165 Dreaming. Do you or don’t you? Do you dream about the future or just have a fantasy(白日梦,幻想) dream after a couple of late night tacos(炸玉米饼)? Dreams get us going. Dreams direct(管理:指挥) our lives, our focu…
Knowing yourself is the height of wisdom. 了解自己就是大智慧. Two-day holiday, even I didn't have enought time to know about her, I could feel I am not the type she loves. I ever thought I might be not so bad a man. Maybe I was wrong. So, I choose to give up.…
When the traveler goes alone he gets acquainted with himself. 独自旅行可以让人更好地了解自己. With other's company, we can always get help when we are in difficulties. If we travel alone, we oursleves have to handle everyting. That way, we get the opportunity to di…
service可给Android 服务传消息,具体用法如下: Usage: service [-h|-?]        service list        service check SERVICE        service call SERVICE CODE [i32 INT | s16 STR] ... Options:    i32: Write the integer INT into the send parcel.    s16: Write the UTF-16 stri…
import java.text.DecimalFormat; import java.text.NumberFormat; import java.util.Locale; import java.util.StringTokenizer; import java.util.Date; import java.util.Scanner; public class HelloString { public static void main(String[] args) { // TODO Aut…
Summertime is always the best of what might be. 万物最美的一面,总在夏季展现. From Charles Bowden. It was June, and the world smelled of roses. The sunshine was like powdered gold over the grassy hillside. It was a song, it was a season. And I wondered if that sea…
Go语言基础之结构体 Go语言中没有"类"的概念,也不支持"类"的继承等面向对象的概念.Go语言中通过结构体的内嵌再配合接口比面向对象具有更高的扩展性和灵活性. 类型别名和自定义类型 自定义类型 在Go语言中有一些基本的数据类型,如string.整型.浮点型.布尔等数据类型, Go语言中可以使用type关键字来定义自定义类型. 自定义类型是定义了一个全新的类型.我们可以基于内置的基本类型定义,也可以通过struct定义.例如: //将MyInt定义为int类型 ty…