自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 资源 (1)
  • 收藏
  • 关注

原创 PAT 1097. Deduplication on a Linked List (25)(链表问题)(链表分段)

官网题目1097. Deduplication on a Linked List (25)时间限制 300 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Given a singly linked list L with integer keys, you are supposed to remove the

2016-10-29 13:28:28 346

原创 PAT 1096. Consecutive Factors (20)(最大连续乘积因子)(sqrt(n)判断一个数是否为质数的深刻理解)

官网题目1096. Consecutive Factors (20)时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Among all the factors of a positive integer N, there may exist several consecutive number

2016-10-29 12:45:09 478

原创 PAT 1095. Cars on Campus (30)(计算每俩车待的时间)

官网题目1095. Cars on Campus (30)时间限制 220 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Zhejiang University has 6 campuses and a lot of gates. From each gate we can collect

2016-10-29 10:47:03 462

原创 hog特征总结

一、hog特征详解(点击[]可以进入我所参考的博客)1.hog特征原理1.HOG的核心思想是所检测的局部物体外形能够被光强梯度或边缘方向的分布所描述。[1]通过将整幅图像分割成小的连接区域(称为cells),每个cell生成一个方向梯度直方图或者cell中pixel的边缘方向,这些直方图的组合可表示出(所检测目标的目标)描述子。为改善准确率,局部直方图可以通过计算图像中一个较大区域(称为block

2016-10-27 16:11:20 8449

原创 Hough变换

1.hough变换是如何检测出直线和圆的? 1 直线是如何表示的? 对于平面中的一条直线,在笛卡尔坐标系中,常见的有点斜式,两点式两种表示方法。然而在hough变换中,考虑的是另外一种表示方式:使用(r,theta)来表示一条直线。其中r为该直线到原点的距离,theta为该直线的垂线与x轴的夹角。如下图所示。 例子说明如果空间中有3个点,如何判断这三个点在不在一个直线上,如果在,这条直线是的位

2016-10-24 16:24:17 967

原创 1 PCL 1.7.2库简单安装教程

本教程以vs2013,windows10 64位为例。PCL安装分为两种方法,第一种,直接从PCL源代码编译,后安装;第二种,使用PCL的All-in-one已经编译好的安装包安装,本文属于第二种方法。下载并安装PCL 1.pcl下载地址:http://pan.baidu.com/s/1qW1nkYg。 2.按照自己的需求选择安装版本,比如我这里选的就是vs2013 64位的版本。

2016-10-18 19:05:58 4064

原创 PAT 1094. The Largest Generation (25)(bfs遍历)

官网题目1094. The Largest Generation (25)时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A family hierarchy is usually presented by a pedigree tree where all the node

2016-10-18 12:09:23 297

原创 PAT 1093. Count PAT's (25)(有意思)

官网题目1093. Count PAT’s (25)时间限制 120 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CAO, Peng The string APPAPT contains two PAT’s as substrings. The first one is formed by the 2nd, the 4th,

2016-10-17 21:28:44 361

原创 特征检测小结

SIFT特征点总结SIFT特征以其对旋转、尺度缩放、亮度等保持不变性,是一种非常稳定的局部特征,在图像处理和计算机视觉领域有着很重要的作用,其本身也是非常复杂的,下面对其计算过程做一个粗略总结。 1.DoG尺度空间的极值检测。金字塔->高斯模糊->高斯拉普拉斯LOG->计算量太大->差分高斯DoG来近似。 2.删除不稳定的极值点。 3.确定特征点的主方向。 4.生成特征描述算子

2016-10-17 09:43:06 1085

原创 PAT 1092. To Buy or Not to Buy (20)(字符串操作)

官网题目1092. To Buy or Not to Buy (20)时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Eva would like to make a string of beads with her favorite colors so she went to a small

2016-10-11 13:31:59 270

原创 PAT 1091. Acute Stroke (30)(孤岛问题)

官网题目1091. Acute Stroke (30)时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given th

2016-10-10 17:05:53 431

原创 PAT 1090. Highest Price in Supply Chain (25)(求叶节点的最高层数,bfs)

官网题目1090. Highest Price in Supply Chain (25)时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers

2016-10-09 22:08:54 576

原创 PAT 1089. Insert or Merge (25)(插入排序还是归并排序)

官网1089. Insert or Merge (25)时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue According to Wikipedia:Insertion sort iterates, consuming one input element each repetition, an

2016-10-08 10:58:51 599

原创 PAT 1088. Rational Arithmetic (20)(分数加减乘除)(待修改)

官网1088. Rational Arithmetic (20)时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue For two rational numbers, your task is to implement the basic arithmetics, that is, to calc

2016-10-08 10:29:26 286

algo.tar.gz

python leetcode总结以及一些nlp面试记录, 包括剑指 offer leetcode上95%以上的算法题,都是python解法,持续更新中,目标1000题,哈哈哈。

2020-09-14

空空如也

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

TA关注的人

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