diff options
Diffstat (limited to 'simpl/peak_detection.pyx')
-rw-r--r-- | simpl/peak_detection.pyx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/simpl/peak_detection.pyx b/simpl/peak_detection.pyx index cd143bf..66d5a1a 100644 --- a/simpl/peak_detection.pyx +++ b/simpl/peak_detection.pyx @@ -101,6 +101,18 @@ cdef class PeakDetection: return self.frames +cdef class MQPeakDetection(PeakDetection): + def __cinit__(self): + if self.thisptr: + del self.thisptr + self.thisptr = new c_MQPeakDetection() + + def __dealloc__(self): + if self.thisptr: + del self.thisptr + self.thisptr = <c_PeakDetection*>0 + + cdef class SMSPeakDetection(PeakDetection): def __cinit__(self): if self.thisptr: |