Switch to full style
C++ code examples
Post a reply

Save Image to a file in ITK

Sat Jul 04, 2015 2:26 pm

Save Image to a file in ITK
cpp code
typedef float       OutputPixelType;
typedef itk::Image< OutputPixelType, 2 > OutputImageType;
void ClassName::saveImage(OutputImageType::Pointer image, const char * outputFilename)
{

// Access to a Size of Image Region
typedef itk::ImageFileWriter< OutputImageType > WriterType;
WriterType::Pointer writer = WriterType::New();
writer->SetFileName(outputFilename);
writer->SetInput(image);
try
{
writer->Update();
}
catch( itk::ExceptionObject & err )
{
std::cerr << "ExceptionObject caught !" << std::endl;
std::cerr << err << std::endl;

}
}




Post a reply
  Related Posts  to : Save Image to a file in ITK
 error closing file matlab save     -  
 How to save in a file the ASCII Characters? Like "☺"     -  
 Image Insert in Excel File Using POI     -  
 Read an image bitmap (.bmp) file and draw it as texture     -  
 Change Image File Size (Height And Width) While Uploading     -  
 How to save a search fields...in Struts2.0     -  
 How to download and save .mov files from this website ?     -  
 Chat client and server, save messages and delete     -  
 Video For Learning how to deal with (Open, Save dialogs) , f     -  
 Encrypt/Decrypt a file from source file to target file.     -  

Topic Tags

C++ ITK