搜索资源列表
FasteffectiveDCT
- DCT变换是数字图像处理中重要的变换,很多重要的图像算法、图像应用都是基于DCT变换的,如JPEG图像编码方式。对于大尺寸的二维数值矩阵,倘若采用普通的DCT变换来进行,其所花费的时间将是让人难以忍受甚至无法达到实用。而要克服这一难点,DCT变换的快速算法无非是非常吸引人的-DCT digital image processing is an important transformation, many important images algorithm, imaging applicatio
program_1
- 图片模糊处理的例程,通过对n*n的pixel矩阵数据排序,进行中值变换,获得平缓过渡的图片。 排序程序可使用多种算法,实现的有冒泡、快速排序算法。
allfns.zip
- VGG MultiView Compute Library,包含各种图像插值算法的实现和图像变换矩阵参数估计,VGG MultiView Compute Library, contains a variety of image interpolation algorithm and image transformation matrix parameter estimation
Code_LowRankSaliency
- 通过恢复低秩矩阵得到显著性图,其中详细的运用了mean-shift算法,可以很好的了解mean-shift算法的使用,同时还包含了RPCA算法。-Significantly through the recovery of low rank matrix diagram, which detailed the use of mean-shift algorithm, can be a very good understanding of the use of the mean-shift algo
Interpolation
- java实现的克里金插值算法。算法实现中使用Jama.Matrix包来做矩阵操作。算法简洁明了。 希望能帮到你。-a kriging interpolation realization based on the Java language.The package Jama.Matrix is used to realize the Matrix。The code is very compact。enjoy it!
NMF
- 非负矩阵分解,经典nmf算法,c语言实现,下载压缩包后直接解压即可-Non negative matrix factorization, the classic NMF algorithm, C language to achieve, download the compressed package can be directly extracted
nmf.py
- 非负矩阵分解,经典nmf算法,python实现,下载压缩包后直接解压即可-Non negative matrix factorization, the classic NMF algorithm, python language to achieve, download the compressed package can be directly extracted
frangi_hessian
- 多尺度海森矩阵血管增强算法,在MATLAB下实现了2维医学图像的血管增强-Multiscale Vessel Enhancement Filtering
图像配准算法
- 1.SIFT得到两幅图像的匹配点对 2.通过RANSAC剔除外点,得到N对内点 3.利用DLT和SVD计算全局单应性 4.将源图划分网格,取网格中心点,计算每个中心点和源图上内点之间的欧式距离和权重 5.将权重放到DLT算法的A矩阵中,构建成新的W*A矩阵,重新SVD分解,自然就得到了当前网格的局部单应性矩阵 6.遍历每个网格,利用局部单应性矩阵映射到全景画布上,就得到了APAP变换后的源图 7.最后就是进行拼接线的加权融合