Skip to content
Snippets Groups Projects
Commit ee639d75 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

COMP: correct error compilation

parent 3d61968e
No related branches found
No related tags found
No related merge requests found
......@@ -151,8 +151,8 @@ int main(int argc, char* argv[])
orthoRectifFilter->SetOutputSpacing(spacing);
ImageType::SpacingType gridSpacing;
gridSpacing[0] = atof(2 * argv[9]);
gridSpacing[1] = atof(2 * argv[10]);
gridSpacing[0] = 2.*atof(argv[9]);
gridSpacing[1] = 2.*-atof(argv[10]);
orthoRectifFilter->SetDeformationFieldSpacing(gridSpacing);
ImageType::PointType origin;
......
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