Files
GnuRadio/gr-jay/lib/peak_detect_impl.h
T
jens 045de0c155 - fixed creating too many peaks in last stage
- added comments
- improved tags

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@459 b431acfa-c32f-4a4a-93f1-934dc6c82436
2019-05-25 05:21:18 +00:00

82 lines
2.0 KiB
C++

/* -*- c++ -*- */
/*
* Copyright 2019 Jay Arrowfield.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_JAY_PEAK_DETECT_IMPL_H
#define INCLUDED_JAY_PEAK_DETECT_IMPL_H
#include <jay/peak_detect.h>
namespace gr {
namespace jay {
class peak_detect_impl : public peak_detect
{
private:
struct Compare
{
float const *m_pData;
Compare(float const *pData)
: m_pData(pData)
{
}
bool operator() (int i,int j)
{
return (m_pData[i] < m_pData[j]);
}
};
float m_alpha_s;
float m_alpha_m;
float *m_pPeakData;
float *m_pX;
float *m_pXs;
float *m_pXm;
float *m_pXd;
int *m_pPeakPos;
float *m_pPeakBox_rel;
float *m_pPeakBox_abs;
uint64_t m_frameCount;
pmt::pmt_t m_tag_id;
const int PB_MIN = 5;
const int PB_MAX = 37;
public:
peak_detect_impl(float alpha_s, float alpha_m, int vlen);
~peak_detect_impl();
// Where all the action really happens
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items);
void fill(float *pDst, int length, float value);
float mean(float *pSrc, int length);
int threshold(float *pDst, float *pSrc, int length, float thresh);
int findPeakPos(int *pDst, float *pSrc, int length);
int cmp(const void *a, const void *b);
};
} // namespace jay
} // namespace gr
#endif /* INCLUDED_JAY_PEAK_DETECT_IMPL_H */