filter2DConvolves an image with the kernel.C++: void filter2D(InputArray src, OutputArray dst, int ddepth, InputArraykernel, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT )P...
分类:
编程语言 时间:
2014-07-28 00:24:39
阅读次数:
294
拉普拉斯线性锐化滤波 LaplacianCalculates the Laplacian of an image.C++: void Laplacian(InputArray src, OutputArray dst, int ddepth, int ksize=1, double scale=1, double delta=0, int borderType=BORDER_DEFAULT )P...
分类:
编程语言 时间:
2014-07-28 00:05:59
阅读次数:
393
sobel非线性滤波,采用梯度模的近似方式 SobelCalculates the first, second, third, or mixed image derivatives using an extended Sobel operator.C++: void Sobel(InputArray src, OutputArray dst, int ddepth, int dx, int dy,...
分类:
编程语言 时间:
2014-07-28 00:04:30
阅读次数:
481
/* Image format-dependent operations. */typedef struct { jas_image_t *(*decode)(jas_stream_t *in, char *opts); /* Decode image data from a stream. */ ...
分类:
其他好文 时间:
2014-07-27 23:14:09
阅读次数:
297
Deferred lighting separate lighting rendering and make lighting a completely image-space technique. This is very different the forward rendering. At f...
分类:
其他好文 时间:
2014-07-27 21:43:45
阅读次数:
1430
Android的MediaProvider提供了一系列的Audio,Video,image等表格,用于APP检索相关的音视频图片信息。首先来看看Audio相关的表格:×图中颜色同样的部分表示来自于同一张表格或者视图×红色表的名字表示视图为了查询Audio相关的信息,Android提供了丰富的Uri。...
分类:
数据库 时间:
2014-07-27 21:30:25
阅读次数:
208
include ‘Timagick.class.php‘;
$image = new Timagick();
$image->open(‘a.gif‘);
$image->resize_to(100, 100, ‘scale_fill‘);
$image->add_text(‘1024i.com‘, 10, 20);
$image->add_watermark(‘1024i.gif‘, ...
分类:
Web程序 时间:
2014-07-27 12:16:21
阅读次数:
345
先来说一下FontMetrics这个类,这个类是关于字符属性和测量的类
用图可以更精确的知道各个属性的含义:
我们在Layout中有一个ImageView,我们可以通过:
ImageView item_image = (ImageView)findViewById(R.id.item_image);
item_image.setImageBitmap(...
分类:
移动开发 时间:
2014-07-27 11:17:32
阅读次数:
341
本人用的CKEditor版本为4.3CKEditor配置和部署参考CKEditor4.x部署和配置。CKEditor编辑器的工具栏中初始的时候应该是这样子的,没有图片上传按钮并且预览中有一堆火星文,可以修改相应配置删除它。第一种方法:打开ckeditor/plugins/image/dialogs/...
分类:
其他好文 时间:
2014-07-27 09:44:22
阅读次数:
366