自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 论文笔记二:《A Tutoral on Spectral Clustering》

首先谱聚类是非常流行的一种聚类,比一般的k_means效果要好,不仅如此,谱聚类里包含很多很有用的知识值得学习,比如拉普拉斯图和一些很好的思想,下面简单记录一下对于这篇论文的笔记。对于这篇论文基础的一些讲解,包括相似图的定义,度矩阵的定义,还有不同类型的相似图等都在这篇博客里有很好的体现,所以在这里就仅仅写一些自己的理解。https://www.cnblogs.com/pin...

2018-10-19 16:49:00 361

转载 论文笔记之哈希学习比较--《Supervised Hashing with Kernels》《Towards Optimal Binary Code Learning via Ordinal Embe...

最近在看关于哈希学习的几篇论文,下面利用博客记录一下阅读笔记和比较。论文名字论文出处类型Hash functionBalance functionOptimizationloss functionpairSupervised Hashing with Kernelscvpr 2012Supervisedkernel...

2018-10-12 10:16:00 293

转载 Java中String、StringBuffer、StringBuilder的比较与源 代码分析

Java中String、StringBuffer、StringBuilder的比较与源代码分析众所周知String、StringBuffer、StringBuilder是java中常用的字符串类,下面我将从三个方面对他们三兄弟进行对比。一、三者的数据组织及其功能实现大家爱把String、StringBuffer、StringBuilder叫做三兄弟,经过分析代码发现说他...

2018-09-04 22:21:00 137

转载 浙大pat1040 Longest Symmetric String(25 分)

1040Longest Symmetric String(25分)Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, givenIs PAT&TAP symmetric?, the longest sym...

2018-09-04 22:16:00 125

转载 浙大pat1039 Course List for Student(25 分)

1039Course List for Student(25分)Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the reg...

2018-09-03 22:07:00 126

转载 浙大pat---1036 Boys vs Girls (25)

This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students.Input Specification:Each input file contains ...

2018-07-29 09:20:00 93

转载 百炼oj-4151:电影节

总时间限制:1000ms内存限制:65536kB描述大学生电影节在北大举办! 这天,在北大各地放了多部电影,给定每部电影的放映时间区间,区间重叠的电影不可能同时看(端点可以重合),问李雷最多可以看多少部电影。输入多组数据。每组数据开头是n(n<=100),表示共n场电影。接下来n行,每行两个整数(0到1000之间),表示一场电影的放映区间n=0则数据结束输出对每组数据...

2018-05-07 13:47:00 168

转载 浙大pat甲级题目---1032. Sharing (25)

1032. Sharing (25)时间限制100 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueTo store English words, one method is to use linked lists and store a word ...

2018-03-30 23:18:00 137

转载 浙大pat甲级题目---1028. List Sorting (25)

Excel can sort records according to any column. Now you are supposed to imitate this function.InputEach input file contains one test case. For each case, the first line contains two integers ...

2018-03-25 15:50:00 100

转载 浙大pat甲级题目---1021. Deepest Root (25)

A graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find the root that results in a highest tree. Such a ...

2018-03-17 11:32:00 111

转载 浙大pat甲级题目---1012. The Best Rank (25)

To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mathematics (Calculus or Linear Algebra), and E ...

2018-03-16 16:19:00 96

转载 浙大pat甲级题目---1020. Tree Traversals (25)

Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to output the level order traversal sequence of th...

2018-03-14 21:04:00 181

转载 浙大pat甲级题目---1019. General Palindromic Number (20)

A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic nu...

2018-03-14 14:01:00 88

转载 浙大pat甲级题目---1098. Insertion or Heap Sort (25)

According to Wikipedia:Insertion sortiterates, consuming one input element each repetition, and growing a sorted output list. At each iteration, insertion sort removes one element from the inp...

2018-03-10 16:40:00 143

转载 浙大pat甲级题目---Reversible Primes (20)

先贴题目:Areversible primein any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 ...

2018-03-05 21:01:00 92

转载 浙大pat甲级题目---1013. Battle Over Cities (25)

首先贴一下题目:It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that city are closed. We must know immedi...

2018-02-27 01:04:00 127

转载 基于Lucene框架的“虎扑篮球”网站搜索引擎(java版)

 1 引言本次作业完成了基于Lucene的“虎扑篮球”网站搜索引擎,对其主要三个板块---“最新新闻”(主要NBA新闻),“虎扑步行街”(类似贴吧性质),“虎扑湿乎乎”(篮球发帖区)进行页面分析并建立索引完成搜索引擎。1.1 设计目的搜索引擎是一个很有用的程序,可以让你更方便,快捷的实现目标信息的查找和检索,本程序就针对虎扑篮球网站的三个子页面的帖子题目建立索引...

2018-02-08 11:19:00 801

转载 计算机视觉之--使用opencv生成简笔画小视频

本教程介绍了如何使用opencv生成一副简笔画视频,包括片头、如何做画等。1、视频包括:(1)片头:包括学号姓名,同时会出现"I Love CV"在学号和姓名的中央,而且他们是以动画方式“飞入”视频的,其中姓名从顶部“飞”到屏幕1/3处,学号信息从下“飞”到1/3处,I LOVE CV从左向右飞入。在片头显示完后,会停顿越三秒钟后,片头消失,正片开始。下图为片头停顿处截图:...

2017-12-15 12:53:00 793

转载 Canny 算子 c++

、功能简介及其运行(一)、功能:该程序实现了canny算子求图片的边缘,其中主要包括七大部分:1、对传入的彩色图片二值化2、对二值化后的图片进行高斯滤波3、使用sobel算子对滤波之后的图形分别求x,y方向上的梯度4、计算出梯度幅值5、对梯度图像做非极大抑制6、对非极大抑制后的图像做双阈值处理7、对双阈值处理后的图像进行连接操作(处理阈值中间的点)(二...

2017-12-15 12:35:00 432

空空如也

空空如也

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

TA关注的人

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