-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMedianFilter.h
43 lines (40 loc) · 1.24 KB
/
MedianFilter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//---------------------------------------------------------------------------
#ifndef MedianFilterH
#define MedianFilterH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <cspin.h>
#include <ComCtrls.hpp>
#include "GPXData.h"
//---------------------------------------------------------------------------
class TMedianForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TCSpinEdit *Aperture;
TLabel *Label1;
TCheckBox *UseRank;
TEdit *RankCoeff;
TButton *Go;
TButton *Exit;
TProgressBar *ProgressBar;
TGroupBox *GroupBox1;
TCheckBox *Altitude;
TCheckBox *Speed;
TCheckBox *Coordinates;
void __fastcall UseRankClick(TObject *Sender);
void __fastcall GoClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public:
PGPXTrack m_pCurrentTrack; // User declarations
__fastcall TMedianForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TMedianForm *MedianForm;
//---------------------------------------------------------------------------
#endif