Skip to content
Snippets Groups Projects
Commit 376eea38 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

Correction d'un test dans le BeforeGeneratedata (testait l'entree 5 qui n'existe pas).

parent 6b25b3ae
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ QuaternaryFunctorImageFilter<TInputImage1,TInputImage2,TInputImage3,TInputImage4
Input3ImagePointer inputPtr3
= dynamic_cast<const TInputImage3*>((itk::ProcessObject::GetInput(2)));
Input4ImagePointer inputPtr4
= dynamic_cast<const TInputImage4*>((itk::ProcessObject::GetInput(4)));
= dynamic_cast<const TInputImage4*>((itk::ProcessObject::GetInput(3)));
if (inputPtr1.IsNull() || inputPtr2.IsNull() || inputPtr3.IsNull() ||inputPtr4.IsNull())
{
itkExceptionMacro(<< "At least one input is missing."
......
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