<div dir="ltr"><div><div><div><div>Hi,<br><br></div>I have implemented a filter with two outputs of different type inspired by the example []. This filter is used inside a loop, so I learned from an earlier post in this list that I should call the method DisconnectPileline() on the image pointers I use hold the intermediate results before using them as inputs of my pipeline on the next iteration. Something like this<br>
<br>.....<br></div><div>TImage1::Pointer im1;<br></div><div>TImage2::Pointer im2;<br></div><div><br>... initialization code...<br><div>filter->SetInput1( im1 );<br></div><div>filter->SetInput2( im2 );<br></div><br></div>
<div>for( int i = 0; i < nIter; i++) {<br></div>    filter->Update();<br></div><div>    TImage1::Pointer tmp1 = filter->GetOutput1();<br></div><div>    TImage2::Pointer tmp2 = filter->GetOutput2();<br><br><br>
</div><div><div><br></div><div><br></div>The problem is that it only works on the principal output, when I call the method on the second output, I get the following execution error,<br><br>---------------------------------------------------------------------------------------------------------------------------<br>
itk::ExceptionObject (0000000000ACF300)<br>Location: "unknown"<br>File: d:\itk4.5\insighttoolkit-4.5.0\modules\core\common\include\itkImage.hxx<br>Line: 138<br>Description: itk::ERROR: Image(0000000002FDBDF0): itk::Image::Graft() cannot cast class itk::DataObject const * __ptr64 to class itk::Image<class itk::Vector<fl<br>
oat,3>,3> const * __ptr64<br>---------------------------------------------------------------------------------------------------------------------------<br></div><br></div>and when I use PipelineDisconnect() only on the principal output, my pipeline is Updated twice as it is still connected, and the program does not crash but the results are numerically incorrect. Any ideas to solve this issue? I know I should submit an example code that reproduces the error, I will try to extract it and post it later, but for the moment I would be happy to get some ideas about how to debug this issu.<br>
<br>Thank you very much,<br><div><div><div><br clear="all"><div><div><div><div><div dir="ltr">Nicolás Gallego-Ortiz<br>Université catholique de Louvain, Belgium<br></div></div>
</div></div></div></div></div></div></div>