- 博客(67)
- 资源 (3)
- 收藏
- 关注
原创 Opencv图像的遍历_at_ptr
opencv_at_ptr 图像的遍历 http://www.cnblogs.com/ronny/p/opencv_road_2.html 1、at(i,j) 对图像降色彩,因为256*256*256实在太多了,在图像颜色聚类或彩色直方图时, 我们需要用一些代表性的颜色代替丰富的色彩空间,我们的思路是将每个通道的256种颜色用64种代替, 即将原来256种颜色划分64个颜色段,每个颜色段取
2016-05-16 16:20:48 517
原创 Opencv_remap
opencv_remap 什么叫做重映射呢? 重映射,就是把一幅图像中的某个位置上的像素放到另一个图像中指定位置上的过程。 void remap(InputArray src, OutputArraydst, InputArray map1, InputArray map2, int interpolation, intborderMode=BORDER_CONSTANT, const
2016-05-15 16:59:43 737
原创 opencv_mat_create
opencv_mat_create 1.Mat的创建 Mat::create(int rows,int cols,int type) Mat::create(Size size,int type) Mat::create(int ndims,const int* sizes,inttype) 参数 ndims – 新数组的维数。 rows –新的行数。 cols – 新的列数。 s
2016-05-15 16:30:41 1217
原创 深度学习--综述前言
深度学习革命:近年来,深度学习(Deep Learning)直接尝试解决抽象认知的难题,并取得了突破性的进展。深度学习引爆的这场革命,将人工智能带上了一个新的台阶,不仅学术意义巨大,而且实用性很强,工业界也开始了大规模的投入,一大批产品将从中获益。 深度学习在几个主要领域都获得了突破性的进展:在语音识别领域,深度学习用深层模型替换声学模型中的混合高斯模型(Gaussian Mixtur
2015-01-05 16:31:39 1375
原创 Deep learning:一softmax Regression 练习
引言: 参看的是http://www.cnblogs.com/tornadomeet/archive/2013/03/23/2977621.html 和 http://deeplearning.stanford.edu/wiki/index.php/Exercise:Softmax_Regression 主要完成的是高光谱数据,训练样本103*42776,测
2014-12-04 09:30:00 514
原创 poj 2234 博弈-Nim
(转载)Nim游戏博弈(收集完全版)Nim游戏的概述:还记得这个游戏吗?给出n列珍珠,两人轮流取珍珠,每次在某一列中取至少1颗珍珠,但不能在两列中取。最后拿光珍珠的人输。后来,在一份资料上看到,这种游戏称为“拈(Nim)”。据说,它源自中国,经由被贩卖到美洲的奴工们外传。辛苦的工人们,在工作闲暇之余,用石头玩游戏以排遣寂寞。后来流传到高级人士,则用便士(Pennies),在
2014-09-16 21:57:31 429
原创 1001 Post Robot--字符串的比较问题
Post RobotTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 0 Accepted Submission(s): 0Problem Description DT is a big fan of d
2014-09-14 16:03:03 653
原创 1005 game-博弈
GameTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 0 Accepted Submission(s): 0Problem Description Here is a game for two pla
2014-09-14 16:00:15 466
原创 鞍山网赛-矩阵的旋转平移
B. Rotate[Problem Description]Noting is more interesting than rotation!Your little sister likes to rotate things. To put it easier to analyze, your sister makes n rotations. In the i-th time,
2014-09-14 10:51:25 369
原创 HDU4706 根据题目读题写程序
A - 我不知道哪个是水题Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionToday is Children's Day. Some children ask you to output a big lett
2014-09-10 21:32:53 504
原创 FZU 2150Fire game-BFS
K - Fire GameTime Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionFat brother and Maze are playing a kind of special (hentai) game on
2014-09-06 16:59:20 441
原创 FZU 2147
H - A-B GameTime Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionFat brother and Maze are playing a kind of special (hentai) game by
2014-09-06 16:31:29 368
原创 FZU2251OOXX--简单数学题
L - OOXX GameTime Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionFat brother and Maze are playing a kind of special (hentai) game on
2014-09-06 16:28:02 905
原创 HDU4296
题目:http://acm.hdu.edu.cn/showproblem.php?pid=4296题意:有n个板,每个板有重量和强度两个属性,把板叠在一起,对于每个板有个PDV值,计算方式为这个板上面的板的重量和减去这个板的强度,对于每种叠放方式,取这个叠放方式中所以板中PDV值最大的值为代表值,问所有叠放方式中最小的代表值为多少。题解:对于相邻放置的两块板,设两块板为i,j他们上
2014-09-06 10:06:19 480
原创 poj3984
poj3984--迷宫问题(输出最短路径BFS) (2011-07-28 19:29:25)Description定义一个二维数组:int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, };它表示一个迷宫,其中的1表示墙壁
2014-09-05 18:44:53 353
原创 HDU4551 猜生日问题
Problem Description小明对生日十分看重,因为他可以得到祝福,可以和朋友亲人一起分享快乐,可以为自己的人生做一次总结,并且...能够收到好多礼物!不过小明是个神秘的人,不会轻易告诉你他的生日,现在他想到一个办法,让你去猜他的生日是哪一天。小明会告诉你如下三个信息:1. 出生月份和出生日子的最大公约数;2. 出生月份和出生日子的最小公倍数;3. 出生年份;
2014-09-01 22:51:21 1235
原创 HDU 4548美素数
小明对数的研究比较热爱,一谈到数,脑子里就涌现出好多数的问题,今天,小明想考考你对素数的认识。 问题是这样的:一个十进制数,如果是素数,而且它的各位数字和也是素数,则称之为“美素数”,如29,本身是素数,而且2+9 = 11也是素数,所以它是美素数。 给定一个区间,你能计算出这个区间内有多少个美素数吗? Input第一行输入一个正整数T,表示总共有T组数据
2014-09-01 22:37:57 399
原创 lightoj -1006 水题
DescriptionGiven a code (not optimized), and necessary inputs, you have to find the output of the code for the inputs. The code is as follows:int a, b, c, d, e, f;int fn( int n ) { if
2014-08-26 20:08:04 390
原创 poj 2359 约瑟夫环数学问题
无论是用链表实现还是用数组实现都有一个共同点:要模拟整个游戏过程,不仅程序写起来比较烦,而且时间复杂度高达O(nm),当n,m非常大(例如上百 万,上千万)的时候,几乎是没有办法在短时间内出结果的。我们注意到原问题仅仅是要求出最后的胜利者的序号,而不是要读者模拟整个过程。因此如果要追求效 率,就要打破常规,实施一点数学策略。为了讨论方便,先把问题稍微改变一下,并不影响原意:问题描述:n
2014-08-26 20:05:52 690
原创 hdu4849 Wow! Such City!
hdu4849 Wow! Such City!(最短路dijkstra)分类: 最短路Problem Description Doge, tired of being a popular image on internet, is considering moving to another city for a new w
2014-08-24 15:08:35 342
原创 凸包
1,点集Q的凸包(convex hull)是指一个最小凸多边形,满足Q中的点或者在多边形边上或者在其内。 2,凸包最常用的凸包算法是Graham扫描法和Jarvis步进法。 3,Graham扫描法: 首先,找到所有点中最左边的(y坐标最小的),如果y坐标相同,找x坐标最小的. 以这个点为基准求所有点的极角(atan2(y-y0,x-x0)),并按照极角对这些点排序,前述基准点在最前
2014-08-22 17:36:21 430
原创 poj 1979DFS&&BFS
DescriptionThere is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent t
2014-08-16 19:45:16 293
原创 poj 3278 Catch that cowBFS
Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,0
2014-08-16 11:24:34 375
原创 poj 2352 线段树
#include#include using namespace std; struct e{ int l,r; int cn;}tree[70000];int level[15001];int n;int x[15001],y[15001];int maxx; void build(int l,int r,int p){ tree[p].l=l;
2014-07-30 09:18:40 286
原创 线段树的理论知识分析
//每个节点用结构体struct line{int left,right;//左端点,右端点int n;//记录这条线段出现了多少次,默认为0}a[16];//满二叉树的性质决定a[i]的左儿子是a[2*i],右儿子是a[2*i+1]//对于已知的性段进行插入操作void insert(int s,int t,int step)//要插入线段的左端点,右端点
2014-07-29 19:49:12 327
原创 HDU4686 Arc of dream
矩阵快速幂ai = ai-1 * Ax + Ay;bi = bi-1 * Bx + By;ai * bi = ai-1 * bi-1 * (Ax * Bx) + ai-1 * (Ax * By) + bi-1 * (Bx * Ay) + AyBy;Si = Si - 1 + ai * bi = Si - 1 + ai-1 * bi-1 * (Ax * Bx) + ai-1 * (
2014-07-28 16:21:17 262
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人