Abkürzungen im Fließtext aktualisiert

This commit is contained in:
Patrick Hangl
2025-12-10 15:39:49 +01:00
parent e121a3c923
commit 3f0628095e
7 changed files with 111 additions and 79 deletions

View File

@@ -1,8 +1,8 @@
\section{High level simulations}
The main purpose of the high-level simulations is to verify and demonstrate the theoretical approach of the previous chapters and to evaluate the performance of the proposed algorithms under various conditions. The following simulations include different scenarios such as, different types of noise signals and different cosniderations of transfer functions. The goal is to verify different approaches before taking the step to the implementation of said algorithms on the low-power DSP.\\ \\
The main purpose of the high-level simulations is to verify and demonstrate the theoretical approach of the previous chapters and to evaluate the performance of the proposed algorithms under various conditions. The following simulations include different scenarios such as, different types of noise signals and different cosniderations of transfer functions. The goal is to verify different approaches before taking the step to the implementation of said algorithms on the low-power \ac{DSP}.\\ \\
The implementation is conducted in Python, which provides a flexible environment for numerical computations and data visualization. The simulation is graphically represented using the Python library Matplotlib, allowing for clear visualization of the results.
\subsection{ANR algorithm implementation}
The high-level implementation of the ANR algorithm follows the theoretical framework outlined in Subchapter 2.5, specificially Equation \ref{equation_lms}. The algorithm is designed to adaptively filter out noise from a desired signal using a reference noise input. The implementation of the ANR function includes the following key steps:
\subsection{\ac{ANR} algorithm implementation}
The high-level implementation of the \ac{ANR} algorithm follows the theoretical framework outlined in Subchapter 2.5, specificially Equation \ref{equation_lms}. The algorithm is designed to adaptively filter out noise from a desired signal using a reference noise input. The implementation of the \ac{ANR} function includes the following key steps:
\begin{itemize}
\item Initialization: Define vectors to store the filter coefficients, the output samples, and the updated filter coefficients over time.
\item Filtering Process: After initially enough input samples (= number of filter coeffcients) passed the filter, for each sample in the input sample, the filter coefficients are multiplied with the corresponding reference noise samples before added to an accumulator.
@@ -10,11 +10,11 @@ The high-level implementation of the ANR algorithm follows the theoretical frame
\item Coefficient Update: The filter coefficients are updated by the corrector, which consists out of the error signal, scaled by the step size. The adaption step parameter allows to control how often the coefficients are updated.
\item Iteration: Repeat the process for all samples in the input signal.
\end{itemize}
The flow diagram in Figure \ref{fig:fig_anr_logic} illustrates the logical flow of the ANR algorithm, while the code snippet in Figure \ref{fig:fig_anr_code} provides the concrete code implementation of the ANR-function.
The flow diagram in Figure \ref{fig:fig_anr_logic} illustrates the logical flow of the \ac{ANR} algorithm, while the code snippet in Figure \ref{fig:fig_anr_code} provides the concrete code implementation of the \ac{ANR}-function.
\begin{figure}[H]
\centering
\includegraphics[width=0.9\linewidth]{Bilder/fig_anr_logic.jpg}
\caption{Flow diagram of the code implementation of the ANR algrotihm.}
\caption{Flow diagram of the code implementation of the \ac{ANR} algrotihm.}
\label{fig:fig_anr_logic}
\end{figure}
\begin{figure}[H]
@@ -42,14 +42,14 @@ The flow diagram in Figure \ref{fig:fig_anr_logic} illustrates the logical flow
return output, coefficient_matrix
\end{lstlisting}
\label{fig:fig_anr_code}
\caption{High-level implementation of the ANR algorithm in Python}
\caption{High-level implementation of the \ac{ANR} algorithm in Python}
\end{figure}
\subsection{Simple ANR usecases}
To evaltuate the general functionality and performance of the ANR algorithm from Figure \ref{fig:fig_anr_code} a set of three simple, artificial scenarios are introduced. These examples shall serve as a showcase to demonstrate the general functionality, the possibilities and the limitations of the ANR algorithm. In contrary to a more complex and realistic setup, which will be reviewed afterwards, the clean signals are available, which is in a realistic application not the case.\\ \\
\subsection{Simple \ac{ANR} usecases}
To evaltuate the general functionality and performance of the \ac{ANR} algorithm from Figure \ref{fig:fig_anr_code} a set of three simple, artificial scenarios are introduced. These examples shall serve as a showcase to demonstrate the general functionality, the possibilities and the limitations of the \ac{ANR} algorithm. In contrary to a more complex and realistic setup, which will be reviewed afterwards, the clean signals are available, which is in a realistic application not the case.\\ \\
In all three scenarios, a chirp signal with a frequency range from 100-1000 Hz is used as the desired signal, which is then corrupted with a sine wave (Usecase 1 and 2) or a gaussian white noise (Usecase 3) as noise signal respectively. In this simple setup, the corrpution noise signal is also available as the reference noise signal. Every approach is conducted with 16 filter coefficients and a stepsize of 0.01. The four graphs in the repsective first plot show the desired signal, the corrupted signal, the reference noise signal and the filter output. The two graphs in the respective second plot show the performance of the filter in form of the resulting error signal and the evolution of three filter coefficients over time.\\ \\
\noindent This artificial setup could be solved analitically, as the signals do not pass seperate, different transfer functions. This means, that the reference noise signal is the same as the corruption noise signal. This simple setup would not require an adaptive filter approach, but it nevertheless allows to clearly evaluate the performance of the ANR algorithm in different scenarios. Also, due to the fact that the desired signal is known, it is possible to graphically evaluate the performance of the algorithm in a simple way.
\noindent This artificial setup could be solved analitically, as the signals do not pass seperate, different transfer functions. This means, that the reference noise signal is the same as the corruption noise signal. This simple setup would not require an adaptive filter approach, but it nevertheless allows to clearly evaluate the performance of the \ac{ANR} algorithm in different scenarios. Also, due to the fact that the desired signal is known, it is possible to graphically evaluate the performance of the algorithm in a simple way.
\subsubsection{Simple usecase 1: Sine noise at 2000 Hz}
In the first usecase, a sine wave with a frequency of 2000 Hz, which lies outside the frequency spectrum of the chirp, is used as noise signal to corrupt the desired signal. The shape of the initial desired signal is still clearly recognizeable, even if its shape is affected in the higher frequency area. The filter output in Figure \ref{fig:fig_plot_1_sine_1.png} shows a statisfying performance of the ANR algorithm, as the noise is almost completely removed from the corrupted signal after the filter coefficients have adapted.
In the first usecase, a sine wave with a frequency of 2000 Hz, which lies outside the frequency spectrum of the chirp, is used as noise signal to corrupt the desired signal. The shape of the initial desired signal is still clearly recognizeable, even if its shape is affected in the higher frequency area. The filter output in Figure \ref{fig:fig_plot_1_sine_1.png} shows a statisfying performance of the \ac{ANR} algorithm, as the noise is almost completely removed from the corrupted signal after the filter coefficients have adapted.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_1_sine_1.png}
@@ -64,14 +64,14 @@ In the first usecase, a sine wave with a frequency of 2000 Hz, which lies outsid
\label{fig:fig_plot_2_sine_1.png}
\end{figure}
\subsubsection{Simple usecase 2: Sine noise at 500 Hz}
The second usecase resembles the first one, but instead of a 2000 Hz sine wave, a sine wave with a frequency of 500 Hz is used as noise signal. This means, that the noise signal now overlaps with the frequency spectrum of the chirp signal, making the noise cancellation task more challenging, as an osciillation beacon in the area of 500 Hz appears. Also, in contrary to usecase 1, the shape of the initial chirp is now far less recognizebale. The filter output in Figure \ref{fig:fig_plot_1_sine_2.png} indicates that the ANR algorithm is still able to significantly reduce the noise from the corrputed signal,
The second usecase resembles the first one, but instead of a 2000 Hz sine wave, a sine wave with a frequency of 500 Hz is used as noise signal. This means, that the noise signal now overlaps with the frequency spectrum of the chirp signal, making the noise cancellation task more challenging, as an osciillation beacon in the area of 500 Hz appears. Also, in contrary to usecase 1, the shape of the initial chirp is now far less recognizebale. The filter output in Figure \ref{fig:fig_plot_1_sine_2.png} indicates that the \ac{ANR} algorithm is still able to significantly reduce the noise from the corrputed signal,
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_1_sine_2.png}
\caption{Desired signal, corrputed signal, reference noise signal and filter output of simple usecase 2}
\label{fig:fig_plot_1_sine_2.png}
\end{figure}
\noindent Figure \ref{fig:fig_plot_2_sine_2.png} shows a significant increase of the amplitude of the error signal compared to Usecase 1, especially around the 500 Hz frequency of the noise signal. Also the adaption of the coefficients shows far more variance compared to Usecase 1, with a complete rearrangement in the area of 500 Hz. This indicates that the ANR algorithm is struggling to adapt effectively in a scenario, where the noise signal overlaps with the desired signal.
\noindent Figure \ref{fig:fig_plot_2_sine_2.png} shows a significant increase of the amplitude of the error signal compared to Usecase 1, especially around the 500 Hz frequency of the noise signal. Also the adaption of the coefficients shows far more variance compared to Usecase 1, with a complete rearrangement in the area of 500 Hz. This indicates that the \ac{ANR} algorithm is struggling to adapt effectively in a scenario, where the noise signal overlaps with the desired signal.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_2_sine_2.png}
@@ -79,7 +79,7 @@ The second usecase resembles the first one, but instead of a 2000 Hz sine wave,
\label{fig:fig_plot_2_sine_2.png}
\end{figure}
\subsubsection{Simple usecase 3: Gaussian white noise}
The last on of our three simplified usecases involves the use of a gaussian white noise signal as the noise signal to corrupt the desired signal. This scenario represents a more complex situation, as white noise contains a broad spectrum of frequencies and is not deterministic, making it more challenging for the ANR algorithm to effectively generate a clean output. Nevertheless, the filter output in Figure \ref{fig:fig_plot_1_noise.png} demonstrates that the ANR algorithm is capable of significantly reducing the noise from the desired signal, although the amplitude of the filter output varies, indicating difficulties adapting due to the broad frequency spectrum of the noise.
The last on of our three simplified usecases involves the use of a gaussian white noise signal as the noise signal to corrupt the desired signal. This scenario represents a more complex situation, as white noise contains a broad spectrum of frequencies and is not deterministic, making it more challenging for the \ac{ANR} algorithm to effectively generate a clean output. Nevertheless, the filter output in Figure \ref{fig:fig_plot_1_noise.png} demonstrates that the \ac{ANR} algorithm is capable of significantly reducing the noise from the desired signal, although the amplitude of the filter output varies, indicating difficulties adapting due to the broad frequency spectrum of the noise.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_1_noise.png}
@@ -93,25 +93,25 @@ The last on of our three simplified usecases involves the use of a gaussian whit
\caption{Error signal and filter coefficient evolution of simple usecase 3}
\label{fig:fig_plot_2_noise.png}
\end{figure}
\subsection{Intermediate ANR usecase}
After the general functionality of the ANR algorithm has been verified with the above simple and artificial usecases, a more complex and intermediate scenario is now introduced. In this usecase, a real-world audio track of a person speaking on TV (see top graph in Figure \ref{fig:fig_plot_1_wav.png}) is used as the desired signal, which is then corrupted with a dominant breathing noise as the noise signal. This scenario represents a more realistic application of the ANR algorithm, as it involves complex audio signals with varying frequency components and relatively high dynamics, but still keeps the advantage of having the clean signal available for performance evaluation. Also, again, the same noise which corrputs the desired signal is used as the reference noise signal, as no transfer functionsare applied on the signals.
\subsection{Intermediate \ac{ANR} usecase}
After the general functionality of the \ac{ANR} algorithm has been verified with the above simple and artificial usecases, a more complex and intermediate scenario is now introduced. In this usecase, a real-world audio track of a person speaking on TV (see top graph in Figure \ref{fig:fig_plot_1_wav.png}) is used as the desired signal, which is then corrupted with a dominant breathing noise as the noise signal. This scenario represents a more realistic application of the \ac{ANR} algorithm, as it involves complex audio signals with varying frequency components and relatively high dynamics, but still keeps the advantage of having the clean signal available for performance evaluation. Also, again, the same noise which corrputs the desired signal is used as the reference noise signal, as no transfer functionsare applied on the signals.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_1_wav.png}
\caption{Desired signal, corrputed signal, reference noise signal and filter output of the intermediate ANR usecase}
\caption{Desired signal, corrputed signal, reference noise signal and filter output of the intermediate \ac{ANR} usecase}
\label{fig:fig_plot_1_wav.png}
\end{figure}
\noindent The filter output in Figure \ref{fig:fig_plot_1_wav.png} indicates already graphically, that the audio track of the person speaking is significantly more intelligible after the application of the ANR algorithm - the prominent breathing noise is clearly reduced in the filter output compared to the corrupted signal.
\noindent The filter output in Figure \ref{fig:fig_plot_1_wav.png} indicates already graphically, that the audio track of the person speaking is significantly more intelligible after the application of the \ac{ANR} algorithm - the prominent breathing noise is clearly reduced in the filter output compared to the corrupted signal.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_2_wav.png}
\caption{Error signal and filter coefficient evolution of the intermediate ANR usecase}
\caption{Error signal and filter coefficient evolution of the intermediate \ac{ANR} usecase}
\label{fig:fig_plot_2_wav.png}
\end{figure}
\noindent The error signal in Figure \ref{fig:fig_plot_2_wav.png} confirms the function of the algorithm and shows peaks corresponding to the spikes in the breathing noise, indicating the the moments, when the ANR algorithm is setting its coeffcients again to adapt to the changing noise characteristics. It makes sense, that the adaption of the filter coefficients causes repeating spikes in the error signal, as the noise signal now is not static or periodic, but rather dynamic and changing it frequenc and amplitude over time.
\subsection{Complex ANR usecase}
To close the topic of high-level simulations of the ANR algorithm, a more complex and realistic usecase is finally introduced. In this scenario, the same two audio tracks of the previous usecase are used - but now they pass different transfer functions. Now, an analitical solution is not possible anymore, as the transfer functions affect the signals in different ways, making it impossible to simply subtract the noise signal from the corrupted signal. This scenario represents a more realistic application of the ANR algorithm, as it involves complex audio signals with varying frequency components and dynamics, as well as different transfer functions affecting the signals.\\ \\
Different transfer functions represent the reality of different sensors recording the corrupted signal and the reference noise signal with a specific frequency response characteristic - this circumstance is especially important, as later a fixed set of filter coefficients shall take care of the predictable part of the signal to reduce the computing power of the DSP.\\
\noindent The error signal in Figure \ref{fig:fig_plot_2_wav.png} confirms the function of the algorithm and shows peaks corresponding to the spikes in the breathing noise, indicating the the moments, when the \ac{ANR} algorithm is setting its coeffcients again to adapt to the changing noise characteristics. It makes sense, that the adaption of the filter coefficients causes repeating spikes in the error signal, as the noise signal now is not static or periodic, but rather dynamic and changing it frequenc and amplitude over time.
\subsection{Complex \ac{ANR} usecase}
To close the topic of high-level simulations of the \ac{ANR} algorithm, a more complex and realistic usecase is finally introduced. In this scenario, the same two audio tracks of the previous usecase are used - but now they pass different transfer functions. Now, an analitical solution is not possible anymore, as the transfer functions affect the signals in different ways, making it impossible to simply subtract the noise signal from the corrupted signal. This scenario represents a more realistic application of the \ac{ANR} algorithm, as it involves complex audio signals with varying frequency components and dynamics, as well as different transfer functions affecting the signals.\\ \\
Different transfer functions represent the reality of different sensors recording the corrupted signal and the reference noise signal with a specific frequency response characteristic - this circumstance is especially important, as later a fixed set of filter coefficients shall take care of the predictable part of the signal to reduce the computing power of the \ac{DSP}.\\
Therefore, the audio tracks from the previous example are now convolved with different transfer functions, which mimic the case, that the sensor recording the corrputed signal, shows another frequency response characteristic as the one recording the reference noise signal. This means, that the reference noise signal is now different to the noise signal corrupting the desired signal, making adaptive noise reduction the only feasible approach to reduce the noise from the corrputed signal.
\begin{figure}[H]
\centering
@@ -126,18 +126,18 @@ Therefore, the audio tracks from the previous example are now convolved with dif
\caption{The raw noise signal recorded with two different sensors, showing the effect of different transfer functions on the signal}
\label{fig:fig_plot_4_wav_complex.png}
\end{figure}
\noindent To evaluate the performance of the ANR algorithm in this complex scenario, the corrupted signal is recorded with the primary sensor while the reference noise signal is recorded with secondary sensor. The filter output in Figure \ref{fig:fig_plot_1_wav_complex.png} indicates, that the ANR algorithm is still capable of significantly reducing the noise from the corrupted signal, even with only a different reference noise signal available to adapt the filter coefficients.
\noindent To evaluate the performance of the \ac{ANR} algorithm in this complex scenario, the corrupted signal is recorded with the primary sensor while the reference noise signal is recorded with secondary sensor. The filter output in Figure \ref{fig:fig_plot_1_wav_complex.png} indicates, that the \ac{ANR} algorithm is still capable of significantly reducing the noise from the corrupted signal, even with only a different reference noise signal available to adapt the filter coefficients.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_1_wav_complex.png}
\caption{Desired signal, corrputed signal, reference noise signal and filter output of the complex ANR usecase}
\caption{Desired signal, corrputed signal, reference noise signal and filter output of the complex \ac{ANR} usecase}
\label{fig:fig_plot_1_wav_complex.png}
\end{figure}
\noindent The error signal in Figure \ref{fig:fig_plot_2_wav_complex.png} shows only a minor increase in amplitude compared to the previous intermediate usecase, indicating that the ANR algorithm is effectively adapting its filter coefficients.
\noindent The error signal in Figure \ref{fig:fig_plot_2_wav_complex.png} shows only a minor increase in amplitude compared to the previous intermediate usecase, indicating that the \ac{ANR} algorithm is effectively adapting its filter coefficients.
\begin{figure}[H]
\centering
\includegraphics[width=1.0\linewidth]{Bilder/fig_plot_2_wav_complex.png}
\caption{Error signal and filter coefficient evolution of the complex ANR usecase}
\caption{Error signal and filter coefficient evolution of the complex \ac{ANR} usecase}
\label{fig:fig_plot_2_wav_complex.png}
\end{figure}
\noindent As now the functionality of the ANR algorithm has been verified in different scenarios, varying from simple to complex, the next chapter of this thesis focuses on the implementation of the algorithm on the low-power DSP.
\noindent As now the functionality of the \ac{ANR} algorithm has been verified in different scenarios, varying from simple to complex, the next chapter of this thesis focuses on the implementation of the algorithm on the low-power \ac{DSP}.