仿射变换的作用是将图像做旋转、拉伸。仿射变换是通过一个中间矩阵来使源图像像素的位置变换到指定的目标图像的像素的位置,原理类似于上文的remapping。所以仿射变换也是矩阵的一种运用。于是仿射变换一般分成两步:第一、寻找变换的中间矩阵;第二、进行变换。要找到变换的中间矩阵,一般使用三个点来寻找它,因...
分类:
其他好文 时间:
2014-12-19 17:24:32
阅读次数:
159
// affine transformation.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
/**
* Automatic perspective correction for quadrilateral objects. See the tutorial at
* http://opencv-code.com/tutorials/automa...
分类:
其他好文 时间:
2014-12-11 19:15:04
阅读次数:
303
引自:http://cvchina.net/post/50.html一、特征提取Feature Extraction: SIFT [1] [Demo program][SIFT Library] [VLFeat] PCA-SIFT [2] [Project] Affine-SIFT [3] [Pro...
分类:
其他好文 时间:
2014-12-02 22:04:44
阅读次数:
413
仿射变换 Affine Transformation 1,It is any transformation that can be expressed in the form of a matrix multiplication (linear transformation) followed by...
分类:
其他好文 时间:
2014-11-21 18:03:05
阅读次数:
184
一、特征提取Feature Extraction:· SIFT [1] [Demo program][SIFT Library] [VLFeat]· PCA-SIFT [2] [Project]· Affine-SIFT [3] [Project]· SURF [4] [OpenSURF] [Mat...
分类:
其他好文 时间:
2014-10-03 18:51:35
阅读次数:
469