自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(129)
  • 资源 (6)
  • 收藏
  • 关注

转载 TextDragon: An End-to-End Framework for Arbitrary Shaped Text Spotting阅读笔记

摘要本文提出一种用来制造文本检测与识别关系的可微运算RoISlide,使模型成为端到端模型。本文在两个弯曲文本数据集CTW1500和Total-Text上的表现达到最佳,在常规文本数据集ICDAR2015上达到了具有竞争力的结果。介绍目前,文本检测的现有方法大多数是通过两步实现:文本检测与文本识别。这样的方式具有时间成本高和忽略了文本检测与识别之间的联系这两个缺点。本文提出的Tex...

2020-03-19 17:46:46 1134 2

转载 Caffe 源码添加多标签

Caffe 的源码仅适用于模式分类问题,其标签是一维的。为了能够将 Caffe 代码应用于车辆的检测问题上,首先要解决的问题就是将 Caffe 源码中与标签相关的代码由一维改为多维。本项目由于只需预测车辆的上下两角的坐标(x1,y1, x2,y2),即将标签修改为4维。这次能够很顺利的修改源码,很大一原因是实验室的师弟太给力了,他们对 Caffe 源码的研究开始地很早,并在以 Caff

2016-01-06 16:59:43 2201

转载 计算机经典书籍

2楼  JAVA篇此篇收录:.《Java 2核心技术》、2.《Java编程语言》、3.《Effective Java》、4.《Java解惑》、5.《Java编程思想》3楼C篇此篇收录:1.《C程序设计语言》、2.《C和指针》、3.《C陷阱与缺陷》、4.《C专家编程》、5.《你必须知道的495个C语言问题》4楼C++篇此篇收录:1.《C++ P

2013-11-27 14:36:46 1283

转载 研究生导师的肺腑之言

1. 如果平时几乎没看过英文原文,读不懂怎么办?    其实我以前也根本没读过原文,也看不懂。这儿有个好办法:找一本中文经典的书籍,仅看某一节你感兴趣或与你相关的内容,然后先找一两篇英文的综述(review)认真阅读一下,不会的单词可用金山词霸查一查,也许你读第一篇文章需要花两天,你过两天再读第2遍时,你也许只要一天;然后你再读第2篇时也许你只要半天!然后你一定会真正发现读英文文献的快感!

2013-11-14 14:12:25 789

原创 静态构造函数和私有构造函数

静态构造函数静态构造函数自动被调用,不能被显式调用,在程序中,用户无法控制何时执行静态构造函数。 静态构造函数既没有访问修饰符,也没有参数。 一个类的静态构造函数在这个类的任何实例被创建前执行。 一个类的静态构造函数在类的任何静态成员被引用前执行。一个类的静态构造函数从不会被执行一次以上。 class Program { static void M

2013-09-20 16:23:12 965

转载 矩阵乘法的动态规划解法

作者:liguisenBlog:http://blog.csdn.net/liguisen以下内容参考(摘抄)《算法设计与分析》,王晓东编著,清华大学出版社2003年1月第1版。给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。考察这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序,这种计算次序可

2013-09-20 10:23:13 1110

原创 sizeof 与strlen的区别

sizeof 与strlen的区别:  1.sizeof操作符的结果类型是size_t,它在头文件中typedef为unsigned int类型。该类型保证能容纳实现所建立的最大对象的字节大小。  2.sizeof是算符,strlen是函数。  3.sizeof可以用类型做参数,strlen只能用char*做参数,且必须是以''\0''结尾的。sizeof还可以用函数做参数,比如:sh

2013-09-16 10:47:13 445

原创 strcpy、memcpy与memmove的实现

1、定义函数:     void *memcpy(void *dest, const void *src, size_t n)函数说明:     memcpy()用来拷贝src所指的内存内容前n个字节到dest所指的内存地址上。     与strcpy()不同的是,memcpy()会完整的复制n个字节,不会因为遇到字符串结束'\0'而结束。memcpy与memmove的

2013-09-16 10:41:06 529

原创 c++中关于重载、隐藏与覆盖

重载的定义和意义      在C++程序中,可以将语义、功能相似的几个函数用同一个名字表示,即函数重载,如下程序所示。但它们互相之间参数不同,这样便于记忆,提高了函数的易用性,这是C++语言采用重载机制的一个理由。 C++语言采用重载机制的另一个理由是:类的构造函数需要重载机制。因为C++规定构造函数与类同名,构造函数只能有一个名字,但有时候我们需要几种方法构造对象。关于重载与覆盖重载

2013-09-10 14:00:22 555

原创 简化仅由a,b,c 3种小写字母组成的字符串

题目详情:给定一个字符串,仅由a,b,c 3种小写字母组成。  当出现连续两个不同的字母时,你可以用另外一个字母替换它,如   有ab或ba连续出现,你把它们替换为字母c;  有ac或ca连续出现时,你可以把它们替换为字母b;  有bc或cb 连续出现时,你可以把它们替换为字母a。  你可以不断反复按照这个规则进行替换,你的目标是使得最终结果所得到的字符串尽可能

2013-09-10 10:43:19 2159 8

转载 C++函数中那些不可以被声明为虚函数的函数

常见的不不能声明为虚函数的有:普通函数(非成员函数);静态成员函数;内联成员函数;构造函数;友元函数。1、为什么C++不支持普通函数为虚函数?      普通函数(非成员函数)只能被overload,不能被override,声明为虚函数也没有什么意思,因此编译器会在编译时邦定函数。2、为什么C++不支持构造函数为虚函数?      这个原因很简单,主要是从语义上考虑,所以不支持。因

2013-09-10 09:26:35 489

原创 最长递增子序列、最长公共子串、最长公共子序列、字符串编辑距离

最长递增子序列:解法1:很明显用动态规划的算法,选取下面的阶段(这种选法极为常见),可使阶段间的关系具有无后效性。阶段:在所有以元素k结尾的子数组中,选出其中的最长递增子序列,k=1,2...n。状态:以元素k结尾的最长递增子序列中只有一个最长的递增子序列。决策:决定元素k结尾的最长递增子序列有k-1种获取的途径,前面以任何一个元素结尾的最长递增子序列都可能成为其的一部分。

2013-09-07 18:58:32 824 2

转载 KMP算法

作者:July。出处:http://blog.csdn.net/v_JULY_v/。引记    此前一天,一位MS的朋友邀我一起去与他讨论快速排序,红黑树,字典树,B树、后缀树,包括KMP算法,唯独在讲解KMP算法的时候,言语磕磕碰碰,我想,原因有二:1、博客内的东西不常回顾,忘了不少;2、便是我对KMP算法的理解还不够彻底,自不用说讲解自如,运用自如了。所以,特再写本篇文章。由于

2013-09-07 11:08:26 587

原创 二叉树的三种非递归遍历

一.前序遍历   前序遍历按照“根结点-左孩子-右孩子”的顺序进行访问。   1.递归实现void preOrder1(BinTree *root) //递归前序遍历 { if(root!=NULL) { coutroot->data" "; preOrder1(root->lchild); preOrd

2013-09-07 10:46:29 480

原创 常见操作系统面试题

1、什么是进程(Process)和线程(Thread)?有何区别?  进程是具有一定独立功能的程序关于某个数据集合上的一次运行活动,进程是系统进行资源分配和调度的一个独立单位。线程是进程的一个实体,是CPU调度和分派的基本单位,它是比进程更小的能独立运行的基本单位。线程自己基本上不拥有系统资源,只拥有一点在运行中必不可少的资源(如程序计数器,一组寄存器和栈),但是它可与同属一个进程的其他的

2013-09-03 18:17:04 581

原创 String to Integer (atoi)

题目:Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input

2013-08-08 16:51:03 508

原创 Longest Palindromic Substring

题目:Given a string S, find the longest palindromic substring in S.即给出一个字符串S,找到一个最长的连续回文串。例如串 babcbabcbaccba 最长回文是:abcbabcba分析:首先将输入字符串S, 转换成一个特殊字符串T,转换的原则就是将S的开头结尾以及每两个相邻的字符之间加入一个特殊的字符,例如#

2013-08-07 13:11:52 526

原创 用动态规划求解0-1背包问题

0-1背包问题描述:    有N件物品和一个重量为M的背包。(每种物品均只有一件)第i件物品的重量是w[i],价值是p[i]。求解将哪些物品装入背包可使价值总和最大。动态规划的基本思想:将一个问题分解为子问题递归求解,且将中间结果保存以避免重复计算。通常用来求最优解,且最优解的局部也是最优的。求解过程产生多个决策序列,下一步总是依赖上一步的结果,自底向上的求解。

2013-07-30 18:12:28 1064

原创 Longest Substring Without Repeating Characters

题目:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3.

2013-07-25 16:42:54 573

原创 Median of Two Sorted Arrays

题目:There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).代码如下:int func(int *A, int m,

2013-07-23 18:13:38 448

原创 Windows的批处理脚本

批处理的定义,按照我的理解,批处理的本质,是一堆DOS命令按一定顺序排列而形成的集合。   OK,never claver and get to business(闲话少说言归正传)。批处理,也称为批处理脚本,英文译为BATCH,批处理文件后缀BAT就取的前三个字母。它的构成没有固定格式,只要遵守以下这条就ok了:每一行可视为一个命令,每个命令里可以含多条子命令,从第一行开始执行,直到

2013-07-22 13:24:14 742

原创 Surrounded Regions

题目:Given a 2D board containing 'X' and 'O', capture all regions surrounded by'X'.A region is captured by flipping all 'O's into 'X's in that surrounded region .For example,X X X XX O O X

2013-06-07 19:25:45 484

原创 Sum Root to Leaf Numbers

题目:Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-to-leaf path 1->2->3 which represents the number123.Find the tota

2013-06-07 18:02:31 557

原创 Longest Consecutive Sequence

题目:Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given [100, 4, 200, 1, 3, 2],The longest consecutive elements sequence is [1,

2013-06-06 12:03:33 450

原创 Valid Palindrome

题目:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is n

2013-06-06 10:27:00 376

原创 Binary Tree Maximum Path Sum

题目:Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 / \ 2 3Return 6.代码如下

2013-06-05 11:24:02 904

原创 Best Time to Buy and Sell Stock III

题目:Say you have an array for which the ith element is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete at most two transactions.Note:You ma

2013-06-05 10:54:48 742

原创 Best Time to Buy and Sell Stock II

题目:Say you have an array for which the ith element is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie,

2013-06-05 10:09:01 805

原创 Best Time to Buy and Sell Stock

题目:Say you have an array for which the ith element is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the s

2013-06-05 09:50:10 808

原创 Triangle

题目:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle[ [2], [3,4],

2013-06-04 15:59:23 675

原创 Pascal's Triangle II

题目:Given an index k, return the kth row of the Pascal's triangle.For example, given k = 3,Return [1,3,3,1].Note:Could you optimize your algorithm to use only O(k) extra space?代码如下:vect

2013-06-04 15:26:05 548

原创 Pascal's Triangle

题目:Given numRows, generate the first numRows of Pascal's triangle.For example, given numRows = 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]]代码如下:vector > genera

2013-06-04 15:14:55 718

原创 Populating Next Right Pointers in Each Node II

题目:Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution still work?Note:You may only use consta

2013-06-04 15:03:29 372

原创 Populating Next Right Pointers in Each Node

题目:Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointer to point to its next right node.

2013-06-04 14:04:42 587

原创 Distinct Subsequences

题目:Given a string S and a string T, count the number of distinct subsequences ofT in S.A subsequence of a string is a new string which is formed from the original string by deleting some (can

2013-06-04 13:25:52 606

原创 Flatten Binary Tree to Linked List

题目:Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened tree should look like: 1

2013-06-03 20:34:44 464

原创 Path Sum II

题目:Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree and sum = 22, 5 / \

2013-06-03 13:45:06 445

原创 Path Sum

题目:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.For example:Given the below binary tree a

2013-06-03 13:19:32 562

原创 Minimum Depth of Binary Tree

题目:Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.代码如下:int depth(TreeNode *root

2013-06-03 12:29:55 356

原创 Balanced Binary Tree

题目:Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees ofevery node never d

2013-06-03 12:20:26 380

PTAM算法的ppt

PTAM全名是Parallel Tracking and Mapping,其主要原理是: 从摄影图像上捕捉特征点,然后检测出平面,在检测出的平面上建立虚拟的3D坐标,然后合成摄影图像和CG。其中,独特之处在于,立体平面的检测和图像的合成采用并行处理。

2013-11-15

PTAM代码c++

增强现实的技术,PTAM全名是Parallel Tracking and Mapping,是于ISMAR 2007上,由英国牛津大学的Georg Klein和David Murray发表的一篇论文。

2013-11-15

TLD算法详解

介绍了一种跟踪算法TLD,详细描述其思想、原理

2013-11-15

TLD算法原文翻译

计算机视觉跟踪算法之TLD算法原文翻译,跟踪 TLD算法 原文翻译

2013-11-15

ConsoleDebug

Console Debugging Window can create a “Console” (DOS-like) window in MFC framework. It points stdout and stderr and hooks stdin (standard input) to the console window. That is, all your information by “printf”, “cout”, “cerr” etc. is output in the console window. You can see the information to know what and how your program runs. Of course, you can input parameter data in the console window using “scanf”, “cin” etc. as well.

2011-06-19

MiniDrawHan

MFC以MiniDraw画直线(Line),椭圆(Ellipse),矩形(Rectangle),多边形(Polygon)等图形元素(图元)

2011-06-06

空空如也

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

TA关注的人

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