What is meant by histogram thresholding? Is there any direct matlab command to implement it?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sivakumaran Chandrasekaran
el 12 de Jun. de 2014
Comentada: Image Analyst
el 12 de Jun. de 2014
What is meant by histogram thresholding? Is there any direct matlab command to implement it?
0 comentarios
Respuestas (1)
Anand
el 12 de Jun. de 2014
I don't think there is a direct function that implements the balanced histogram thresholding approach (I assume that's what you mean when you say histogram thresholding). However, there are similar methods. You could try using the graythresh function, which is a histogram-based threshold using Otsu's method, but not the same as balanced histogram thresholding.
Here is an example:
% Read an image
im = imread('cameraman.tif');
% Compute the Otsu level
level = graythresh(im);
% Threshold using computed level
BW = im2bw(im,level);
1 comentario
Image Analyst
el 12 de Jun. de 2014
I've never heard of balanced thresholding. What is it? I just do this
binaryImage = grayImage < someThreshldValue; % or can use >
as I'm sure Sivakumaran knows already since he has said before that he's a MATLAB instructor and has been using image processing for quite some time now.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!