Skip to content
Snippets Groups Projects
Commit 82f36cdf authored by Julien Michel's avatar Julien Michel
Browse files

correction pour binding.

parent 97b6bad0
No related branches found
No related tags found
No related merge requests found
......@@ -415,7 +415,7 @@ StreamingImageFileWriter<TInputImage>
{
itkDebugMacro(<<"Attempting factory creation of ImageIO for file: "
<< m_FileName);
this->SetImageIO( ImageIOFactory::CreateImageIO( m_FileName.c_str(),
this->SetImageIO( itk::ImageIOFactory::CreateImageIO( m_FileName.c_str(),
itk::ImageIOFactory::WriteMode ) );
/* m_ImageIO = ImageIOFactory::CreateImageIO( m_FileName.c_str(),
......@@ -430,7 +430,7 @@ StreamingImageFileWriter<TInputImage>
<< m_FileName );
itkDebugMacro(<<"Attempting creation of ImageIO with a factory for file:"
<< m_FileName);
m_ImageIO = ImageIOFactory::CreateImageIO( m_FileName.c_str(),
m_ImageIO = itk::ImageIOFactory::CreateImageIO( m_FileName.c_str(),
itk::ImageIOFactory::WriteMode );
m_FactorySpecifiedImageIO = true;
}
......
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