to obtain uniform and zero average background intensity values
2 views (last 30 days)
Show older comments
which process is to be performed to obtain uniform and zero average background intensity values for an image
0 Comments
Answers (1)
Image Analyst
on 28 Jun 2014
Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.
2 Comments
Image Analyst
on 28 Jun 2014
background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!