Making some intensity values of image to zero
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hi..
How to zero the unwanted pixel intensity values of a image to zero.
0 Commenti
Risposta accettata
Stephen
il 24 Mag 2012
if your image is 'a', try
a(a>threshold)=0;
or try
max(a,threshold);
which makes the values equal to your threshold. maybe it is useful
1 Commento
Walter Roberson
il 24 Mag 2012
The reverse, values less than the threshold are the ones to be set to 0 apparently.
Più risposte (1)
Walter Roberson
il 23 Mag 2012
... Assign 0 to those matrix locations ?
Is there more to this question, such as automatically determining which pixels have "unwanted pixel intensity values" ?
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!