How to perform Distribution type detection using histogram automatically?
1 view (last 30 days)
Show older comments
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153302/image.jpeg)
<<
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153303/image.jpeg)
>>
Hi everyone,
I have histogram which either contain impulse or gaussian distribution as shown in the image. Is there any way so that we can automatically detect distribution using histogram? I need automatic way.
0 Comments
Answers (1)
Image Analyst
on 27 Nov 2013
Looks like both images you posted have both pulses and non-pulse data. What sort of classification would you like for each? To detect pulses you can run the histogram through a median filter and subtract it from the original. Then you can threshold it to find pulses taller than a certain height from their neighbors:
diffSignal = histCounts - medfilt1(histCounts);
pulseLocations = diffSignal > 100; % Or whatever number you want.
0 Comments
See Also
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!