Effacer les filtres
Effacer les filtres

could you help me to find hills on x-axis ??

2 vues (au cours des 30 derniers jours)
Anas A.Salam
Anas A.Salam le 28 Avr 2013
hello i have a question about figure below
as we see in the figure there is 7 hills in the center of figure so question is ho could i find x-axis value to each hill ?? thanks

Réponse acceptée

Image Analyst
Image Analyst le 28 Avr 2013
Do you have the Signal Processing Toolbox? If so, you can use findpeaks().
thePeaks = findpeaks(yourData, 'Threshold', 10);
Do you have the Image Processing Toolbox? If so you can threshold at 35, then use regionprops to find the centroid of the peaks.
thePeaks = regionprops(yourData>35, 'Centroid');
  2 commentaires
Anas A.Salam
Anas A.Salam le 28 Avr 2013
thank you so much i will try to use them and give you the results :)
Anas A.Salam
Anas A.Salam le 29 Avr 2013
thank you again i found the result as i want ... thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by