A C library for finding local maxima? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T12:06:28Z http://stackoverflow.com/feeds/question/208978 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208978/a-c-library-for-finding-local-maxima 1 A C library for finding local maxima? andygeers 2008-10-16T15:13:49Z 2008-11-26T18:50:29Z <p>I'm trying to write an audio analysis application, and I need to identify local maxima in a 2D array which represents a spectrogram. I've already got an open source library that can generate the spectrogram using Fast Fourier Transforms, but I was wondering if anybody knew of any good libraries to help me with actually finding the maxima? I'm not quite sure what to search Google for - the best I could think of was "numerical library" but that hasn't got me very far.</p> <p>Preferably in C, but I'm open to other suggestions.</p> http://stackoverflow.com/questions/208978/a-c-library-for-finding-local-maxima/209400#209400 1 Answer by dmckee for A C library for finding local maxima? dmckee 2008-10-16T16:52:46Z 2008-10-16T16:52:46Z <p>Peak finding is a fairly general problem. It has already been discussed once on SO as <A href="http://stackoverflow.com/questions/3260/peak-detection-of-measured-signal" rel="nofollow">Peak detection of measured signal</A>.</p> <p>The answers provided include several viable heuristics. </p> <p>Of course, I prefer <A href="http://stackoverflow.com/questions/3260/peak-detection-of-measured-signal#24259" rel="nofollow">my own answer</A> if you need rigor, but ROOT is written in c++, and is almost certainly too heavy for your application, so you'll need to strip out just the code you want...</p> http://stackoverflow.com/questions/208978/a-c-library-for-finding-local-maxima/211563#211563 1 Answer by andygeers for A C library for finding local maxima? andygeers 2008-10-17T09:40:16Z 2008-10-17T09:40:16Z <p>The GNU Scientific Library features a <a href="http://www.gnu.org/software/gsl/manual/html_node/Multidimensional-Minimization.html" rel="nofollow">multidimensional minimization framework</a> that can be made to work for maximization easily enough. It's designed to only return a single minimum rather than a bunch of different minima, however.</p>