资源列表
Computer-Graphic-Source-Code
- 学习计算机图形学不可多得的好源码。源码都是用C++实现的。-Learning computer graphics rare good source. Source is realized using C++.
Fourier_compression
- 用傅里叶变换的方法对彩色图像进行压缩,适合初学者-Do the Fourier_compression to a color picture with Fourier transform.It s fit for freshmen.
useful-code
- 各种代码,包括汽车车牌识别,密码所设计。中国象棋游戏c语言代码等等。绝对超值,值得一下。-Various codes, including car license plate recognition, designed for the password. Chinese chess game c language code, and so on. Absolute value, it is worth it.
KSVD
- 图像稀疏编码的一种方法,可用于基于稀疏表示的图像压缩、去噪等-Sparse image coding method can be used for sparse representation-based image compression, denoising, etc.
matlab2
- 我自己简化的暗通道先验算法,我亲自测试的,去雾效果不错。而且里附有数据集图片。站长可以亲自测试。-I simplified the dark channel prior algorithm myself. I personally test,and the fog effect is good. And with a data set in the picture. You can test by yourself.
Advanced.Signal.Processing.Handbook
- 一本国外非常经典的一本关于图像处理算法的书籍,非常的不错-A foreign one is very classic image processing algorithms on the books, very good
MAX9_sdk
- 3ds max 9 的sdk,可以用它来对3ds max进行二次开发。里面有样例源码及dll/lib/h,以及开发帮助文档。-sdk for 3ds max 9, can be used to develop plug-ins for max.
sift
- 利用sift算法实现图像keypoint的检测和图像拼接(Image keypoint detection and image mosaic using SIFT algorithm)
adium
- adium源代码,支持各种IM协议,分析协议是好选择。当然,学习Objective-C,也不错哈-Adium source code, supports a variety of IM protocol, analysis protocol selection are good. Of course, learning Objective-C, also good ha
Photoshop
- PS软件,可以让开发人员美化图片,让界面更好看(PS software, developers can beautify the picture, so that the interface look better)
nehe
- 《计算机图形学》 的 这本书所有有关编程及其图片! 一共48课 !-" Computer Graphics" in this book all the programming and the picture! A total of 48 courses!
图像配准算法
- 1.SIFT得到两幅图像的匹配点对 2.通过RANSAC剔除外点,得到N对内点 3.利用DLT和SVD计算全局单应性 4.将源图划分网格,取网格中心点,计算每个中心点和源图上内点之间的欧式距离和权重 5.将权重放到DLT算法的A矩阵中,构建成新的W*A矩阵,重新SVD分解,自然就得到了当前网格的局部单应性矩阵 6.遍历每个网格,利用局部单应性矩阵映射到全景画布上,就得到了APAP变换后的源图 7.最后就是进行拼接线的加权融合