
C++
Eternity丶
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Opencv3.2+opencv_contrib+VS2015配置问题汇总
Opencv3.2+opencv_contrib+VS2015配置问题汇总原创 2017-07-02 14:36:13 · 2641 阅读 · 2 评论 -
Efficient Subwindow Search算法详解
《Object localization by efficient subwindow search》论文中的Efficient Subwindow Search高效的子窗口搜索算法, Christoph H.Lampert 提出的efficient sub window search 从另一个角度加速检测效率。作者提出Branch-and-Bound Search,其主要思想便是不原创 2017-08-17 12:28:59 · 1122 阅读 · 1 评论 -
研读《Selective Search for Object Recognition》论文
这段时间我主要完成了: 一、研读《Selective Search for Object Recognition》论文解析(重点学习): 1、在博客上找关于SelectiveSearch算法的基本原理并理解阅读。 2、查阅关于SelectiveSearch算法前提知识的学习。 3、利用OpenCV2.4.13+VS2015实现Selec原创 2017-08-13 10:38:04 · 2085 阅读 · 1 评论 -
Beyond sliding windows-Object Localizationby Efficient Subwindow Search论文阅读
这段时间我主要完成了: 一、《Selective Search for Object Recognition》(重点学习): 1、对代码每一步,甚至每一个变量含义都看懂。 2、修改源代码,使其能够在自己建立的环境下运行。 3、对代码进行单步调试,对照论文中介绍的算法再次加深理解。 4、获得实验结果。 二、bag of visual原创 2017-08-13 10:51:48 · 1257 阅读 · 3 评论 -
4. Median of Two Sorted Arrays
There are two sorted arraysnums1andnums2of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assumenums1andn...原创 2019-05-05 11:43:36 · 193 阅读 · 0 评论 -
Add Two Numbers
You are given twonon-emptylinked lists representing two non-negative integers. The digits are stored inreverse orderand each of their nodes contain a single digit. Add the two numbers and return i...原创 2019-04-29 22:33:28 · 165 阅读 · 0 评论 -
Two Sum
Given an array of integers, returnindicesof the two numbers such that they add up to a specific target. You may assume that each input would haveexactlyone solution, and you may not use thesame...原创 2019-04-29 22:38:06 · 151 阅读 · 0 评论 -
Longest Substring Without Repeating Characters
Given a string, find the length of thelongest substringwithout repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: ...原创 2019-04-30 13:58:04 · 178 阅读 · 0 评论 -
Container With Most Water
Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of lineiis at (i,ai) and (i, 0). Find two...原创 2019-05-13 12:51:01 · 240 阅读 · 0 评论