X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvDeformableRegistration.cxx;h=5d429a8b71f1c15d9486320f47ba53612be0fdc8;hb=f919b21c1ae12c0b81b653dcd00db5eaaad5a343;hp=a4d36f1e63876a2cb6dc45daff869d906a222542;hpb=1e034c70105f0926939acaaa27ddb46e904ae8bf;p=clitk.git diff --git a/vv/vvDeformableRegistration.cxx b/vv/vvDeformableRegistration.cxx index a4d36f1..5d429a8 100644 --- a/vv/vvDeformableRegistration.cxx +++ b/vv/vvDeformableRegistration.cxx @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #include #include #include @@ -180,10 +180,10 @@ void vvDeformableRegistration::run() std::system(("rm " + output_filename).c_str()); return; } - vvImageReader reader; - reader.SetInputFilename(output_filename); - reader.Update(VECTORFIELD); + vvImageReader::Pointer reader = vvImageReader::New(); + reader->SetInputFilename(output_filename); + reader->Update(vvImageReader::VECTORFIELD); finish=clock(); DD((finish - start)/static_cast(CLOCKS_PER_SEC)); - mOutput=reader.GetOutput(); + mOutput = reader->GetOutput(); }