Contents目录

  • Chapter 0: Introduction to the companion book本辅导书简介
  • Chapter 1: Introduction 简介
    • Viewing an image: image_view_demo 查看一张图像:image_view_demo

  • Chapter 2: The image, its representations and properties
    • Displaying a coarse binary image: coarse_pixels_draw

    • Distance transform, an example: dist_trans_demo
    • Border of a region, an example: region_border_demo
  • Chapter 3: The image, its mathematical and physical background
    • Convolution, shift-multiply-add approach: conv_demo
    • Discrete Fourier Transform: dft_edu
    • Inverse DFT: idft_edu
    • 1D Discrete Fourier Transform: dft1d_demo
    • 2D Discrete Fourier Transform: dft2d_demo
    • Basis functions for the 2D Discrete Cosine Transform: dct2base
    • Principal Component Analysis: pca
  • Chapter 4: Data structures for image analysis
    • \MATLAB\/ data structures: structures
    • Displaying image values: showim_values
    • Co-occurrence matrix: cooc
    • Integral image construction: integralim
  • Chapter 5: Image pre-processing
    • Grayscale transformation, histogram equalization: hist_equal
    • Geometric transformation: imgeomt
    • Smoothing using a rotating mask: rotmask
    • Image sharpening by Laplacian: imsharpen
    • Harris corner detector: harris
    • Frequency filtering: buttfilt
  • Chapter 6: Segmentation I
    • Iterative threshold selection: imthresh
    • Line detection using Hough transform: hough_lines
    • Dynamic programming boundary tracing: dpboundary
    • Region merging via boundary melting: regmerge
    • Removal of small regions: remsmall
  • Chapter 7: Segmentation II
    • Mean shift segmentation: meanshsegm
    • Active contours (snakes): snake
    • Gradient vector flow snakes: mgvf
    • Level sets: levelset
    • Graph cut segmentation: GraphCut
  • Chapter 8: Shape representation and description
    • B-spline interpolation: bsplineinterp
    • Convex hull construction: convexhull
    • Region descriptors: regiondescr
    • Boundary descriptors: boundarydescr
  • Chapter 9: Object recognition
    • Maximum probability classification for normal data: maxnormalclass
    • Linear separability and basic classifiers: linsep_demo
    • Recognition of hand-written numerals: ocr_demo
    • Adaptive boosting: adaboost
  • Chapter 10: Image understanding
    • Random sample consensus: ransac
    • Gaussian mixture model estimation: gaussianmixture
    • Point distribution models: pointdistrmodel
    • Active shape model fit: asmfit
  • Chapter 11: 3D vision, geometry
    • Homography estimation from point correspondences---DLT method: u2Hdlt
    • Mathematical description of the camera: cameragen
    • Visualize a camera in a 3D plot: showcams
    • Decomposition of the projection matrix P: P2KRtC
    • Isotropic point normalization: pointnorm
    • Fundamental matrix---8-point algorithm: u2Fdlt
    • 3D point reconstruction---linear method: uP2Xdlt
  • Chapter 12: Use of 3D vision
    • Iterative closest point matching: vtxicrp
  • Chapter 13: Mathematical morphology
    • Top hat transformation: tophat
    • Object detection using opening: objdetect
    • Sequential thinning: thinning
    • Ultimate erosion: ulterosion
    • Binary granulometry: granulometry
    • Watershed segmentation: wshed
  • Chapter 14: Image data compression
    • Huffman code: huffman
    • Predictive compression: dpcm
    • JPEG compression pictorially, step by step: jpegcomp_demo
  • Chapter 15: Texture
    • Haralick texture descriptors: haralick
    • Wavelet texture descriptors: waveletdescr
    • Texture based segmentation: texturesegm
    • L-system interpreter: lsystem
  • Chapter 16: Motion analysis
    • Adaptive background modeling by using a mixture of Gaussians: bckggm
    • Particle filtering: particle_filtering
    • Importance sampling: importance_sampling
    • Kernel-based tracking: kernel_based_tracking

[Home][Contact]
Last modified at 15:56, 28 April 2014 CEST.

关于机器视觉与机器学习的大量资源及书籍 可在线阅读:http://blog.exbot.net/archives/48

demo videos:http://visionbook.felk.cvut.cz/demos.html

Image Processing, Analysis & and Machine Vision - A MATLAB Companion的更多相关文章

  1. 机器视觉工具箱-Machine Vision Toolbox for Matlab

    发现了一个机器视觉的Matlab工具箱,分享一下. 机器视觉工具箱(MVT的)规定,在机器视觉和基于视觉的控制有益的多种功能.这是一个有点折衷收集反映作者在光度学,摄影测量,色度学 方面的个人利益.它 ...

  2. How to use data analysis for machine learning (example, part 1)

    In my last article, I stated that for practitioners (as opposed to theorists), the real prerequisite ...

  3. machine vision plan

    以OpenCV+C#/C++为主,Halcon+C#/C++.LabVIEW+NI Vision,其他还不了解 目前:Halcon+C# 1.完成:测量定位,表面质量检测 2.完成1后开始:OpenC ...

  4. Computer Vision with Matlab

    PPT: https://max.book118.com/html/2016/0325/38682623.shtm Code: http://www.pudn.com/Download/item/id ...

  5. books

    <<learning opencv>>,   布拉德斯基 (Bradski.G.) (作者), 克勒 (Kaehler.A.) (作者),   这本书一定要第二版的,因为第二版 ...

  6. 机器学习、图像识别方面 书籍推荐 via zhihu

    机器学习.图像识别方面 书籍推荐 作者:小涛 链接:https://www.zhihu.com/question/20523667/answer/97384340 来源:知乎 著作权归作者所有.商业转 ...

  7. Computer Vision Algorithm Implementations

    Participate in Reproducible Research General Image Processing OpenCV (C/C++ code, BSD lic) Image man ...

  8. 【机器学习Machine Learning】资料大全

    昨天总结了深度学习的资料,今天把机器学习的资料也总结一下(友情提示:有些网站需要"科学上网"^_^) 推荐几本好书: 1.Pattern Recognition and Machi ...

  9. FAQ: Machine Learning: What and How

    What: 就是将统计学算法作为理论,计算机作为工具,解决问题.statistic Algorithm. How: 如何成为菜鸟一枚? http://www.quora.com/How-can-a-b ...

随机推荐

  1. 对象的克隆,Dozer的使用

    现在有个复杂对象bean需要在赋值后在另一个地方用,想通过复制的方式拿到这个对象.首选是深度克隆,虽然发现该对象的父类已经实现了Cloneable接口,但父类是通过jar包引入的,而且在clone方法 ...

  2. 微信H5支付 EasyWechat

    其中如果想在一个laravel中使用多个不同主题的支付账户,可以在方法实例对象时,将对应的参数进行修改配置. 其中小程序支付,已得到验证. 1.公众号支付等资格申请 2.公众号对应的支付商户主体申请 ...

  3. Debian上启用Apache2服务

    在Debian上启用Apache2的方法如下: sudo apt-get update sudo apt-get install -y apache2 sudo service apache2 sta ...

  4. .com .cn .org .edu等域名的意义

    在开发的时候遇到了.org的域名,后来就去查了一下,原来这种域名是非盈利组织或者协会的标志 比如: https://getcomposer.org/ https://packagist.org/ ht ...

  5. Manager Test and DAO

    1. 阅读ManagerTest代码 (1)代码 import java.util.* package test; /** * This program demonstrates inheritanc ...

  6. 命令行调用远程dubbo服务

    有时需要对dubbo服务做个简单的测试,或者想看下某个dubbo服务类所提供的方法,可以直接在命令行通过telnet的方式来查看和调用dubbo服务,方法如下: telnet 127.0.0.1 20 ...

  7. AJAX验证此ID是否有对应的name

    在表格输入一个ID,然后自动根据ID在数据库中查找是否有对应name 这是javascript部分,利用ajax验证 $(document).ready(function() { $("#c ...

  8. 关于服务端控件textbox的disabled属性设置为disabled后在服务端无法取值的问题

    在asp.net 1.x版本中,当textbox控件的disabled属性设置为disabled的时候看,在服务端还是可以通过控件id.text获取到textbox的值的,只是不能输入值而已.但是在以 ...

  9. springboot成神之——mybatis和mybatis-generator

    项目结构 依赖 generator配置文件 properties配置 生成文件 使用Example 本文讲解如何在spring-boot中使用mybatis和mybatis-generator自动生成 ...

  10. Python中常见的异常处理

    异常和错误 part1:程序中难免出现错误,而错误分成两种 1. 语法错误(这种错误,根本过不了Python解释器的语法检测,必须在程序执行前就改正) # 语法错误示范一 if # 语法错误示范二 d ...