1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | // created: 2013/12/10
|
---|
6 | // filename: ButterworthLowPass.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: Class defining a Butterworth low pass filter
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #include "ButterworthLowPass.h"
|
---|
19 | #include "ButterworthLowPass_impl.h"
|
---|
20 | #include <cvmatrix.h>
|
---|
21 | #include <Layout.h>
|
---|
22 | #include <LayoutPosition.h>
|
---|
23 |
|
---|
24 | using std::string;
|
---|
25 | using namespace flair::core;
|
---|
26 | using namespace flair::gui;
|
---|
27 |
|
---|
28 | namespace flair {
|
---|
29 | namespace filter {
|
---|
30 |
|
---|
31 | ButterworthLowPass::ButterworthLowPass(const IODevice *parent,
|
---|
32 | const LayoutPosition *position,
|
---|
33 | string name, int order)
|
---|
34 | : IODevice(parent, name) {
|
---|
35 | pimpl_ = new ButterworthLowPass_impl(this, position, name, order);
|
---|
36 | AddDataToLog(pimpl_->output);
|
---|
37 | }
|
---|
38 |
|
---|
39 | ButterworthLowPass::ButterworthLowPass(const gui::LayoutPosition *position,
|
---|
40 | string name, int order)
|
---|
41 | : IODevice(position->getLayout(), name) {
|
---|
42 | pimpl_ = new ButterworthLowPass_impl(this, position, name, order);
|
---|
43 | AddDataToLog(pimpl_->output);
|
---|
44 | }
|
---|
45 |
|
---|
46 | ButterworthLowPass::~ButterworthLowPass() { delete pimpl_; }
|
---|
47 |
|
---|
48 | cvmatrix *ButterworthLowPass::Matrix(void) const { return pimpl_->output; }
|
---|
49 |
|
---|
50 | float ButterworthLowPass::Output(void) const {
|
---|
51 | return pimpl_->output->Value(0, 0);
|
---|
52 | }
|
---|
53 |
|
---|
54 | void ButterworthLowPass::UpdateFrom(const io_data *data) {
|
---|
55 | pimpl_->UpdateFrom(data);
|
---|
56 | ProcessUpdate(pimpl_->output);
|
---|
57 | }
|
---|
58 |
|
---|
59 | } // end namespace filter
|
---|
60 | } // end namespace flair
|
---|