<div dir="ltr"><div><div><div>Hi,<br></div>I try to bending two dicom images via itk reader and visualization by VTK as you know for blending <br></div>in vtk  use this such as line code follow bellow :<br><br>  vtkSmartPointer<vtkImageMapToColors> firstColorMapper = <br>      vtkSmartPointer<vtkImageMapToColors>::New();<br><b> firstColorMapper->SetInputConnection( imgReader->GetOutputPort() );  // vtk reader <br>    firstColorMapper->SetInputData( image );  // itk reader </b><br> firstColorMapper->SetLookupTable( imgFirstColorMap );<br><br>  vtkSmartPointer<vtkImageBlend> imgBlender = <br>      vtkSmartPointer<vtkImageBlend>::New();<br>  imgBlender->SetOpacity( 0, 0.5 );<br>  imgBlender->SetOpacity( 1, 1.0 );<br>  imgBlender->AddInputConnection( firstColorMapper->GetOutputPort() );<br>  imgBlender->AddInputConnection( secondColorMapper->GetOutputPort() );<br><br></div>But this pipeline for vtk reader (// vtk reader) via <b>SetInputConnection is correct <br></b><div>But for itk reader no effect Opacity and ... <br></div><div><b>in totally I want to Blend two dicom images via itk reader</b> can you give me a guide line <br></div><div>Thanks<br></div></div>