Skip to content
Snippets Groups Projects
Commit 3e81362b authored by Julien Michel's avatar Julien Michel
Browse files

COMP: Fixing multiple variable set but not used warnings

parent 2b03e248
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@ StereorectificationDeformationFieldSource<TInputImage, TOutputImage>
// 3 - Next, we will compute epipolar lines direction in both
// images
double a1,b1,a2,b2;
double a1,b1,a2;
// First, for image 1
......@@ -454,7 +454,6 @@ StereorectificationDeformationFieldSource<TInputImage, TOutputImage>
endLine2 = m_LeftToRightTransform->TransformPoint(epiPoint1);
a2 = (endLine2[1] - startLine2[1]) / (endLine2[0] - startLine2[0]);
b2 = startLine2[1] - a2 * startLine2[0];
// 4 - Determine position of next points
......
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