forked from kalxas/mseg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsegfastedge.h
executable file
·49 lines (43 loc) · 2.76 KB
/
msegfastedge.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
44
45
46
47
48
49
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* msegstd.h: MSEG Fast mode class with edge compensation *
* Version: 0.9.x *
* Last revised: 31/03/2010 *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* MSEG algorithm by Angelos Tzotsos ([email protected]) *
* Remote Sensing Lab NTUA - GCpp March 2010 *
* *
* Copyright (C) Angelos Tzotsos <[email protected]> *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 program. If not, see <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef MSEGFASTEDGE_H
#define MSEGFASTEDGE_H
#include <cmath>
#include "msegcore.h"
class FastEdge_Mode{
public:
int firstpass(Level& pass1, ERS_Image& Img, ERS_Image& ImgEdge, MSEG_Init& mseg, float level_ID, MSEG_Param& Param);
int firstpass(Level& pass1, ERS_Image& Img, ERS_Image& ImgEdge, MSEG_Init& mseg, float level_ID, MSEG_Param& Param, Level& super_level);
int secondpass(Level& pass2, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass);
int secondpass(Level& pass2, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass, Level& super_level);
int nthpass(Level& passn, ERS_Image& Img, float level_ID, MSEG_Init& mseg, MSEG_Param& Param, Level& sub_level);
int nthpass(Level& passn, ERS_Image& Img, float level_ID, MSEG_Init& mseg, MSEG_Param& Param, Level& sub_level, Level& super_level);
int nthpass(Level& passn, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass);
int nthpass(Level& passn, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass, Level& super_level);
int lastpass(Level& passn, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass);
int lastpass(Level& passn, ERS_Image& Img, MSEG_Init& mseg, Level& previous_pass, Level& super_level);
};
#endif /* MSEGFASTEDGE_H */