defining the problem 最重要也是最难的对于OR mathematical modeling is the cornerstone of OR 数学建模是Operations Research的基石。 intangible(unquantifiable) factors (such ...
分类:
其他好文 时间:
2017-04-24 23:01:00
阅读次数:
146
PCB走线角度选择 — PCB Layout 跳坑指南 PCB设计技巧 by xfire PCB Layout 跳坑指南 PCB Layout 跳坑指南 现在但凡打开SoC原厂的PCB Layout Guide,都会提及到高速信号的走线的拐角角度问题,都会说高速信号不要以直角走线,要以45度角走线, ...
分类:
其他好文 时间:
2017-04-06 22:35:40
阅读次数:
1811
示例.rounded-corners(@radius:5px){
-webkit-border-radius:@radius;
-moz-border-radius:@radius;
-ms-border-radius:@radius;
-o-border-radius:@radius;
border-radius:@radius;
}
#header{
.rounded-corners;
}
#footer{
.rounded-corners(10px);
}说明.rounded-corners..
分类:
其他好文 时间:
2017-02-23 22:57:42
阅读次数:
218
[概述] ZXing ("zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library implemented in Java, with ports to other language ...
分类:
Web程序 时间:
2017-02-23 16:17:48
阅读次数:
1191
Let’s look for corners. Since corners represents a variation in the gradient in the image, we will look for this “variation”. Consider a grayscale ima ...
分类:
其他好文 时间:
2017-02-13 12:32:48
阅读次数:
293
Buffalo Bill wishes to cross a 1000x1000 square field. A number of snakes are on the field at various positions, and each snake can strike a particula ...
分类:
其他好文 时间:
2017-02-07 15:14:28
阅读次数:
180
http://acm.hdu.edu.cn/showproblem.php?pid=2888 题意:给出一个n*m的矩阵,还有q个询问,对于每个询问有一对(x1,y1)和(x2,y2),求这个子矩阵中的最大值,和判断四个角有没有等于这个最大值的。 思路:二维RMQ模板题。注意内存卡的挺紧的。 ...
分类:
其他好文 时间:
2017-01-23 21:17:07
阅读次数:
292
1 /** 2 * Copyright (c) 2011-2014 Felix Gnass 3 * Licensed under the MIT license 4 * http://spin.js.org/ 5 * 6 * Example: 7 var opts = { 8 lines: 12 / ...
分类:
编程语言 时间:
2017-01-12 11:33:18
阅读次数:
242
cornersA = []p=0q=0i=0while p<=5000: w=[] w=(p,q) p+=100 q+=200 i+=1 cornersA.append(w)print 'cornersA=',cornersA ...
分类:
其他好文 时间:
2016-12-20 14:04:51
阅读次数:
132
Surf(Speed Up Robust Feature) Surf算法的原理 1.构建Hessian矩阵构造高斯金字塔尺度空间 其实surf构造的金字塔图像与sift有很大不同,就是因为这些不同才加快了其检测的速度。Sift采用的是DOG图像,而surf采用的是Hessian矩阵行列式近似值图像。 ...
分类:
其他好文 时间:
2016-12-15 17:16:05
阅读次数:
806