自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

谦言万语的专栏

研究总结规律,发现简单唯美

  • 博客(16)
  • 资源 (26)
  • 收藏
  • 关注

原创 Struts2:jsp前台传值到action后台的三种方式

1.在Action类中定义表单属性,两者属性名称必须一致。提供setter,getter方法。即可接收到表单传过来的参数.JSP中: Action中:public class ParamsAction extends ActionSupport { private String userName; private String user

2013-03-28 15:12:54 1460

转载 对TCP状态转换的理解

LISTEN: 这个也是非常容易理解的一个状态,表示服务器端的某个SOCKET处于监听状态,可以接受连接了。  SYN_RCVD: 这个状态表示接收到了SYN报文,在正常情况下,这个状态是服务器端的SOCKET在建立TCP连接时的三次握手会话过程中的一个中间状态,很短暂,基本上用netstat你是很难看到这种状态的,除非你特意写了一个客户端测试程序,故意将三次TCP握手过程中最后一个ACK

2013-03-26 13:56:29 606

转载 java的几种对象(PO,VO,DAO,BO,POJO)解释

一、PO : persistant object 持久对象,可以看成是与数据库中的表相映射的java对象。最简单的PO就是对应数据库中某个表中的一条记录,多个记录可以用PO的集合。PO中应该不包含任何对数据库的操作。二、VO : value object值对象。通常用于业务层之间的数据传递,和PO一样也是仅仅包含数据而已。但应是抽象出的业务对象,可以和表对应,也可以不,这根据业务的需要

2013-03-26 12:49:45 655

转载 Android SQLite 数据库

SQLite 介绍SQLite 一个非常流行的嵌入式数据库,它支持 SQL 语言,并且只利用很少的内存就有很好的性能。此外它还是开源的,任何人都可以使用它。许多开源项目((Mozilla, PHP, Python)都使用了 SQLite.SQLite 由以下几个组件组成:SQL 编译器、内核、后端以及附件。SQLite 通过利用虚拟机和虚拟数据库引擎(VDBE),使调试、修改和扩展

2013-03-23 16:22:29 660

转载 详解UML中的6大关系(关联、依赖、聚合、组合、泛化、实现)

转自:http://www.yongfa365.com/Item/UML-Association-Dependency-Aggregation-Composition-Realization-Generalization.html 大话设计模式上的一个图,我用EA画出来的: UML中的6大关系相关英文及音标: 依赖关系 dependency

2013-03-22 16:11:16 1685 1

转载 java Object类源代码详解

http://blog.csdn.net/a379039233/article/details/6097647类 Object 是类层次结构的根类。每个类都使用 Object 作为超类(都直接或间接继承此类)。所有对象(包括数组)都实现这个类的所有方法。来看一下object的源码吧 Java代码 package java.lang;

2013-03-20 20:13:53 836

原创 申请google map 的android key(新的申请方式)

最近google map v2版的key 改变了申请方式,原来的申请页面改了,原来是https://developers.google.com/maps/signup?hl=zh-CN 这个链接现在v2版的key,需要在 https://code.google.com/apis/console 这个地址申请1.使用Google帐号登入APIs Console (http

2013-03-20 15:42:57 1367

原创 Android模拟器上网设置

第一步:从cmd进入Android SDK目录下的platform-tools文件下第二步:运行adb.exe shell命令,出来#符号后输入getprop命令,就可以查看系统当前的各项属性第三步:修改dns值为自己电脑上的默认网关(ipconfig -all查看):setprop net.dns1 10.0.6.1 (这个是我的默认网关)

2013-03-20 14:29:37 941

转载 SharedPreferences解析和实现记住用户名

转自:http://rd.189works.com/article-108392-1.htmlSharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置比如窗口状态,它提供了Android平台常规的Long长整形、Int整形、String字符串型的保存。SharedPreferences不支持多线程。例如,可以通过它保存上一次用户所做的修改

2013-03-18 18:35:55 663

转载 android解析XML总结(SAX、Pull、Dom三种方式)

在android开发中,经常用到去解析xml文件,常见的解析xml的方式有一下三种:SAX、Pull、Dom解析方式。最近做了一个android版的CSDN阅读器,用到了其中的两种(sax,pull),今天对android解析xml的这三种方式进行一次总结。     今天解析的xml示例(channels.xml)如下:xml version="1.0" encoding="utf

2013-03-18 18:34:18 729

转载 java I/O流之字符流

转自:http://blog.csdn.net/zhuruoyun/article/details/8174510I :input,输入 ,O:output,输出 。I/O处理技术是Java语言中实现文件操作、内存操作、控制台输入以及网络编程的基础。IO类java.io为了使输入和输出的结构保持统一,从而方便程序员使用IO相关的类,在Java语言的IO类设计中引入了

2013-03-16 16:05:33 595

转载 javaIO流总结

IO流流(Stream)的概念:程序与数据来源之间的桥梁“=============copy自网络========================理解流的概念流是字节序列的抽象概念,用于数据传输的字节序列都可以理解为流,流提供了一种用同一的方式从各种输入输出设备中读取和向其中写入字节数据的方法。文件流流和文件的差异:文件是数据的静态存储形式,而流是指数据传输

2013-03-16 14:48:07 686

转载 Android Google Map API 开发基础知识

http://www.cnblogs.com/playing/archive/2011/04/23/2025419.htmlhttp://tech.it168.com/a2011/0218/1158/000001158627_all.shtmlhttp://tech.it168.com/a2012/0308/1322/000001322333_all.shtml

2013-03-11 13:35:32 746

转载 android定时器的用法总结

在android中,經常用到的定時器主要有以下幾種實現:一、採用Handler與線程的sleep(long )方法二、採用Handler的postDelayed(Runnable, long) 方法三、採用Handler與timer及TimerTask結合的方法。下面逐一介紹:一、採用Handle與線程的sleep(long )方法Handler主要用來處理接受到的消息。這

2013-03-06 21:53:04 1852

转载 Android APK反编译详解(附图)

这段时间在学Android应用开发,在想既然是用Java开发的应该很好反编译从而得到源代码吧,google了一下,确实很简单,以下是我的实践过程。在此郑重声明,贴出来的目的不是为了去破解人家的软件,完全是一种学习的态度,不过好像通过这种方式也可以去汉化一些外国软件。本文Android反编译教程,测试环境:Win7 Ultimate x64Ubun

2013-03-06 11:01:52 573

原创 Ubuntu12.04下Android开发环境搭建图文教程

1.安装JDK1.1下载JDK目前最新的JDK版本是:Java SE Development Kit 7u5下载地址:http://download.oracle.com/otn-pub/java/jdk/7u5-b06/jdk-7u5-linux-i586.tar.gz查看最新:http://www.oracle.com/technetwork/java/ja

2013-03-06 01:49:46 1135

ruijie锐捷客户端

校园网必备武器,包括32位和64位的锐捷客户端安装程序

2014-05-27

java电子书集合

java电子书集合 java标准 编程指南 入门教程等

2014-03-12

bookmarks_14-3-10.html

bookmarks_14-3-10.html

2014-03-10

人脸检测相关文章

26篇人脸检测相关论文集合,SVM Adaboost等详尽解析。

2014-02-07

Supervised Descent Method and its Applications to Face Alignment

Many computer vision problems (e.g., camera calibration, image alignment, structure from motion) are solved through a nonlinear optimization method. It is generally accepted that 2 nd order descent methods are the most robust, fast and reliable approaches for nonlinear optimization of a general smooth function. However, in the context of computer vision, 2 nd order descent methods have two main drawbacks: (1) The function might not be analytically differentiable and numerical approximations are impractical. (2) The Hessian might be large and not positive definite. To address these issues, this paper proposes a Supervised Descent Method (SDM) for minimizing a Non-linear Least Squares (NLS) function. During training, the SDM learns a sequence of descent directions that minimizes the mean of NLS functions sampled at different points. In testing, SDM minimizes the NLS objective using the learned descent directions without computing the Jacobian nor the Hessian. We illustrate the benefits of our approach in synthetic and real examples, and show how SDM achieves state-ofthe-art performance in the problem of facial feature detection. The code is available at www.humansensing.cs. cmu.edu/intraface. 1. Introduction Mathematical optimization has a fundamental impact in solving many problems in computer vision. This fact is apparent by having a quick look into any major conference in computer vision, where a significant number of papers use optimization techniques. Many important problems in computer vision such as structure from motion, image alignment, optical flow, or camera calibration can be posed as solving a nonlinear optimization problem. There are a large number of different approaches to solve these continuous nonlinear optimization problems based on first and second order methods, such as gradient descent [1] for dimensionality reduction, Gauss-Newton for image alignment [22, 5, 14] or Levenberg-Marquardt for structure from motion [8]. “I am hungry. Where is the apple? Gotta do Gradient descent”

2014-01-14

一个简单的IOCP(IO完成端口)服务器客户端

当你开发不同类型的软件时,你总会需要进行C/S的开发。 完成一个完善的C/S代码对于编码人员来说是一件困难的事情。 本文给出了一个简单的但是却是却十分强大的C/S源代码,他可以扩展成任何类型的C/S程序。 源代码使用了IOCP技术,该技术可以有效地处理多客户端。 IOCP 对于“一个客户端一个线程”所有面临的瓶颈(或者其他)问题提出了一种有效的解决方案,他只使用少量的执行线程以及异步的输入输出、接受发送。IOCP计数被广泛的用于各种高性能的服务器,如Apache等。 源代码同时也提供了一组用于处理通信的常用功能以及在C/S软件中经常用到功能,如文件接受/传输功能以及逻辑线程池操作。本文将主要关注一种围绕IOCP API在实际中的解决方案,以及呈现源代码的完整文档。 随后,我将展示一个可以处理多连接和文件传输的echo C/S程序。

2014-01-14

SIFTflow.pdf

Abstract—While image alignment has been studied in different areas of computer vision for decades, aligning images depicting different scenes remains a challenging problem. Analogous to optical flow where an image is aligned to its temporally adjacent frame, we propose SIFT flow, a method to align an image to its nearest neighbors in a large image corpus containing a variety of scenes. The SIFT flow algorithm consists of matching densely sampled, pixel-wise SIFT features between two images, while preserving spatial discontinuities. The SIFT features allow robust matching across different scene/object appearances, whereas the discontinuitypreserving spatial model allows matching of objects located at different parts of the scene. Experiments show that the proposed approach robustly aligns complex scene pairs containing significant spatial differences. Based on SIFT flow, we propose an alignmentbased large database framework for image analysis and synthesis, where image information is transferred from the nearest neighbors to a query image according to the dense scene correspondence. This framework is demonstrated through concrete applications, such as motion field prediction from a single image, motion synthesis via object transfer, satellite image registration and face recognition.

2013-12-29

Power Mean SVM for Large Scale Visual Classification

PmSVM (Power Mean SVM), a classifier that trains significantly faster than state-of-the-art linear and non-linear SVM solvers in large scale visual classification tasks, is presented. PmSVM also achieves higher accuracies. A scalable learning method for large vision problems, e.g., with millions of examples or dimensions, is a key component in many current vision systems. Recent progresses have enabled linear classifiers to efficiently process such large scale problems. Linear classifiers, however, usually have inferior accuracies in vision tasks. Non-linear classifiers, on the other hand, may take weeks or even years to train. We propose a power mean kernel and present an efficient learning algorithm through gradient approximation. The power mean kernel family include as special cases many popular additive kernels. Empirically, PmSVM is up to 5 times faster than LIBLINEAR, and two times faster than state-of-the-art additive kernel classifiers. In terms of accuracy, it outperforms state-of-the-art additive kernel implementations, and has major advantages over linear SVM.

2013-12-29

Color_descriptors

模式识别 图像识别 Abstract—This paper presents an overview of color and texture descriptors that have been approved for the Final Committee Draft of the MPEG-7 standard. The color and texture descriptors that are described in this paper have undergone extensive evaluation and development during the past two years. Evaluation criteria include effectiveness of the descriptors in similarity retrieval, as well as extraction, storage, and representation complexities. The color descriptors in the standard include a histogram descriptor that is coded using the Haar transform, a color structure histogram, a dominant color descriptor, and a color layout descriptor. The three texture descriptors include one that characterizes homogeneous texture regions and another that represents the local edge distribution. A compact descriptor that facilitates texture browsing is also defined. Each of the descriptors is explained in detail by their semantics, extraction and usage. Effectiveness is documented by experimental results.

2013-12-29

FreeImage380Chinese

FreeImage380Chinese

2013-07-18

The OpenCL Programming Book

The OpenCL Programming Book

2013-07-18

ATI_Stream_SDK_OpenCL_Programming_Guide

ATI_Stream_SDK_OpenCL_Programming_Guide

2013-07-18

AMD_OPENCL学习资料大全.rar

AMD_OPENCL学习资料大全.rar 里面有各种开发文档pdf和论文

2013-07-15

OpenCL学习资料大全

OpenCL学习资料大全,适合初学者,里面有很多个pdf

2013-07-15

GNU make 详解

很好的make学习资料,如果想成为Linux编程高手,这份资源一定会是你想要的

2011-12-09

Efficient C++提高C++性能的编程技术.rar

深入学习C++的好资料,有兴趣学习C++的朋友们不妨参考一下,很有帮助的

2010-11-27

21天学通java,入门级Java教材

Java 轻松上手,入门级Java教材,Java速成

2010-04-04

21天学通java pdf格式

21天学通java pdf格式 java入门级教材,適和初学着

2009-11-28

learning the bash shell

Cameron Newham and Bill Rosenblattham 《Learning the bash shell》是比较好的一本入门级经典教材,学linux shell 的不妨下来看看,不过是英文版的。

2009-10-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除