自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(26)
  • 收藏
  • 关注

原创 KCF环境搭建相关问题

本文针对搭建遇到的问题,进行了解决。

2017-12-04 10:38:18 325

原创 faster-rcnn在win10+cuda8.0+1080ti+vs2013+matlab2015b下的配置 疑难问题解答

之前在cuda7.5+win7+980版本成功训练过faster-rcnn,最近换了显卡,用的是1080TI,环境变了,重新配置,反反复复用了将近一周的时间。编译环境1.vs2013+cuda8.0(不使用cudnn)+matlab2015b 2.caffe源码,https://github.com/ShaoqingRen/caffe。这里注意一定要用faster-rcnn作者给的caffe代码,

2017-11-13 16:09:29 1579 1

转载 【转】 字符串的全排列和组合算法

字符串的全排列和组合算法标签: 算法permutationstringiterator面试2012-04-15 11:24 83004人阅读 评论(39)收藏举报本文章已收录于:分类: 面试珠玑(84) 作者同类文章X版权声明:本文为博主原创文章,未经博主允许不得转载。全

2017-06-12 14:29:00 360

转载 【转】string和stringstream用法总结

一、stringstring 是 C++ 提供的字串型態,和 C 的字串相比,除了有不限长度的优点外,还有其他许多方便的功能。要使用 string, 必須先加入这一行:#include 接下來要宣告一个字串变量,可以写成:string s;我们也可以在宣告的同时让它设成某个字串:string s="TCGS";而要取得其中某一個字元,和传统C 的字串一樣是用 s[i

2017-06-01 10:16:07 2782

转载 【转】操作系统常见面试题总结

操作系统常见面试题总结标签: 面试磁盘extmakefile存储dll2012-09-23 17:24 56640人阅读 评论(2)收藏举报本文章已收录于:目录(?)[+]常见的操作系统使用的文件系统整理内核怎样管理你的内存1、什么是进程(Process)和线程(Thread)?有何区别?

2017-05-31 19:43:44 445

转载 【转】校园招聘面试-操作系统知识总结

校园招聘面试-操作系统知识总结2014-08-31 08:36 13187人阅读 评论(1)收藏举报本文章已收录于:分类: 杂谈(17) 作者同类文章X版权声明:本文为博主原创文章,未经博主允许不得转载。有问题请扫描下图1. 进程的有哪几种状态,状态转换图

2017-05-26 18:47:50 1407

原创 【LeetCode】partition-list

题干partition-listGiven a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the original relative order of the nodes

2017-05-26 16:24:16 237

原创 【嵌入式开发】SIP信令交互总结(1)

1 SIP视频流获取这里的SIP视频流的获取是指解码器通过SIP协议向用户代理服务器(UAS)获取视频流的过程(这里的sip用的是28181协议)。UAC必须包含生成请求,发送请求和处理响应的功能,解码器制定的有效SIP请求,至少包括以下头字段:To、From、Cseq、Call-ID、Max-Forwards 和 Via,我们的主要任务是实现解码器的这些功能。 过程首先解码器上线向服务器注册,并

2017-05-19 15:34:42 1573

原创 【嵌入式开发】DM6467T环境搭建

基本环境和参数:1.主机HOST:WINDOWS XP SP3 IP:192.168.1.100 netmask:255.255.255.0 GateWay: 192.168.1.12.虚拟机 :VMware-workstation-6.5 Fedora-10-i386-DVD IP:192.168.1.101 netmask:255.255.255.0 GateWay: 192.168.1

2017-05-19 11:02:45 1302

原创 【LeetCode】binary-tree-level-order-traversal i&ii&zigzag

题干binary-tree-level-order-traversalGiven a binary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level).For example: Given binary tree{3,9,20,#,#,15,7},

2017-05-18 10:31:22 237

原创 【LeetCode】convert-sorted-link-to-binary-search-tree & convert-sorted-array-to-binary-search-tree

题干convert-sorted-link-to-binary-search-treeGiven a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.convert-sorted-array-to-binary-search-treeGiven a

2017-05-16 17:01:34 205

原创 【LeetCode】path-sum i&ii

题干path-sum iGiven 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

2017-05-11 10:49:52 229

原创 【LeetCode】populating-next-roght-pointers-in-each-node i&ii

题干populating-next-roght-pointers-in-each-nodeGiven a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next po

2017-05-10 10:22:25 220

原创 【LeetCode】triangle & pascals-triangle i&ii

题干triangleGiven 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],

2017-05-08 15:47:20 232

原创 【深度学习】---行人检测应用二

深度学习行人检测应用二涉及论文主要围绕王晓刚的几篇关于深度学习在行人检测的应用。 *Luo, P., et al. (2014). Switchable deep network for pedestrian detection. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition.” 摘要

2017-05-06 10:04:07 4310

原创 【LeetCode】palindrome-partitioning i&ii

题干palindrome-partitioning iGiven a string s, partition s such that every substring of the partition is a palindrome.Return all possible palindrome partitioning of s.For example, given s =”aab”, Return

2017-05-02 14:26:04 297

原创 图片测距实验

实验背景本文是一个小实验的结果,针对的问题是是否可以根据图片交通的视频得到汽车的行驶速度,更进一步其实是得到图片上的某段实际距离。 这个问题有非常明确的问题定义,是计算机标定,属于计算机图形学的范畴。有一套理论,旋转矩阵之类的东西。但是是否可以更加简单的方法。 于是有了本文的小实验。模拟场景首先说明应用场景。如下图,这种有分道线的道路。采用方法这种情况要利用交通图片中的可用的信息。 众所周知,

2017-04-20 10:26:00 11701 4

原创 【LeetCode】linked-list-cycle-ii

题干Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull. Follow up: Can you solve it without using extra space?链表是否有环?如果有找到环的入口结点。 是否可以不开辟额外空间。数据结构/** * Defi

2017-04-20 09:48:03 232

原创 【LeetCode】recorder-list

题干Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes’ values. For example, Given{1,2,3,4}, reorder it to{1,4,

2017-04-19 20:28:43 337

原创 【LeetCode】binary-tree-postorder-traversal

题干Given a binary tree, return the postorder traversal of its nodes’ values. For example: Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1]. Note: Recursive solution is trivi

2017-04-17 14:50:37 223

原创 【深度学习】---行人检测应用

行人检测综述涉及论文主要围绕王晓刚的几篇关于深度学习在行人检测的应用。 Ouyang, W. and X. Wang (2013). “Joint Deep Learning for Pedestrian Detection.” 2056-2063.* Ouyang, W. and X. Wang (2012). A discriminative deep model for pedest

2017-04-14 10:32:46 8100

原创 【LeetCode】max-points-on-a-line一条线上最多点

题干Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 在一个2D平面中,找到点集中在一条直线上最多的有多少个点。数据结构 * Definition for a point. * struct Point { * int x; *

2017-04-12 17:16:57 820

原创 《剑指offer》源码笔记

《剑指offer》源码笔记本篇针对源码问题感想。目录剑指offer源码笔记目录没写代码的面试题某些题的感想面试题7 两个stack维护queue面试题13 删除链表结点面试题15 第k个结点面试题30 最小的k个数面试题34 丑数面试题43 n个骰子的点数特殊思路面试题10 二进制中1的个数面试题11 数值的整次乘方面试题14 调整数组顺序使奇数位于偶数之前面试题40

2017-04-12 11:10:15 659

原创 【流媒体】Red5文件结构简介

Red5文件结构简介Red5 是 支持Windows,Linux等多平台的RTMP流媒体服务器,最早属于谷歌下的开源项目,先已移植到Github,地址为https://github.com/Red5/red5-server 由于从安装到开发相关文档很少,于是需要有一定的开发经历才会流畅开发。 本文主要介绍一下Red5的文件结构,而且是基于red5-server-1.0.6-RELEASE版本介绍的

2016-09-09 14:37:18 806

原创 【流媒体】Red5流媒体服务器开发总结

Red5流媒体服务器开发总结Red5 是 支持Windows,Linux等多平台的RTMP流媒体服务器,最早属于谷歌下的开源项目,先已移植到Github,地址为https://github.com/Red5/red5-server 由于从安装到开发相关文档很少,于是需要有一定的开发经历才会流畅开发。本文整个开发环境以及简单应用的开发主要参考 http://v.youku.com/v_show/id

2016-09-07 22:31:22 4119

原创 【流媒体】Linux系统搭建Red5服务器

Linux系统搭建Red5服务器Red5 是 支持Windows,Linux等多平台的RTMP流媒体服务器,Windows下搭建相对容易,图形界面操作比较简单,Linux服务器的环境下没有图形界面,搭建需要一定的技巧。运行环境搭建运行环境主要是 Java 环境搭建和 Apache ant 的安装。如果需要使用 ffmpeg ,还需要进行ffmpeg的安装和配置。备注: 1.链接:下面的很多步骤中的

2016-09-07 14:43:08 818

空空如也

空空如也

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

TA关注的人

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