@@ -36,6 +36,7 @@ Starts the calculation, reads from mInputFile and stores the result in mOutputFi
36
36
:param feedback: feedback object that receives update and that is checked for cancelation.
37
37
38
38
:return: 0 in case of success
39
+ <<<<<<< 14f8c4361dc1f4103bed735a5cf46b38dcfa4a03
39
40
<<<<<<< 528302cc8952497513b44423dfca6fcf4857760c
40
41
<<<<<<< d6e747ca57807318c0b3f6be8266f0b43c0f7747
41
42
TODO: return an enum
@@ -45,6 +46,8 @@ TODO: return an enum
45
46
=======
46
47
TODO: return an enum
47
48
>>>>>>> Bindings for 9cell filter
49
+ =======
50
+ >>>>>>> Fix documentation for ninecell filters
48
51
%End
49
52
50
53
double cellSizeX() const;
@@ -64,8 +67,22 @@ TODO: return an enum
64
67
float *x12, float *x22, float *x32,
65
68
float *x13, float *x23, float *x33 ) = 0;
66
69
%Docstring
67
- Calculates output value from nine input values. The input values and the output value can be equal to the
68
- nodata value if not present or outside of the border. Must be implemented by subclasses*
70
+ Calculates output value from nine input values. The input values and the output
71
+ value can be equal to the nodata value if not present or outside of the border.
72
+ Must be implemented by subclasses.
73
+
74
+ First index of the input cell is the row, second index is the column
75
+
76
+ @param x11 surrounding cell top left
77
+ @param x21 surrounding cell central left
78
+ @param x31 surrounding cell bottom left
79
+ @param x12 surrounding cell top central
80
+ @param x22 the central cell for which the value will be calculated
81
+ @param x32 surrounding cell bottom central
82
+ @param x13 surrounding cell top right
83
+ @param x23 surrounding cell central right
84
+ @param x33 surrounding cell bottom right
85
+ @return the calculated cell value for the central cell x22
69
86
%End
70
87
71
88
protected:
0 commit comments