自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

決心的专栏

念念不忘 必有回响

  • 博客(3)
  • 资源 (2)
  • 收藏
  • 关注

原创 《代码整洁之道》学习笔记(二)

19.系统应该由许多短小的类组成,每个小类封装一个权责,只有一个修改原因。(SRP原则) 20.待续,看到十一章“系统”感觉后面开始吃力,自己还没用过,何谈整洁之道,暂时停止,以后跟进。

2015-11-20 18:04:48 320

原创 代码整洁之道(一)——初学笔记

项目收尾阶段,自由时间相对充裕些,所以买了《代码整洁之道》等五本编程规范的书籍,边学习,边整理以前做过的代码,希望以后能不用反复整理,就能写出出色的项目代码。 以下是学习到的一些规范整理: 1.变量,函数等的命名要可读(英文拼写,驼峰式);一定不要用简单的字母,或者a1,a2这种,同时尽量不要用缩写;命名的详细程度(拼写)和它的作用域大小相对应;但是表述同样语境用词越少越好,精——简 2.同样

2015-11-19 19:28:49 716

原创 《Mahout实战》学习一——Mahout自定义对象(草稿)

mahout是一种apache的开源机器学习包,主要用于基于java开发的数据挖掘项目,也可以在其源码基础上进行二次开发,来实现更符合自己项目需求的算法调优。 目前从《Mahout实战》这本书开始初步学习mahout,今天阅读到第三章,总结下mahout初步学习接触到的mahout独有的自定义数据对象。1.PreferenceArray

2015-11-18 16:16:30 411

Beyond the C++ Standard Library_ An Introduction to Boost 中文版

Beyond the C++ Standard Library: An Introduction to Boost By Björn Karlsson ............................................... Publisher: Addison Wesley Professional Pub Date: August 31, 2005 ISBN: 0321133544 Pages: 432 Table of Contents | Index Overview 介绍Boost libraries: C++编程的下一个突破 Boost带领你远远地超越了C++标准库,它使得C++编程更优雅、更有活力、更高产。首先,我们系统地介绍一下Boost库的主要组成和它们的主要用法。 Björn Karlsson为中级至高级的C++开发者描述了所有58个Boost库的轮廓,并完整叙述了12个可能最有用的库。Karlsson的主题范围从智能指针和类型转换,到容器和数据库结构,解释了如何正确地使用每一个库来改进你的代码。他详细论述了可以让你写出更简明、清晰、易读的代码的高级函数对象。他还带你到Boost的"幕后",看看那些对你创建自己的泛型库有益的工具和技术。 本书的内容包括: 智能指针,提供自动的对象生存期管理和简单的资源共享 提供类型转换和词汇转换的统一的、最优的解决方案 使编程更简单、更清晰的工具类 灵活的容器类,解决了C++标准库未覆盖的问题 对正则表达式的强有力的支持:Boost.Regex 可在调用点进行定义的函数对象:Boost.Bind 和 Boost.Lambda 更灵活的回调机制:Boost.Function 可管理的信号和响应动作(又称为Observer模式):Boost.Signals Boost库已被证明了是非常有用的,它们中的大多数已准备列入下一个版本的C++标准库。现在就开始,Beyond the C++ Standard Library. © Copyright Pearson Education. All rights reserved.

2013-07-09

Feature Extraction in Computer Vision and Image Processing

图像处理方向,详细描述特征识别 Preface ix ....................................................................... Why did we write this book? ix ......................................... The book and its support x .............................................. In gratitude xii .................................................................... Final message xii .............................................................. 1 Introduction 1 ............................................................ 1.1 Overview 1 ................................................................. 1.2 Human and computer vision 1 ................................... 1.3 The human vision system 3 ....................................... 1.4 Computer vision systems 10 ....................................... 1.5 Mathematical systems 15 ............................................ 1.6 Associated literature 24 ............................................... 1.7 References 28 ............................................................. 2 Images, sampling and frequency domain processing 31 ................................................................. 2.1 Overview 31 ................................................................. 2.2 Image formation 31 ...................................................... 2.3 The Fourier transform 35 ............................................. 2.4 The sampling criterion 40 ............................................ 2.5 The discrete Fourier transform ( DFT) 45 .................... 2.6 Other properties of the Fourier transform 53 ............... 2.7 Transforms other than Fourier 57 ................................ 2.8 Applications using frequency domain properties 63 .... 2.9 Further reading 65 ....................................................... 2.10 References 65 ........................................................... 3 Basic image processing operations 67 .................... 3.1 Overview 67 ................................................................. 3.2 Histograms 67 ............................................................. 3.3 Point operators 69 ....................................................... 3.4 Group operations 79 .................................................... 3.5 Other statistical operators 88 ....................................... 3.6 Further reading 95 ....................................................... 3.7 References 96 ............................................................. 4 Low- level feature extraction ( including edge detection) 99 ................................................................... 4.1 Overview 99 ................................................................. 4.2 First-order edge detection operators 99 ...................... 4.3 Second- order edge detection operators 120 ................ 4.4 Other edge detection operators 127 .............................. 4.5 Comparison of edge detection operators 129 ............... 4.6 Detecting image curvature 130 ...................................... 4.7 Describing image motion 145 ........................................ 4.8 Further reading 156 ....................................................... 4.9 References 157 ............................................................. 5 Feature extraction by shape matching 161 ................ 5.1 Overview 161 ................................................................. 5.2 Thresholding and subtraction 162 ................................. 5.3 Template matching 164 ................................................. 5.4 Hough transform (HT) 173 ............................................. 5.5 Generalised Hough transform (GHT) 199 ..................... 5.6 Other extensions to the HT 213 ..................................... 5.7 Further reading 214 ....................................................... 5.8 References 214 ............................................................. 6 Flexible shape extraction ( snakes and other techniques) 217 ................................................................ 6.1 Overview 217 ................................................................. 6.2 Deformable templates 218 ............................................ 6.3 Active contours (snakes) 220 ........................................ 6.4 Discrete symmetry operator 236 ................................... 6.5 Flexible shape models 240 ............................................ 6.6 Further reading 243 ....................................................... 6.7 References 243 ............................................................. 7 Object description 247 ................................................. 7.1 Overview 247 ................................................................. 7.2 Boundary descriptions 248 ............................................ 7.3 Region descriptors 278 .................................................. 7.4 Further reading 288 ....................................................... 7.5 References 288 ............................................................. 8 Introduction to texture description, segmentation and classification 291 ............................. 8.1 Overview 291 ................................................................. 8.2 What is texture? 292 ...................................................... 8.3 Texture description 294 ................................................. 8.4 Classification 301 .......................................................... 8.5 Segmentation 306 ......................................................... 8.6 Further reading 307 ....................................................... 8.7 References 308 ............................................................. Appendices 311 ................................................................ 9.1 Appendix 1: Homogeneous co-ordinate system 311 ..... 9.2 Appendix 2: Least squares analysis 314 ....................... 9.3 Appendix 3: Example Mathcad worksheet for Chapter 3 317 ...................................................................... 9.4 Appendix 4: Abbreviated Matlab worksheet 336 ........... Index 345

2013-07-09

空空如也

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

TA关注的人

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