How to create a Gaussian Curve over a Bar Plot created by Histogram?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tawsif Mostafiz
el 22 de Mayo de 2021
Respondida: Sulaymon Eshkabilov
el 22 de Mayo de 2021
Hi, I am trying to fit a Gausian Curve over a histogram plot derived from an image. The code for it is as follows:
subplot(2,2,3)
imhist(maskedRgbImage), title('Histogram of Tumor');
xlim([-10 200])
ylim([0 100])
And the output looks like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/626598/image.png)
I want to fit a gaussian curve over it,. Something like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/626603/image.jpeg)
I found some code related to this. But the problem of implementing them is that these code work with random values like:
data=randn(1,10000)*5;
But I cannot be able to input the histogram data inside the code. How can I do it? My ultimate objective is to find Mean, Standard Deviation and Variance.
0 comentarios
Respuesta aceptada
Sulaymon Eshkabilov
el 22 de Mayo de 2021
Hi,
(1) You need to read the data of your image being processed, imread()
(2) Convert data into single or double precision format if necessary. The Variance calculation requires it
(3) Data Processing: imhist, histfit, svd, etc.
See this code of mine for your exercise:
DATA = imread('IMAGE.jpeg');
imhist(DATA(:,:,1))
RED = DATA(:,:,1);
GREEN = DATA(:,:,2);
BLUE = DATA(:,:,3);
% Image histogram and distribution fit
subplot(311)
RD=imhist(RED, 100);
histfit(RD, 100, 'kernel'); title('Red color distribution & its fit')
subplot(312)
GD=imhist(GREEN, 100);
histfit(RD, 100, 'kernel'); title('Green color distribution & its fit')
subplot(313)
BD=imhist(BLUE, 100);
histfit(RD, 100, 'kernel'); title('Blue color distribution & its fit')
% STD calcs: std2()
STD_R=std2(RED);
STD_G=std2(GREEN);
STD_B=std2(BLUE);
% MEAN calcs: mean2()
MEAN_R = mean2(RED);
MEAN_G = mean2(GREEN);
MEAN_B = mean2(BLUE);
% VARIANCE calcs: var(var(double(RED)))
...
Good luck
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Scatter Plots 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!