source: flair-src/trunk/demos/Sinus/src/MeanFilter.cpp@ 148

Last change on this file since 148 was 148, checked in by Sanahuja Guillaume, 7 years ago

m

File size: 2.6 KB
Line 
1// created: 2013/06/27
2// filename: MeanFilter.cpp
3//
4// author: Guillaume Sanahuja
5// Copyright Heudiasyc UMR UTC/CNRS 7253
6//
7// version: $Id: $
8//
9// purpose: object computing a mean filter
10//
11//
12/*********************************************************************/
13
14#include "MeanFilter.h"
15#include <cvmatrix.h>
16#include <LayoutPosition.h>
17#include <GroupBox.h>
18#include <SpinBox.h>
19
20using namespace std;
21using namespace flair::core;
22using namespace flair::gui;
23
24namespace flair {
25namespace filter {
26
27MeanFilter::MeanFilter(const IODevice *parent, const LayoutPosition *position,
28 string name)
29 : IODevice(parent, name) {
30 // interface initialisation
31 groupBox = new GroupBox(position, name);
32 numberOfElements = new SpinBox(groupBox->NewRow(), "numberOfElements:", 1,
33 MAX_NUMBER_OF_ELEMENTS,
34 1); // saturated to MAX_NUMBER_OF_ELEMENTS
35
36 // init storage
37 for (int i = 0; i < MAX_NUMBER_OF_ELEMENTS; i++)
38 previousValues[i] = 0;
39
40 // 1*1 output matrix
41 cvmatrix_descriptor *desc = new cvmatrix_descriptor(1, 1);
42 desc->SetElementName(0, 0,
43 "mean filter"); // name will be used for graphs and logs
44 output = new cvmatrix(this, desc, floatType, name);
45 delete desc;
46
47 AddDataToLog(output);
48}
49
50MeanFilter::~MeanFilter() {}
51
52cvmatrix *MeanFilter::GetMatrix() const { return output; }
53
54float MeanFilter::GetValue(void) const { return output->Value(0, 0); }
55
56// UpdateFrom, where we implement the filter
57// this method is automatically called when the parent IODevice calls
58// ProcessUpdate
59// in our case it is the sinus or the 1st orde law pass filter
60//(see in Sinus::Run the call to ProcessUpdate)
61void MeanFilter::UpdateFrom(const io_data *data) {
62
63 float result = 0;
64 // get input argument in a cvmatrix
65 cvmatrix *input = (cvmatrix *)data;
66
67 // simple (and not efficent!) implementation of the filter
68 previousValues[numberOfElements->Value() - 1] = input->Value(0, 0);
69 for (int i = 0; i < numberOfElements->Value(); i++)
70 result += previousValues[i];
71 for (int i = 1; i < numberOfElements->Value(); i++)
72 previousValues[i - 1] = previousValues[i];
73
74 // put the result in output matrix
75 output->SetValue(0, 0, result / numberOfElements->Value());
76 // put corresponding time
77 output->SetDataTime(data->DataTime());
78
79 // ProcessUpdate is very important
80 // we must call it after updating the output matrix
81 // it allows:
82 // -to save value in the logs
83 // -to automatically call the next filter UpdateFrom method
84 ProcessUpdate(output);
85}
86} // end namespace filter
87} // end namespace flair
Note: See TracBrowser for help on using the repository browser.