-
MATLAB
毕设内容,高光谱图像基本处理,主要实现单波段提取与伪彩色图像合成功能,提供程序框架,更多功能只需嵌入即可。另用MATLAB写了其GUI。(Complete set content, the basic processing of hyperspectral images, mainly for single-band pseudo-color image extraction and synthesis, to provide procedural framework, more features can only embed. MATLAB was also used their GUI.)
- 2010-06-11 18:16:47下载
- 积分:1
-
fem3d_sample
matllab有限元函数求值程序关于3D四面体网格(a program library which evaluates a finite element function defined on a 3D tetrahedral mesh)
- 2013-01-02 21:33:16下载
- 积分:1
-
新建文件夹
该程序可以实现对于信号的时域参数提取以及信号的包络分析(The program can realize time domain parameter extraction of signals and envelope analysis of signals)
- 2019-01-23 17:10:01下载
- 积分:1
-
GWO
说明: 性能优异的智能优化算法,灰狼优化算法完整代码,通俗易懂,有望应用于多方面的工程领域。(Excellent performance of intelligent optimization algorithm, gray Wolf optimization algorithm complete code, easy to understand, is expected to be applied in many aspects of the engineering field.)
- 2020-11-12 20:13:04下载
- 积分:1
-
图像畸变校正
function gmodify(pic,uv,gm,og) %pic表示要处理的图像的路径文件名
%uv是一个二维矩阵,uv(:,1)代表上面提到的,uv(:,2)表示
%gm是一个二维矩阵,gm(j,:)代表在校正图空间上与uv(j,:)一一应的点
%og 代表对称中心,它是一个二维向量
a=imread(pic);
b=double(a);
n=size(gm(:,1));
for k=1:n%转换到以对称点为原点的空间关系并构造矩阵A
A(k,:)=[1,gm(k,1)-og(1),gm(k,2)-og(2),(gm(k,1)-og(1)^2), (gm(k,1)-og(1))*(gm(k,2)-og(2)),(gm(k,2)-og(2) ^2)];
end
[h,w]=size(b(:,:,1));
sp=zeros(h,w,3)+255;
a0=pinv(A)* uv(:,2); %计算上面提到的地址映射的系数估计a
b0=pinv(A)* uv(:,1); %计算上面中提到的地址映射的系数估计b
for i=1:h %从理想图像矩阵出发处理
for j=1:w
x=[1,j-og(1),i-og(2),(j-og(1))^2,(i-og(2))*(j-og(1)),(i-og(2))^2];
u=x*a0+og(2); % 逆向映射(j,i)到畸变图像矩阵(v,u)
v=x*b0+og(1);
if (u>1)&&(u1)&&(v
- 2022-06-12 17:58:51下载
- 积分:1
-
一个Mfcc和Gmm的说话人识别MATLAB程序
利用matlab写成的窄带噪声发生,关于神经网络控制,LDPC码的完整的编译码,matlab实现了五类灰色关联度模型的计算,电力系统暂态稳定程序,可以进行暂态稳定计算,Gabor小波变换与PCA的人脸识别代码。
- 2023-02-07 23:15:03下载
- 积分:1
-
toolbox_wavelets
一个用matlab开发的用于图像处理小波变换工具箱,希望对大家有帮助(With the development of a matlab wavelet transform for image processing toolbox, and they hope to have everyone help)
- 2007-10-10 22:21:50下载
- 积分:1
-
simulation_and_software_radio_for_mobile_communica
说明: 电子书simulation and software radio for mobile communications的程序文件,用于学习MATLAB通信仿真(electronic books and simulation software for mobile radio communications procedures document for learning communications MATLAB simulation)
- 2006-03-01 09:05:42下载
- 积分:1
-
SimplexMethodForNLP
源码给出了非线性LP问题的单纯形算法,程序分为5个.M文件,其中simple.m为单纯形算法,其他为调用文件,欢迎大家讨论下载。(Source LP problem given the nonlinear simplex algorithm, the program is divided into 5. M file, which simple.m for the simplex algorithm, the other for calling the file, please download the discussion.)
- 2010-10-25 14:16:45下载
- 积分:1
-
matlab_KALMAN_filtering
对输入的信号进行卡尔曼滤波。内插信号,wiener滤波(of input signals Kalman filter. Interpolation signal Wiener filter)
- 2020-07-09 14:18:56下载
- 积分:1