]> Creatis software - bbtk.git/blob - packages/itk/src/bbitkImageWriter.cxx
28dbc82412a75a014c2345f7a35b9f4f900870f0
[bbtk.git] / packages / itk / src / bbitkImageWriter.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbitkImageWriter.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/05/15 14:57:58 $
6   Version:   $Revision: 1.5 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *  \file 
33  *  \brief 
34  */
35 #ifdef _USE_ITK_
36
37 #include "bbitkImageWriter.h"
38 #include "bbitkPackage.h"
39 #include "itkImageFileWriter.h"
40
41 namespace bbitk 
42 {
43   BBTK_BLACK_BOX_IMPLEMENTATION(ImageWriter,bbtk::AtomicBlackBox);
44
45   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itk,ImageWriter);
46
47
48         //-----------------------------------------------------------------     
49         void ImageWriter::bbUserSetDefaultValues()
50         {
51         }
52         
53         //-----------------------------------------------------------------     
54         void ImageWriter::bbUserInitializeProcessing()
55         {
56         }
57         
58         //-----------------------------------------------------------------     
59         void ImageWriter::bbUserFinalizeProcessing()
60         {
61         }
62
63   void ImageWriter::Write()
64   {
65     BBTK_TEMPLATE_ITK_IMAGE_SWITCH(bbGetInputIn().type(),Write);
66   }
67
68
69
70   /** 
71       Template Processing 
72   */
73   template<class itkImageType>
74   void ImageWriter::Write()
75   {
76     bbtkDebugMessageInc("Core",9,"bbitk::ImageWriter::Write<"
77                         <<bbtk::TypeName<itkImageType>()
78                         <<">()"<<std::endl);
79
80     typedef itk::ImageFileWriter< itkImageType > itkWriterType;
81     typename itkWriterType::Pointer writer = itkWriterType::New();
82     writer->SetInput(bbGetInputIn().unsafe_get<const itkImageType*>());
83     writer->SetFileName(bbGetInputFilename().c_str());
84
85     try { writer->Update(); }
86     catch( std::exception & e ) 
87       {
88         bbtkError("could not write image \""<< bbGetInputFilename() 
89                   << "\" : "<<e.what());
90       }
91
92     bbtkDebugDecTab("Core",9);
93   }
94
95
96
97
98
99
100 }
101 // eo namespace bbtk
102
103 #endif