to obtain uniform and zero average background intensity values
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
which process is to be performed to obtain uniform and zero average background intensity values for an image
0 comentarios
Respuestas (1)
Image Analyst
el 28 de Jun. de 2014
Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.
2 comentarios
Image Analyst
el 28 de Jun. de 2014
background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!