引入 This paper presents a simple but effective coding scheme called Locality-constrained Linear Coding (LLC) in place of the VQ coding in traditional S...
分类:
其他好文 时间:
2014-10-03 17:30:14
阅读次数:
599
//设置画布宽度 $image = imagecreatetruecolor(100, 50); //画布颜色 $bgcolor = imagecolorallocate($image, 255, 255, 255); // imagefill — 区域填充 imagefill($image, 0, 0, $bgcolor); //四个随机验证码 ...
分类:
其他好文 时间:
2014-10-03 16:01:25
阅读次数:
236
引入Recently SVMs using spatial pyramid matching (SPM) kernel have been highly successful in image classification. Despite its popularity, these nonline...
分类:
其他好文 时间:
2014-10-03 12:44:34
阅读次数:
278
PE文件结构(三)
参考
书:《加密与解密》
视频:小甲鱼 解密系列 视频
输入表
输入函数,表示被程序调用但是它的代码不在程序代码中的,而在dll中的函数。对于这些函数,磁盘上的可执行文件只是保留相关的函数信息,如函数名,dll文件名等。在程序运行前,程序是没有保存这些函数在内存中的地址。当程序运行起来时,windows加载器会把相关的dll装入内存,并且将输入函数的指令与函数真在内存中正的地址联系起来。输入表(导入表)就是用来保存这些函数的信息的。
在 IMAGE_OPT...
分类:
其他好文 时间:
2014-10-03 12:24:34
阅读次数:
215
pintool是intel推出的一个动态插桩工具。pin tool常用的有RTN接口(routine,我的理解就是程序上下文,比如汇编子程序,c/cpp函数之类),INS接口(指令级接口),Image(二进制文件镜像,lib或者exe)我采用RTN模式捕获函数信息。PIN初始化流程如下:在rtnfu...
分类:
其他好文 时间:
2014-10-03 04:11:33
阅读次数:
278
来源:http://www.ido321.com/875.html1、利用php gd库的函数绘制3D扇形统计图 1: 50; $i--) 20: { 21: imagefilledarc($image, 50, $i, 100, 50, -160, 40, $darknavy, ...
分类:
Web程序 时间:
2014-10-03 03:04:24
阅读次数:
162
1、利用php gd库的函数绘制3D扇形统计图
1: <?php
2: header("content-type","text/html;charset=utf-8");
3: /*扇形统计图*/
4: $image = imagecreatetruecolor(100, 100); /*创建画布*/
5:
6: /*设置画布需要的颜色*/
7: $white = imagecolorallocate($image,0xff,0xff,0xff)...
分类:
Web程序 时间:
2014-10-03 02:49:34
阅读次数:
315
引入 Recently SVMs using spatial pyramid matching (SPM) kernel have been highly successful in image classification. Despite its popularity, these nonlin...
分类:
其他好文 时间:
2014-10-02 23:06:13
阅读次数:
917
转自:http://blog.csdn.net/jwh_bupt/article/details/9625469 SPM 全称是Spatial Pyramid Matching,出现的背景是bag of visual words模型被大量地用在了Image representation中,但是BOV...
分类:
其他好文 时间:
2014-10-02 19:38:43
阅读次数:
681
这篇论文是今年9月份的论文[1],比较新,其中的观点感觉对卷积神经网络的参数调整大有指导作用,特总结之。关于卷积神经网络(Convolutional Neural Network, CNN),笔者后会作文阐述之,读者若心急则或可用谷歌百度一下。...
分类:
Web程序 时间:
2014-10-02 17:08:02
阅读次数:
1448