自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 问答 (1)
  • 收藏
  • 关注

原创 SQL Server + VBA programming (1)

We can choose to connect a remote database on a server or local database.Remote: Server=(IP address)This piece of code means to access database and read the content of Car_Info and write them into

2017-10-11 20:48:40 498

原创 Import XML file into SQL Server

1. Learn the content and basic grammar ofXML fileReference: http://blog.csdn.net/chaiyu2002/article/details/5967186http://blog.csdn.net/jfkidear/article/details/6820642In a XML file:` Must h

2017-10-11 20:45:25 958

原创 Basic queries in SQL Server

Create table:CREATE TABLEDTC_CU(Unit_ID varchar,Unit_Namevarchar,Logical_Linkvarchar,Fehler varchar,Datum date,Zeit time); Insert data:insert into Car_Info(VIN,Car_ID,Brand,Model_y

2017-10-11 20:44:39 401

原创 Database-startup

Coping with sql server2008Throw an error:Invalid object name 'Car_Info'.This is because connecting with wrong database. I checked the connection.The server connected user database. Then I change

2017-09-19 21:01:13 513

原创 C++ usage of fstream

C++ ifstream&ofstreamThey are utilized to create file stream and read from or write to files.header: fstream.hCautious: the in and out are at the standpoint of code. ofstream means output, whi

2017-08-23 21:10:51 196

原创 Dipping into Shared Memory

After referring to some blogs, I gradually understand the basic usage of "Shared memory".Basically, it contains two processes--Server and Client.The function of the Server is as follows:Create a

2017-08-23 21:09:35 343

原创 168题引出的思考

代码参考: http://www.cnblogs.com/ganganloveu/p/4175848.html声明字符串时,我写作:string s;可以通过;string s = "";可以通过若改为:string s = NULL;报错:terminate called after throwing an instance of 'std::logic_er

2017-05-27 14:58:04 370

原创 今日LC

83. Remove Duplicates from Sorted List ListNode* deleteDuplicates(ListNode* head) {         if(head == NULL ||head->next == NULL)             return head;                 // if(head.leng

2017-05-18 09:50:51 176

原创 今日LeetCode--28,38

28. Implement strStr()代码如下:class Solution { public:     int strStr(string haystack, string needle) {         int offset;         int h = haystack.length();         int n = needle.lengt

2017-05-15 15:03:39 152

原创 今日LeetCode--21

21 merged two sorted lists开始时用错了方式//ListNode* merge;//merge->next = new ListNode(l1->val);提示错误:Line 39: member access within null pointer of type 'struct ListNode'错误原因:对空链表进行操作;修改方案:加头

2017-05-13 12:48:10 4463

原创 今日LeetCode--13 14

13.Roman to integerint romanToInt(string s) {         int result = ToNum(s[0]);         for(int i = 1; i        {             if(ToNum(s[i-1])                result +=ToNum(s[i])-2*ToNum(s

2017-05-12 10:09:52 215

原创 9-Palindrome Number -C++

代码如下:bool isPalindrome(int x) {         int high = x;         int min = 0;         int temp;         while(high>0)         {             temp = high%10;             min = 10*min+temp

2017-05-11 22:02:53 247

原创 7-Reverse Integer-C++

代码如下:    int reverse(int x) {         int result = 0;         int err = 0;         int temp;         bool sign = true;         if(x            sign = false;             x=-x;

2017-05-11 21:27:40 253

原创 Linux下C++的开发实践

参考链接:http://www.cnblogs.com/whiteyun/archive/2009/08/14/1545767.htmldidi@didi:~/AsProjectiveAsPossible-master$ gcc aaa.cpp/tmp/ccEyoZAH.o:在函数‘main’中:aaa.cpp:(.text+0x19):对‘std::allocator::al

2017-05-09 15:20:34 381

原创 运行Linux下APAP程序

1. 安装OpenCV2. 解压AsProjectiveAsPossible-master.zip  unzip AsProjectiveAsPossible-master.zip3. 安装所需包1) Eigen参考链接:http://blog.csdn.net/ttomchy/article/details/56859841//2)配置第三方头文件2) glew3

2017-05-08 15:56:07 670

原创 Linux环境下Opencv-2.4.10的安装和配置

参考链接:http://www.linuxidc.com/Linux/2014-04/100112.htmhttp://bbs.csdn.net/topics/392013499http://blog.csdn.net/ccworm/article/details/45074617http://blog.csdn.net/yzhang6_10/article/details/509

2017-05-08 10:24:22 1785

原创 近期面试经历(一)

美团——C++后台开发一面:内存外存区别http协议细节ping数据库SQL为什么快n!零的个数让给讲SIFT算法,但当时我只是用了这个算法而没看细节,没说出来;二面:虚函数的实现C++的特征写atoi函数实现会不会linux:这个很重要,我没有具体项目,所以没过是不是喜欢研究算法还是喜欢做东西?那为什么做过的安卓APP没有移植到

2017-04-26 12:12:46 302

原创 VS2010+OPENCV 各种问题

之前找到一版在VS2010+OPENCV2.2环境下的SIFT算法,认真学习研读后,打算跑跑看。

2017-04-21 17:17:58 565

原创 10.31-11.4研究内容

#我的思考#我前一段时间仔细考虑了开题的问题,总结出以下几个大方向:1.    编写安卓APP拼接720度全景(有开源库),使用VR头盔呈现;2.    编写C++插件进行720全景拼接(未找到合适算法),使用VR头盔呈现;3.    编写C++插件进行360全景拼接(使用foreground detection,考虑了这个方向是因为开题的初衷是基于已有的3D动画拼接得到VR全景动

2016-11-06 13:10:05 472

原创 openGL基本学习

#我的思考#我前一段时间仔细考虑了开题的问题,总结出以下几个大方向:1.    编写安卓APP拼接720度全景(有开源库),使用VR头盔呈现;2.    编写C++插件进行720全景拼接(未找到合适算法),使用VR头盔呈现;3.    编写C++插件进行360全景拼接(使用foreground detection,考虑了这个方向是因为开题的初衷是基于已有的3D动画拼接得到VR全景动

2016-10-31 10:54:12 283

原创 学习新项目

在和老师讨论之后,决定来使用HTC Vive实现图像拼接以及观看全景图的效果;1. 了解基本情况HTC公司和Valve公司合作,借用SteamVR平台(目前最大的VR游戏平台),打造的HTC Vive头盔。2. 查找开源代码以便进行下一步的学习在查找源码的过程中出现好多问题,有的已经解决,有的还未解决;目前已有三个VR操作系统:Oculus OS,Valve

2016-09-13 16:50:19 198

原创 从今天开始发博客啦~

有幸研究生可以得到期待的老师的指导,主要研究方向算是计算机视觉;眼下时值研二,想要通过博客的方式把研究生这几年的学习生活记录下来,科研为主,生活琐事为辅。

2016-09-13 16:44:25 328

空空如也

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

TA关注的人

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