Skip to content
Snippets Groups Projects
Commit c01c91f4 authored by OTB Bot's avatar OTB Bot
Browse files

STYLE

parent bdbf03ef
Branches
Tags
No related merge requests found
......@@ -97,13 +97,13 @@ typename RadiometryHomogenousWithNeighborhoodDataNodeFeatureFunction<TImage, TCo
id2[1] = static_cast<int> (it2.Value()[1]);
// Compute the direction of the current line
itk::Vector<double,2> direction;
itk::Vector<double, 2> direction;
direction[0] = it2.Value()[0] - it1.Value()[0];
direction[1] = it2.Value()[1] - it1.Value()[1];
direction.Normalize();
// Compute the orthogonal direction of the current line
itk::Vector<double,2> orthogonalDirection;
itk::Vector<double, 2> orthogonalDirection;
orthogonalDirection[0] = direction[1];
orthogonalDirection[1] = -direction[0];
......
......@@ -37,7 +37,7 @@ namespace otb
* reference pixel alongside the tested datanode.
*
* The output has three elements:
* - #0: mean spectral angle of a neighborhood around the datanode, weighted to fit in [0,1] interval
* - #0: mean spectral angle of a neighborhood around the datanode, weighted to fit in [0, 1] interval
* - #1: accumulator of the spectral angle alongside the datanode
* - #2: number of visited pixel
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment