take out small signals represented in binary vector
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi everyone,
I have the following problem: I have a huge binary columnvector which is representing datapoints in a signal. Every datapoint is one Milisecond and the "ones" in the vector represent signal events above a certain threshold. Now I want to exclude events which are shorter than 500ms and assign them to zero.
I thought of doing this with a for-loop including an if-clause which checks if there are 500 or more "ones" in a row and if not put them to "zero", but obviously I will run into problems at the end of the vector and also it seems to be incredibly inconvenient to solve the problem like this!
Anyone has an easy idea how to solve this? Thanks very much in advance!
0 commentaires
Réponses (1)
Image Analyst
le 20 Nov 2013
Modifié(e) : Image Analyst
le 20 Nov 2013
If you have the Image Processing Toolbox, you can use bwareaopen() to remove regions smaller than the size you specify.
cleanedVector = bwareaopen(yourVector, 500);
0 commentaires
Voir également
Catégories
En savoir plus sur Surrogate Optimization dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!