
OpenCV 2 CoolBook Note
wanglang3081
这个作者很懒,什么都没留下…
展开
-
HSV颜色模型
HSV(Hue, Saturation, Value)是根据颜色的直观特性由A. R. Smith在1978年创建的一种颜色空间, 也称六角锥体模型(Hexcone Model)。这个模型中颜色的参数分别是:色调(H),饱和度(S),亮度(V)。HSV颜色空间模型[1]色调H:用角度度量,取值范围为0°~360°,从红色开始按逆时针方向计算,红色为0°,绿色为120°,转载 2013-12-22 13:34:49 · 1904 阅读 · 0 评论 -
Support Vector Machines for Non-Linearly Separable Data
GoalIn this tutorial you will learn how to:Define the optimization problem for SVMs when it is not possible to separate linearly the training data.How to configure the parameters in CvSVMPar转载 2013-12-22 22:28:56 · 956 阅读 · 0 评论 -
Introduction to Support Vector Machines
GoalIn this tutorial you will learn how to:Use the OpenCV functions CvSVM::train to build a classifier based on SVMs and CvSVM::predict to test its performance.What is a SVM?A Su转载 2013-12-22 22:27:11 · 1276 阅读 · 0 评论 -
Cascade Classifier Training
ntroductionThe work with a cascade classifier inlcudes two major stages: training and detection.Detection stage is described in a documentation ofobjdetect module of general OpenCV documentation.转载 2013-12-22 15:41:55 · 1841 阅读 · 0 评论 -
More Morphology Transformations
GoalIn this tutorial you will learn how to:Use the OpenCV function morphologyEx to apply Morphological Transformation such as:OpeningClosingMorphological GradientTop HatBlack Hat转载 2013-12-22 21:31:32 · 1343 阅读 · 0 评论 -
Example of Histogram Equalization
ExamplesSmall imageThe following is the same 8x8 subimage as used in JPEG. The 8-bit greyscale image shown has the following values:The histogram for this image is shown in the following tab转载 2013-12-19 22:37:27 · 2066 阅读 · 0 评论 -
Histogram Equalization OpenCV offical guild
What is an Image Histogram?It is a graphical representation of the intensity distribution of an image.It quantifies the number of pixels for each intensity value considered.What is Histo转载 2013-12-19 22:00:21 · 1245 阅读 · 0 评论 -
Back Projection
http://docs.opencv.org/doc/tutorials/imgproc/histograms/back_projection/back_projection.html?highlight=normalizehttp://docs.opencv.org/modules/core/doc/operations_on_arrays.html?highlight=normalize#转载 2013-12-20 09:06:05 · 2691 阅读 · 1 评论 -
Guanssian Filter
in the case of a Gaussian filter, the weight associated with a pixel is proportional to its distance from the central pixel. Recall that the 1D Gaussian function has the following form:G(x)=Ae^(翻译 2014-01-01 14:24:03 · 1222 阅读 · 0 评论 -
Understanding SVM
GoalIn this chapterWe will see an intuitive understanding of SVMTheoryLinearly Separable DataConsider the image below which has two types of data, red and blue. In kNN, for a test转载 2013-12-30 16:41:16 · 794 阅读 · 0 评论 -
Couting the Pixels with Histograms
The distribution of pixels value across the image constitutes an important characteristic of this image. that's the concept discript as histograms.A histogram is a simple table that gives the numbeer翻译 2013-12-09 10:36:35 · 1054 阅读 · 0 评论 -
2 Manipulating the Pixels
In this chapter, we will cover: Accessing pixel values Scanning an image with pointers Scanning an image with iterators Writing efficient image scanning loops Scanning an image with neig翻译 2013-12-07 16:43:10 · 2733 阅读 · 0 评论 -
Eroding and Dilating
In this tutorial you will learn how to:Apply two very common morphology operators: Dilation and Erosion. For this purpose, you will use the following OpenCV functions:erodedilateCool The转载 2013-12-22 16:11:46 · 800 阅读 · 0 评论