Changeset bd24069 for src/onsetdetection.h
- Timestamp:
- Jul 23, 2006, 10:56:27 AM (18 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- b740b96
- Parents:
- 4e9101e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onsetdetection.h
r4e9101e rbd24069 28 28 These functions were first adapted from Juan Pablo Bello's code, and now 29 29 include further improvements and modifications made within aubio. 30 31 \todo Write a generic driver similar to pitchdetection.c, including the phase32 vocoder, the silence detection, and the peak picking.33 30 34 31 */ … … 59 56 This function calculates the local energy of the input spectral frame. 60 57 61 \param o onset detection object as returned by new_aubio_ pitchfcomb58 \param o onset detection object as returned by new_aubio_onsetdetection() 62 59 \param fftgrain input spectral frame 63 60 \param onset output onset detection function … … 73 70 Musical Signal. PhD dissertation, University of Bristol, UK, 1996. 74 71 75 \param o onset detection object as returned by new_aubio_ pitchfcomb72 \param o onset detection object as returned by new_aubio_onsetdetection() 76 73 \param fftgrain input spectral frame 77 74 \param onset output onset detection function … … 83 80 Christopher Duxbury, Mike E. Davies, and Mark B. Sandler. Complex domain 84 81 onset detection for musical signals. In Proceedings of the Digital Audio 85 Effects Conference, DAFx-03, pages 90 93, London, UK, 2003.82 Effects Conference, DAFx-03, pages 90-93, London, UK, 2003. 86 83 87 \param o onset detection object as returned by new_aubio_ pitchfcomb84 \param o onset detection object as returned by new_aubio_onsetdetection() 88 85 \param fftgrain input spectral frame 89 86 \param onset output onset detection function … … 98 95 Hong-Kong, 2003. 99 96 100 \param o onset detection object as returned by new_aubio_ pitchfcomb97 \param o onset detection object as returned by new_aubio_onsetdetection() 101 98 \param fftgrain input spectral frame 102 99 \param onset output onset detection function … … 110 107 (ICME 2001), pages 881884, Tokyo, Japan, August 2001. 111 108 112 \param o onset detection object as returned by new_aubio_ pitchfcomb109 \param o onset detection object as returned by new_aubio_onsetdetection() 113 110 \param fftgrain input spectral frame 114 111 \param onset output onset detection function … … 122 119 (ICMC), Singapore, 2003. 123 120 124 \param o onset detection object as returned by new_aubio_ pitchfcomb121 \param o onset detection object as returned by new_aubio_onsetdetection() 125 122 \param fftgrain input spectral frame 126 123 \param onset output onset detection function … … 134 131 music, Queen Mary University of London, London, UK, 2006. 135 132 136 \param o onset detection object as returned by new_aubio_ pitchfcomb133 \param o onset detection object as returned by new_aubio_onsetdetection() 137 134 \param fftgrain input spectral frame 138 135 \param onset output onset detection function … … 144 141 Generic function to compute onset detection. 145 142 146 \param o onset detection object as returned by new_aubio_onsetdetection 143 \param o onset detection object as returned by new_aubio_onsetdetection() 147 144 \param fftgrain input signal spectrum as computed by aubio_pvoc_do 148 145 \param onset output vector (one sample long, to send to the peak picking) … … 160 157 /** deletion of an onset detection object 161 158 162 \param o onset detection object as returned by new_aubio_ pitchfcomb159 \param o onset detection object as returned by new_aubio_onsetdetection() 163 160 164 161 */ … … 166 163 /** deletion of an onset detection object (obsolete) 167 164 168 \param o onset detection object as returned by new_aubio_ pitchfcomb165 \param o onset detection object as returned by new_aubio_onsetdetection() 169 166 170 167 */
Note: See TracChangeset
for help on using the changeset viewer.