【语音去噪】基于量子自适应变换QAB算法实现语音去噪附matlab代码

简介: 【语音去噪】基于量子自适应变换QAB算法实现语音去噪附matlab代码

1 简介

Decomposition of digital signals and images into other basis or dictionaries than time or space domains is a very common approach in signal and image processing and analysis. Such a decomposition is commonly obtained using fixed transforms (e.g., Fourier or wavelet) or dictionaries learned from example databases or from the signal or image itself. In this work, we investigate in detail a new approach of constructing such a signal or image-dependent bases inspired by quantum mechanics tools, i.e., by considering the signal or image as a potential in the discretized Schroedinger equation. To illustrate the potential of the proposed decomposition, denoising results are reported in the case of Gaussian, Poisson, and speckle noise and compared to the state of the art algorithms based on wavelet shrinkage, total variation regularization or patch-wise sparse coding in learned dictionaries, non-local means image denoising, and graph signal processing.

2 部分代码

% Sample code of the paper:% This script shows an example of calling our denoising algorithm % for signal using Quantum adaptative basis (QAB)function [psi,E] = f_ondes1D(signal,poids)% %the Hamiltonian associates with the signal and the associated eigenvalues% DataN = size(signal,2); % creat space to store datapsi = zeros(N,N); %eigenvectorsE = zeros(N,1);   %eigenvalues        % Construction of Hamiltonian matrice Hterme_hsm = ones(1,N) * poids;H = diag(signal,0) + diag(terme_hsm,0)*2 ...    - diag(terme_hsm(1:N-1),-1) - diag(terme_hsm(1:N-1),1);H(1,N) = -poids;H(N,1) = -poids;    % Calculation of eigenvalues and eigenvectors[vectP,valP] = eig(H);valP = diag(valP);vp_min = min(valP);vp_max = max(valP);    for g = 1:N  % Each iteration finds the "following" eigenvector  %(sorts the vectors in ascending order of the associated eigenvalues)              [valP_assoc,i_psi] = min(valP);    psi(:,g) = vectP(:,i_psi);  E(g) = valP(i_psi);  valP = [valP(1:(i_psi - 1)) ; valP((i_psi + 1):(N - g + 1))];  vectP = [vectP(:,1:(i_psi - 1)) vectP(:,(i_psi + 1):(N - g + 1))];        endend

3 仿真结果

4 参考文献

[1] Dutta S ,  Basarab A ,  Georgeot B , et al. Quantum Mechanics-Based Signal and Image Representation: Application to Denoising[J].  2021.

博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。

部分理论引用网络文献,若有侵权联系博主删除。


相关文章
|
10月前
|
机器学习/深度学习 算法 机器人
使用哈里斯角Harris和SIFT算法来实现局部特征匹配(Matlab代码实现)
使用哈里斯角Harris和SIFT算法来实现局部特征匹配(Matlab代码实现)
417 8
|
10月前
|
机器学习/深度学习 编解码 算法
基于OFDM技术的水下声学通信多径信道图像传输研究(Matlab代码实现)
基于OFDM技术的水下声学通信多径信道图像传输研究(Matlab代码实现)
407 8
|
10月前
|
机器学习/深度学习 算法 机器人
【水下图像增强融合算法】基于融合的水下图像与视频增强研究(Matlab代码实现)
【水下图像增强融合算法】基于融合的水下图像与视频增强研究(Matlab代码实现)
796 0
|
10月前
|
算法 定位技术 计算机视觉
【水下图像增强】基于波长补偿与去雾的水下图像增强研究(Matlab代码实现)
【水下图像增强】基于波长补偿与去雾的水下图像增强研究(Matlab代码实现)
1114 0
|
10月前
|
算法 机器人 计算机视觉
【图像处理】水下图像增强的颜色平衡与融合技术研究(Matlab代码实现)
【图像处理】水下图像增强的颜色平衡与融合技术研究(Matlab代码实现)
303 0
|
10月前
|
新能源 Java Go
【EI复现】参与调峰的储能系统配置方案及经济性分析(Matlab代码实现)
【EI复现】参与调峰的储能系统配置方案及经济性分析(Matlab代码实现)
298 0
|
10月前
|
机器学习/深度学习 数据采集 测试技术
基于CEEMDAN-VMD-BiLSTM的多变量输入单步时序预测研究(Matlab代码实现)
基于CEEMDAN-VMD-BiLSTM的多变量输入单步时序预测研究(Matlab代码实现)
361 8
|
10月前
|
机器学习/深度学习 算法 自动驾驶
基于导向滤波的暗通道去雾算法在灰度与彩色图像可见度复原中的研究(Matlab代码实现)
基于导向滤波的暗通道去雾算法在灰度与彩色图像可见度复原中的研究(Matlab代码实现)
469 8
|
10月前
|
编解码 运维 算法
【分布式能源选址与定容】光伏、储能双层优化配置接入配电网研究(Matlab代码实现)
【分布式能源选址与定容】光伏、储能双层优化配置接入配电网研究(Matlab代码实现)
813 12
|
10月前
|
人工智能 数据可视化 网络性能优化
【顶级SCI复现】虚拟电厂的多时间尺度调度:在考虑储能系统容量衰减的同时,整合发电与多用户负荷的灵活性研究(Matlab代码实现)
【顶级SCI复现】虚拟电厂的多时间尺度调度:在考虑储能系统容量衰减的同时,整合发电与多用户负荷的灵活性研究(Matlab代码实现)
310 9

热门文章

最新文章