Locating point where slope becomes most steep
    19 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Hello, I am trying to extract data from this graph, generated from the image to the right of it:
As you can tell from the graph, the slope starts to decrease most rapidly at about 1000 pixels.
My code will ask for a restriction zone, so it is not a problem to only investigate between say 800 pixels and 1100 pixels. However, I am not sure how to locate the point where the slope begins to decrease most rapidly.
Thank you for your help!
2 Commenti
  Ryan
      
 il 19 Giu 2012
				Do you only have the graph or do you have the vectors that plotted the graph? If you have the vectors that created the graph, just take the derivative and locate the absolute maximum value (to account for decreasing being negative slope).
  Image Analyst
      
      
 il 20 Giu 2012
				Do you really need the x location of the steep part? Or can you just threshold the y values to find it? For example, maybe you can get the x like this: x= find(signal > 0.3, 1, 'last') so you find the x location where the signal exceed some threshold, like 0.3. 
What if you had a steep part that was in the range y = [0.2 to 0.5] but you had a steeper one somewhere down in the range of y= [0 to 0.2]? Are you sure you'd want the lower amplitude signal just because it's steeper?
Risposte (2)
  the cyclist
      
      
 il 19 Giu 2012
        As Ryan comments, you "just take the derivative", but that is a gross simplification. Taking the numerical derivative of noisy discrete data is a tricky business.
I would suggest taking a look at the following FEX submission, and carefully reading the description:
0 Commenti
  Ayodele Oladeji
 il 12 Gen 2015
        
      Modificato: Ayodele Oladeji
 il 12 Gen 2015
  
      Perform the following steps
- Use a low pass filter to smoothen the data points (smooth function could be helpful)
- Find the gradient of all points on the data and calculate the slope= (( diff(y_data)/diff(x_data))
- Depending on what you define as "most rapidly", you can apply the function find to your slope data and track index as follows: find(slope >= steep_threshold).
I hope that was helpful
1 Commento
  GOPEE Ajit Kumar
 il 25 Feb 2017
				ok but how do you calculate the gradient of all points on the data if I have curve in a binary image and that I do not know the equation of the curve? Thanks
Vedere anche
Categorie
				Scopri di più su Graph and Network Algorithms in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





