decreasing no of gray levels
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
k.v.swamy
el 4 de Feb. de 2012
Editada: Image Analyst
el 30 de Sept. de 2013
hi all, can any one tell me how to decrease the no of gray levels in a image.i have to decrease in the powers of 2. regards k.v.swamy.
0 comentarios
Respuesta aceptada
Image Analyst
el 5 de Feb. de 2012
X is the gray level in Walter's answer. Did you try to do it, like this:???
X = 0:255;
P = 3;
quantizedGrayLevel = X - mod(X,2^P)
fprintf('Original Gray Level, New Quantized Gray Level\n');
for gl = 1:length(X)
fprintf('%10d becomes %10d\n', X(gl), quantizedGrayLevel(gl));
end
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!