Properly scale histogram in subplot and error handling
Mostrar comentarios más antiguos
Hey there,
when I am trying to subplot an image and its histogram the histogram is stretched too far in vertical space. I am also getting the following error code:
% Error using imageDisplayValidateParams
% Expected input number 1, I, to be one of these types:
% numeric, logical
% Instead its type was matlab.graphics.chart.primitive.Histogram.
The code I am using is the following and this should be reproduceable with any image I think:
IMG = imread('img.tif');
subplot(1,2,1); imshow(IMG);
subplot(1,2,2); imshow(histogram(IMG));
Does someone know how to fix this error and how to properly resize the histogram?
Thank you in advance!
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Data Distribution Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!