-
Lsm_match
最小二乘图像影像匹配方法,一个很详细的源码例程,有过程有结果,希望对初学者有帮助。高斯解方程,以及最小二乘匹配,里面都很详细。(Squares image image matching method, a very detailed source code routines, the outcome of the process, I hope to help beginners. Gaussian solution of equations, and least squares matching, which is very detailed.)
- 2013-07-18 16:52:41下载
- 积分:1
-
kolmog
给定任意一个子波,通过克基霍夫变换返回最小相位子波。(Kolmogoroff spectral factorization.
Given an arbitrary wavelet this function retrieves the minimum
phase wavelet using Kolmogoroff factorization)
- 2009-05-16 12:13:02下载
- 积分:1
-
mcmc
马尔科夫蒙特卡罗的matlab实现程序。上传分享,希望可以借鉴他人更好的。(Monte Carlo matlab procedures. Upload and share the hope that we can learn from others better)
- 2012-12-05 09:23:27下载
- 积分:1
-
GCmatlab.tar
Graph cut with matlab. It is very powerful
- 2021-01-16 21:38:46下载
- 积分:1
-
Codeblocks-MinGW-openCV
use Codeblocks MinGW in openCV
- 2012-04-16 09:41:20下载
- 积分:1
-
vendor
Invensense公司的modm实例代码example。
初始化以及IIC的引用示例。(The example of modm from Invensense.
IIC initiation and configuration initiation.)
- 2019-03-13 14:09:03下载
- 积分:1
-
ImageQuilting
实现image quilting算法进行纹理合成。(implement of Texture synthesis)
- 2017-09-29 16:38:45下载
- 积分:1
-
LS_Unwrape
最小二乘相位解包裹算法,基于快速傅里叶变换(Least-squares algorithm for phase unwrapping)
- 2020-09-29 16:47:45下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
EMDdenoising
利用emd对一维信号进行去噪的最新程序。包含了三种emd去噪方法:1、直接使用小波阈值,进行硬阈值去噪;2、使用具有emd分解特性的阈值去噪;3、emd分解后的平移不变去噪。(Using emd on one-dimensional signal de-noising of the latest procedures. Emd contains three kinds of de-noising methods: a direct use of wavelet thresholding to carry out hard-threshold de-noising 2, using a emd decomposition characteristics of the threshold de-noising 3, emd decomposition of the translation invariant de-noising.)
- 2021-01-05 16:28:54下载
- 积分:1