why does my colorbar look like this?

2 visualizaciones (últimos 30 días)
Hadeer tawfik
Hadeer tawfik el 8 de Ag. de 2016
Comentada: Hadeer tawfik el 9 de Ag. de 2016
why does The colorbar looks gray all the time and matlab gives me this warning ?:
Warning: Error updating ColorBar. While setting the 'Limits_I' property of ColorBar: Value must be a 1x2 vector of numeric type in which the second element is larger than the first
> In defaulterrorcallback (line 12) In movegui (line 113) In images.internal.initSize (line 112) In imshow (line 305) In lena (line 13)
and here is the code:
A = imread('process/1.jpg');
B=blkproc(A,[8 8],'dct2')
imshow(log(abs(B)),[]), colormap(jet(64)), colorbar
figure
imshow(B);
B(abs(B)<10)=0;
figure
imshow(B);
C=blkproc(B,[8 8],'idct2');
round(C);
figure
imshow(C,[0 255]);
The image that i used :
the colorbar:

Respuesta aceptada

Image Analyst
Image Analyst el 8 de Ag. de 2016
You are not showing B and C with a colormap. They are on new figures and the colormap does automatically get copied onto completely new and different figures. Not only that, but they are different display ranges so even if you did they wouldn't look right.
Reissue the colormap command after you show the images on the new figures
colormap(jet(256));
  3 comentarios
Image Analyst
Image Analyst el 9 de Ag. de 2016
I'm not really sure what you want. This is what I get:
indexedImage = imread('1.jpg');
blockImage = blkproc(indexedImage, [8, 8], 'dct2')
displayImage = log(abs(blockImage));
cmap = jet(64);
imshow(displayImage, cmap, 'InitialMagnification', 400);
axis on;
movegui('northwest');
colorbar
figure
imshow(blockImage, 'InitialMagnification', 400);
colormap(cmap);
colorbar
axis on;
movegui('northeast');
blockImage(abs(blockImage) < 10)=0;
figure
imshow(blockImage, 'InitialMagnification', 400);
colormap(cmap);
colorbar
axis on;
movegui('southwest');
C = blkproc(blockImage,[8 8],'idct2');
C = round(C);
figure
imshow(C, [0 255], 'InitialMagnification', 400);
colormap(cmap);
colorbar
axis on;
movegui('southeast');
Hadeer tawfik
Hadeer tawfik el 9 de Ag. de 2016
This is perfect, Thank you so much for your time

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Colormaps en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by