to obtain uniform and zero average background intensity values
2 次查看(过去 30 天)
显示 更早的评论
which process is to be performed to obtain uniform and zero average background intensity values for an image
0 个评论
回答(1 个)
Image Analyst
2014-6-28
Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.
2 个评论
Image Analyst
2014-6-28
background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!