Découvrez notre Chaîne YouTube "Ingénierie et Projets"
Découvrez notre Chaîne Secondaire "Information Neuronale et l'Ingénierie du Cerveau"

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Description

 Objectifs du projet électronique

 Etude et simulation numérique du filtre Moyenneur avec Matlab

Ce filtre lisseur part du principe que la valeur d’un signal est relativement similaire à son voisinage. Il fait donc en sorte que chaque valeur du signal est peut être remplacé par la moyenne pondérée de ses valeurs précédentes. Si on applique un filtre moyenneur de taille N=10, cela signifie qu’on additionne tous les valeurs précédentes de la valeur courante traitée puis on devise par la taille du filtre. On obtient ainsi la formule suivante du filtre.

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Fomule

Exemple :

On considère un morceau du signal constitue de 10 échantillons passés, la valeur moyenne sur 10 échantillons à l’instant actuel correspond à l’application de formule ci-dessus.

s(t)=[10.2, 10, 10.5, 10.6, 10.4, 10.8,10.12,10,11], N=10
s_m(t) = (10.2+ 10+10.5+10.6+10.4+10.8+10.12+10+11)/10= 9.36

Etude de l’effet de la taille du filtre sur la qualité du signal 

Pour comprendre le comportement du filtre et ses effets sur un signal. On va générer un signal sinusoïdal de fréquence Fo, puis ajouter un bruit gaussien de la moyenne mu et de la variance vare. Le signal bruité est l’addition du signal original et le bruit.

On va changer d’une façon linéaire la taille du filtre appliqué sur le signal bruite et ensuite le comparé avec le signal original.

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Description 1

Bruit filtré pour N=40 & N=4 

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Description 2

Bruit filtré pour N varié de 4 à 40 avec un pas de 4 

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Description 3

 L’Erreur Quadratique Moyenne EQM  ou MSE (Mean Square Error)

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - Erreur quadratique moyenne

L’erreur quadratique moyenne (Mean Squared Error en anglais) est l’espérance du carré de l’erreur entre la vraie valeur et sa valeur estimée.

En topométrie, on emploie plus généralement l’abrégé “EQM” pour “erreur quadratique moyenne ”.

Soit un certain nombre de mesures. Chacune de ces mesures est entachée d’une erreur (rien à voir avec une faute) On appelle erreur vraie pour une mesure la différence entre la mesure et sa vraie valeur. Si cette même valeur a été mesurée plusieurs fois, on appelle erreur apparente d’une mesure isolée, la différence entre la moyenne arithmétique des mesures et la mesure isolée [Wiki].

L’EQM est une mesure statistique qui permet de mesurer la différence entre deux vecteurs. La figure ci-dessous illustre l’erreur quadratique moyenne en fonction de la taille du filtre. On constate que l’erreur décroit avec l’augmentation de la taille du filtre, donc la qualité du signal s’améliore avec l’utilisation d’un filtre de taille importante.  L’inconvénient majeur du filtre, il introduit un retard de N Echantillons 🙁

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - EQM

Programme Matlab

% Paramètres du signal
F0=10;
T0=1/F0;
Ns=200;
Fs=F0*Ns;
Ts=1/Fs;

% Génération du signal
t= 0:Ts:2*T0;
s_t= sin(2*pi*F0*t);

% Géneration du bruit
Vare = 1e-2;
Mu=0;
b_t = Mu + sqrt(Vare)*randn(1,length(s_t));

% Génération signal + bruit
s_b_t = s_t + b_t;


% Affichage
figure(1);
grid on ; hold on ;

plot(t, s_t,'r');
plot(t,b_t,'g');
plot(t,s_b_t,'b');
legend('Signal original', 'Bruit', 'Signal bruité');

xlabel('t(s)');
ylabel('s(t)');


%% Filtrage - Lissage du signal

% Paramètre du filtre moyenneur
N_filtre = 4:4:40 ;
S_filre = ones(length(N_filtre),length(s_t));
MSE=0*N_filtre;

for k=1:length(N_filtre)
    S_filre(k,:) = s_t;
    for i=N_filtre(k) : length(s_t)
        S_filre(k,i) =mean( s_b_t(i-N_filtre(k)+1:i));
    end

    % Calcul de l'erreur quadratique moyenne
    N_k= N_filtre(end);
    D = abs( s_b_t(1:end-N_k+1) - S_filre(k,N_k:end)).^2;
    MSE(k) = sum(D(:))/length(s_t);
end

% Affichage
figure(2);
grid on ; hold on ;

plot(t,s_t,'r');
plot(t,s_b_t,'b');
plot(t,S_filre,'g');
legend('Signal original','Signal bruité', 'Signal bruité filtré');

xlabel('t(s)');
ylabel('s(t)');
figure(3);
grid on ; hold on ;
plot(N_filtre,MSE,'r');
legend('EQM en fonction de N');
xlabel('N');
ylabel('EQM');

Etude et simulation numérique du filtre Médian avec Matlab

Le filtre médian est un filtre numérique simple, souvent utilisé pour la réduction de bruit. La réduction de bruit est une étape de post-traitement classique visant à améliorer les résultats de traitements futurs du signal. La technique de filtre médian est largement utilisée en traitement d’images numériques et traitement des signaux en général car il permet sous certaines conditions de réduire le bruit dans le signal.

Le principe du filtre est très simple ! Il consiste à trié un morceau de N échantillons du signal (par ordre croissant ou décroissant), puis sélectionner la valeur médiane du tableau, c.à.d. la valeur de l’indice N/2 ! Alors la valeur médiane est égale à TabSort[N/2].

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - filtre médian 1

Résultats des simulations avec Matlab

Bruit filtré pour N varié de 4 à 40 avec un pas de 4 

 

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - filtre médian 2

Bruit filtré pour N=40 & N=4 

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - filtre médian 3

On constate que le filtre médian permet d’obtenir des bons résultats. On voit clairement que la qualité du signal filtré est dégradée par rapport au filtre moyenneur. La figure ci-dessous illustre la comparaison entre les EQM des deux filtres.

Projet électronique Traitement du signal avec Arduino # Lissage & Seuillage d’un signal - filtre médian EQM

Programme Matlab

% Paramètres du signal
F0=10;
T0=1/F0;
Ns=200;
Fs=F0*Ns;
Ts=1/Fs;

% Génération du signal
t= 0:Ts:2*T0;
s_t= sin(2*pi*F0*t);

% Géneration du bruit
Vare = 1e-2;
Mu=0;
b_t = Mu + sqrt(Vare)*randn(1,length(s_t));

% Génération signal + bruit
s_b_t = s_t + b_t;

% Paramètres du filtre Médian
N_filtre = 4:4:40 ;
S_filre = ones(length(N_filtre),length(s_t));
MSE2=0*N_filtre;


for k=1:length(N_filtre)
    S_filre(k,:) = s_t;
    for i=N_filtre(k) : length(s_t)
        MedTab= sort(s_b_t(i-N_filtre(k)+1:i));
        S_filre(k,i) =MedTab(round(N_filtre(k)/2.0));
    end

    % Calcul de l'erreur quadratique moyenne
    N_k= N_filtre(end);
    D = abs( s_b_t(1:end-N_k+1) - S_filre(k,N_k:end)).^2;
    MSE2(k) = sum(D(:))/length(s_t);

end

% Affichage
figure(1);
grid on ; hold on ;

plot(t,s_t,'r-o');
plot(t,s_b_t,'b');
plot(t,S_filre,'g');
legend('Signal','Signal bruité', 'Signal bruité filtré');

xlabel('t(s)');
ylabel('s(t)');
figure(2);
grid on ; hold on ;
plot(N_filtre,MSE2,'g');
legend('EQM en fonction de N');
xlabel('N');
ylabel('EQM');

************

Un petit commentaire de vous, un Grand encouragement pour nous 🙂

Click to rate this post!
[Total: 2 Average: 4]

1 commentaire

Projet électronique : Traitement du signal avec Arduino # Lissage & Seuillage d’un signal 2/3 - FPGA | Arduino | Matlab | Cours · 2018-09-09 à 6:58

[…] Etude et simulation numérique du filtre Moyenneur avec Matlab [1/3] […]

Laisser un commentaire

Avatar placeholder

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Anti-Robot *

We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.
Cookies settings
Accept
Decline
Privacy & Cookie policy
Privacy & Cookies policy
Cookie name Active

Privacy Policy

What information do we collect?

We collect information from you when you register on our site or place an order. When ordering or registering on our site, as appropriate, you may be asked to enter your: name, e-mail address or mailing address.

What do we use your information for?

Any of the information we collect from you may be used in one of the following ways: To personalize your experience (your information helps us to better respond to your individual needs) To improve our website (we continually strive to improve our website offerings based on the information and feedback we receive from you) To improve customer service (your information helps us to more effectively respond to your customer service requests and support needs) To process transactions Your information, whether public or private, will not be sold, exchanged, transferred, or given to any other company for any reason whatsoever, without your consent, other than for the express purpose of delivering the purchased product or service requested. To administer a contest, promotion, survey or other site feature To send periodic emails The email address you provide for order processing, will only be used to send you information and updates pertaining to your order.

How do we protect your information?

We implement a variety of security measures to maintain the safety of your personal information when you place an order or enter, submit, or access your personal information. We offer the use of a secure server. All supplied sensitive/credit information is transmitted via Secure Socket Layer (SSL) technology and then encrypted into our Payment gateway providers database only to be accessible by those authorized with special access rights to such systems, and are required to?keep the information confidential. After a transaction, your private information (credit cards, social security numbers, financials, etc.) will not be kept on file for more than 60 days.

Do we use cookies?

Yes (Cookies are small files that a site or its service provider transfers to your computers hard drive through your Web browser (if you allow) that enables the sites or service providers systems to recognize your browser and capture and remember certain information We use cookies to help us remember and process the items in your shopping cart, understand and save your preferences for future visits, keep track of advertisements and compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future. We may contract with third-party service providers to assist us in better understanding our site visitors. These service providers are not permitted to use the information collected on our behalf except to help us conduct and improve our business. If you prefer, you can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies via your browser settings. Like most websites, if you turn your cookies off, some of our services may not function properly. However, you can still place orders by contacting customer service. Google Analytics We use Google Analytics on our sites for anonymous reporting of site usage and for advertising on the site. If you would like to opt-out of Google Analytics monitoring your behaviour on our sites please use this link (https://tools.google.com/dlpage/gaoptout/)

Do we disclose any information to outside parties?

We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our website, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.

Registration

The minimum information we need to register you is your name, email address and a password. We will ask you more questions for different services, including sales promotions. Unless we say otherwise, you have to answer all the registration questions. We may also ask some other, voluntary questions during registration for certain services (for example, professional networks) so we can gain a clearer understanding of who you are. This also allows us to personalise services for you. To assist us in our marketing, in addition to the data that you provide to us if you register, we may also obtain data from trusted third parties to help us understand what you might be interested in. This ‘profiling’ information is produced from a variety of sources, including publicly available data (such as the electoral roll) or from sources such as surveys and polls where you have given your permission for your data to be shared. You can choose not to have such data shared with the Guardian from these sources by logging into your account and changing the settings in the privacy section. After you have registered, and with your permission, we may send you emails we think may interest you. Newsletters may be personalised based on what you have been reading on theguardian.com. At any time you can decide not to receive these emails and will be able to ‘unsubscribe’. Logging in using social networking credentials If you log-in to our sites using a Facebook log-in, you are granting permission to Facebook to share your user details with us. This will include your name, email address, date of birth and location which will then be used to form a Guardian identity. You can also use your picture from Facebook as part of your profile. This will also allow us and Facebook to share your, networks, user ID and any other information you choose to share according to your Facebook account settings. If you remove the Guardian app from your Facebook settings, we will no longer have access to this information. If you log-in to our sites using a Google log-in, you grant permission to Google to share your user details with us. This will include your name, email address, date of birth, sex and location which we will then use to form a Guardian identity. You may use your picture from Google as part of your profile. This also allows us to share your networks, user ID and any other information you choose to share according to your Google account settings. If you remove the Guardian from your Google settings, we will no longer have access to this information. If you log-in to our sites using a twitter log-in, we receive your avatar (the small picture that appears next to your tweets) and twitter username.

Children’s Online Privacy Protection Act Compliance

We are in compliance with the requirements of COPPA (Childrens Online Privacy Protection Act), we do not collect any information from anyone under 13 years of age. Our website, products and services are all directed to people who are at least 13 years old or older.

Updating your personal information

We offer a ‘My details’ page (also known as Dashboard), where you can update your personal information at any time, and change your marketing preferences. You can get to this page from most pages on the site – simply click on the ‘My details’ link at the top of the screen when you are signed in.

Online Privacy Policy Only

This online privacy policy applies only to information collected through our website and not to information collected offline.

Your Consent

By using our site, you consent to our privacy policy.

Changes to our Privacy Policy

If we decide to change our privacy policy, we will post those changes on this page.
Save settings
Cookies settings

You have successfully subscribed to the newsletter

There was an error while trying to send your request. Please try again.

FPGA | Arduino | Matlab | Cours will use the information you provide on this form to be in touch with you and to provide updates and marketing.