Borrar filtros
Borrar filtros

Hello I need a code that gives me the local minimum of a histogram please ?

2 visualizaciones (últimos 30 días)
I created 12 histograms for 12 frames and I need to get the local minimums of these histograms.

Respuestas (1)

Mathieu NOE
Mathieu NOE el 21 de Abr. de 2022
hello
maybe this
the local minima are the red diamonds
x = randn(1000,1);
h = histogram(x);
Values = h.Values;
BinCounts = h.BinCounts;
BinEdges = h.BinEdges;
BinWidth = h.BinWidth;
centers = BinEdges(2:end) - BinWidth/2;
% find min values
ind = islocalmin(Values);
hold on
plot(centers(ind),Values(ind),'dr');
hold off
  12 comentarios
Image Analyst
Image Analyst el 9 de Mayo de 2022
So the "why you need it" is a closely held secret? You basically said you need it because you need it. Let me challenge you and say that you don't need it to do whatever mysterious thing you're attempting to do. Prove me wrong.
Anyway you can use imregionalmin and imregionalmax to find min and max locations in a signal.
AbdelRahman Mostafa
AbdelRahman Mostafa el 10 de Mayo de 2022
I am a masters student and my thesis is about image processing. I just needed to know how to get the local minimums to be able to continue my thesis. Now you know why I need it. If you can help good if you cant then dont talk to me that way. Thank you

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