Skip to content
Snippets Groups Projects
Commit 7e601d25 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Fixed non-bracketing error near start of sensor line.

parent 3807f1bd
No related branches found
No related tags found
No related merge requests found
...@@ -569,7 +569,7 @@ public class Rugged { ...@@ -569,7 +569,7 @@ public class Rugged {
// find the pixel along the line // find the pixel along the line
final double meanPixel = solver.solve(INVERSE_LOCALIZATION_MAX_EVAL, final double meanPixel = solver.solve(INVERSE_LOCALIZATION_MAX_EVAL,
new SensorPixelCrossing(sensor, targetDirection), new SensorPixelCrossing(sensor, targetDirection),
0, sensor.getNbPixels()); -1.0, sensor.getNbPixels());
// TODO: fix pixel offset with respect to mean sensor plane // TODO: fix pixel offset with respect to mean sensor plane
final double fixedLine = meanLine; final double fixedLine = meanLine;
......
...@@ -484,7 +484,7 @@ public class RuggedTest { ...@@ -484,7 +484,7 @@ public class RuggedTest {
double referenceLine = 100.00; double referenceLine = 100.00;
GeodeticPoint[] gp = rugged.directLocalization("line", referenceLine); GeodeticPoint[] gp = rugged.directLocalization("line", referenceLine);
for (int i = 1; i < gp.length; ++i) { for (int i = 0; i < gp.length; ++i) {
SensorPixel sp = rugged.inverseLocalization("line", gp[i], 0, dimension); SensorPixel sp = rugged.inverseLocalization("line", gp[i], 0, dimension);
Assert.assertEquals(referenceLine, sp.getLineNumber(), 3.0e-9); Assert.assertEquals(referenceLine, sp.getLineNumber(), 3.0e-9);
Assert.assertEquals(i, sp.getPixelNumber(), 8.0e-5); Assert.assertEquals(i, sp.getPixelNumber(), 8.0e-5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment