Borrar filtros
Borrar filtros

How to identify the type of the Histogram distribution?

13 visualizaciones (últimos 30 días)
hamed abdulaziz
hamed abdulaziz el 16 de En. de 2014
Comentada: Glisant Plasa el 20 de Nov. de 2022
Hi All,
I have medical images,I've plotted it's histograms,now I need to identify the type of these histograms(e.g. One may be like Gaussian distribution, Normal distribution.etce...),is there a builtin Matlab function for * identify the type of Histogram distribution * or any code does that? my goal: I have two algorithms for image segmentation,so if the distribution was Gaussian type I will use the first algorithms else use the second algorithm,please any could guide me to do this job.thank in advance for time and support

Respuestas (1)

Wayne King
Wayne King el 16 de En. de 2014
You can use kstest() if you have the Statistics Toolbox:
x = 10+randn(1000,1);
test_cdf = makedist('normal','mu',10,'sigma',1);
[h,p] = kstest(x,'cdf',test_cdf);
  7 comentarios
hamed abdulaziz
hamed abdulaziz el 16 de En. de 2014
Please response to me I am waiting...
Glisant Plasa
Glisant Plasa el 20 de Nov. de 2022
hope ur doing well hamed

Iniciar sesión para comentar.

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