第39届ACM-ICPC亚洲区广州站题解Ltysky摘抄自闭幕式题目分析Problem A满足px+qy=c的点(x,y)在一条直线上,而c的值由直线的截距确定,所以最大化c,就要在糖果(x,y)点集的凸包上根据斜率确定一个顶点,所以本题需要动态凸包算法,但是动态凸包只能处理加点,要删点的话需要结合...
分类:
其他好文 时间:
2014-11-25 22:52:31
阅读次数:
214
相信每个Android新手都会遇到这个问题,希望这篇帖子能让你不再纠结。px:即像素,1px代表屏幕上一个物理的像素点;px单位不被建议使用,因为同样100px的图片,在不同手机上显示的实际大小可能不同,如下图所示(图片来自android developer guide,下同)。偶尔用到px的情况,...
分类:
移动开发 时间:
2014-11-25 18:14:55
阅读次数:
165
pixel format definitions More...#include "libavutil/avconfig.h"#include "version.h"#include "old_pix_fmts.h"Go to the source code of this file.Macros#define AVPALETTE_SIZE 1024 #define AVPALETTE_COU...
分类:
其他好文 时间:
2014-11-25 16:31:36
阅读次数:
543
关于margin属性的介绍margin:20px 上 右 下 左 都是20pxmargin:20px 40 px 上 下 20px 左 右 40pxmargin:20px 40px 60px 上20px 左 右 40px 下 60pxmargin:20px 40px 60px 80px 上 右 下 ...
分类:
其他好文 时间:
2014-11-25 10:40:19
阅读次数:
195
隶属于:android.R.attr 修饰符:public static final 数据类型:int 意义:首选的list item高度。这是一个尺度值,属于浮点数,后面必然要跟着一个单位。比如:px(像素)、dp(密度无关像素)、sp(以首选字体大小为基础的可扩展像素)、in、mm。 它也可以表...
分类:
其他好文 时间:
2014-11-24 20:30:02
阅读次数:
228
1. dpi是dot per inch,每英寸多少点,ppi是 Pixel per inch,每英寸像素数,针对显示器的设计时,dpi=ppi。
而安卓代码中常用density(点密度)来表示。ppi的计算方式呢可以根据勾股定理以及小学数学知识就能算出了哈哈,
例如小米2s分辨率1280*720,4.3寸。
这样的话可以得到ppi=(√1280^2+720^2)/4.3=341.53...
分类:
其他好文 时间:
2014-11-22 14:42:32
阅读次数:
298
用OpenCV的话,也要会一些绘图的操作。主要是画线、圆、矩形、椭圆。绘图的话,首先要了解两种类型:Point和Scalar。Point就是点的类,我们用它来表示图像当中的点,比如Point pt; pt.x = 10; pt.y = 8;或者Point pt = Point(10, 8);Scal...
分类:
其他好文 时间:
2014-11-21 23:10:37
阅读次数:
526
重定向,也就是把图像中的像素从一个地方对应到另一个地方 To accomplish the mapping process, it might be necessary to do some interpolation for non-integer pixel locations, since t...
分类:
移动开发 时间:
2014-11-21 18:24:17
阅读次数:
155
Given an image represented by an NxN matrix, where each pixel in the image is4 bytes, write a method to rotate the image by 90 degrees. Can you do thi...
分类:
其他好文 时间:
2014-11-21 14:01:17
阅读次数:
119
一、首先要认识下:屏幕密度ppi
ppi pixles percent inch 每英寸的像素数
ppi = 水平方向的像素数 / 屏幕宽度
例如:3.7in 480 x 800
3.7 * 3.7 = 3x*3x + 5x * 5x
宽度: 3 * 0.63 = 1.89
PPI ? 480 / 1.89 = 254
规定:ppi是1...
分类:
其他好文 时间:
2014-11-21 12:42:02
阅读次数:
205