to obtain uniform and zero average background intensity values
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
which process is to be performed to obtain uniform and zero average background intensity values for an image
0 Commenti
Risposte (1)
Image Analyst
il 28 Giu 2014
Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.
2 Commenti
Image Analyst
il 28 Giu 2014
background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!