How to combine different histograms ?

6 visualizaciones (últimos 30 días)
Jenny
Jenny el 25 de En. de 2013
Comentada: Image Analyst el 8 de En. de 2016
I have several different histograms and I want to take as a result a final histogram. I am looking for a way to combine the different histograms and manage to make it one.
  1 comentario
jasche
jasche el 25 de En. de 2013
how do you want to combine these images ? on what context ?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 25 de En. de 2013
As long as the bins cover the same ranges, you can simply add them. If they don't, then you'll have to align the ranges some how, which might mean taking the histograms again with histc and making sure all the bins are in the same places.
  6 comentarios
sweta arya
sweta arya el 8 de En. de 2016
Editada: Image Analyst el 8 de En. de 2016
i=imread('138.jpg');
i=rgb2gray(i);
size(i)
binranges = 0:255;
[bincounts] = histc(x,binranges);
figure
bar(binranges,bincounts,'histc')
giving error in this code,
Error using barV6 (line 13)
Inputs must be 2-D.
Error in bar (line 47)
h = barV6(cax, args{:});
Hello, what is the code for addition of different histograms
Image Analyst
Image Analyst el 8 de En. de 2016
% Let's compute and display the histogram.
[pixelCount, grayLevels] = imhist(grayImage);
bar(grayLevels, pixelCount); % Plot it as a bar chart.
grid on;
title('Histogram of gray scale version of image', 'FontSize', fontSize, 'Interpreter', 'None');
xlabel('Gray Level', 'FontSize', fontSize);
ylabel('Pixel Count', 'FontSize', fontSize);
xlim([0 grayLevels(end)]); % Scale x axis manually.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Histograms 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