码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 【信号处理】Matlab实现CDR-based噪声和混响抑制


    1 内容介绍

    We investigate the estimation of the time- and frequency-dependent coherent-to-diffuse ratio (CDR) from the measured spatial coherence between two omnidirectional microphones. We illustrate the relationship between several known CDR estimators using a geometric interpretation in the complex plane, discuss the problem of estimator bias, and propose unbiased versions of the estimators. Furthermore, we show that knowledge of either the direction of arrival (DOA) of the target source or the coherence of the noise field is sufficient for an unbiased CDR estimation. Finally, we apply the CDR estimators to the problem of dereverberation, using automatic speech recognition word error rate as objective performance measure.

    2 部分代码

    %ESTIMATE_CDR_ROBUST_UNBIASED

    % Unbiased estimation of the Coherent-to-Diffuse Ratio (CDR) from the complex

    % coherence of a mixed (noisy) signal, using knowledge of both signal and noise

    % coherence. This is a variation of estimate_cdr_unbiased which shows better

    % performance in practice. Equivalent to CDRprop2 in [1].

    %

    % CDR = estimate_cdr_nodiffuse(X, N, S)

    %       X: complex coherence of mixed (noisy) signal

    %       N: coherence of noise component (real-valued)

    %       S: coherence of signal component (magnitude one)

    %

    % Reference:

    % Andreas Schwarz, Walter Kellermann, "Coherent-to-Diffuse Power Ratio

    % Estimation for Dereverberation", IEEE/ACM Trans. on Audio, Speech and

    % Lang. Proc., 2015 (under review); preprint available: arXiv:1502.03784

    % PDF: http://arxiv.org/pdf/1502.03784

    %

    % Andreas Schwarz (schwarz@lnt.de)

    % Multimedia Communications and Signal Processing

    % Friedrich-Alexander-Universitaet Erlangen-Nuernberg (FAU)

    % Cauerstr. 7, 91058 Erlangen, Germany

    function CDR = estimate_cdr_robust_unbiased(Cxx,Cnn,Css)

    Css = bsxfun(@times, ones(size(Cxx)), Css);

    Cnn = bsxfun(@times, ones(size(Cxx)), Cnn);

    % limit the magnitude of Cxx to prevent numerical problems

    magnitude_threshold = 1-1e-10;

    critical = abs(Cxx)>magnitude_threshold;

    Cxx(critical) = magnitude_threshold .* Cxx(critical) ./ abs(Cxx(critical));

    CDR = 1./(-abs(Cnn-exp(1j*angle(Css)))./(Cnn.*cos(angle(Css))-1)).*abs((exp(-1j*angle(Css)).*Cnn - (exp(-1i*angle(Css)).*Cxx))./(real(exp(-1i*angle(Css)).*Cxx) - 1));

    % Ensure we don't get any negative or complex results due to numerical effects

    CDR = max(real(CDR),0);

    end

    3 运行结果

    4 参考文献

    [1] Schwarz, A. , and  W. Kellermann . "Unbiased coherent-to-diffuse ratio estimation for dereverberation." International Workshop on Acoustic Signal Enhancement IEEE, 2014.

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

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

     

  • 相关阅读:
    零基础可以报考中级经济师吗?需要准备多久?
    1.1信息系统与信息化-1.2信息系统开发方法
    REDIS09_HyperLogLog的概述、基本命令、UV、PV、DAU、MAU、首页UV如何进行统计处理
    浅析RocketMQ-存储文件
    vs中git提交合并分支的步骤记录
    R语言绘制IPCC风格箱线抖动点图
    Tomcat及jdk安装下载及环境配置(超超超详解)
    1964springboot VUE小程序在线学习管理系统开发mysql数据库uniapp开发java编程计算机网页源码maven项目
    【黑马程序员】Python文件、异常、模块、包
    蜂巢能源冲刺科创板上市:拟募资150亿元,上半年收入37亿元
  • 原文地址:https://blog.csdn.net/matlab_dingdang/article/details/126757121
  • 最新文章
  • 【JVM】编译执行与解释执行的区别是什么?JVM 使用哪种方式?
    用 Hashids 优雅解决 C 端自增 ID 暴露问题
    V8引擎 精品漫游指南--Ignition篇(上) 指令 栈帧 槽位 调用约定 内存布局 基础内容
    LLVM Pass快速入门(四):代码插桩
    milkup:桌面端 markdown AI续写和即时渲染
    基于项目工程构建SBOM(软件物料清单)的研究
    鸿蒙应用开发UI基础第二节:鸿蒙应用程序框架核心解析与实操
    .NET 中如何快速实现 List 集合去重?
    扣子Coze实战:从0到1打造抖音+小红书热点监控智能体
    浅谈数据访问层
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号