00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date$ 00006 Version: $Revision$ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or https://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 00018 #ifndef _mitkSurfaceIndexToWorldTransformFilter_h__ 00019 #define _mitkSurfaceIndexToWorldTransformFilter_h__ 00020 00021 #include "mitkCommon.h" 00022 #include "MitkExtExports.h" 00023 #include "mitkSurfaceToSurfaceFilter.h" 00024 #include "mitkSurface.h" 00025 00026 namespace mitk { 00027 00028 //##Documentation 00029 //## @brief Transforms a surface object from index to world coordinates. 00030 //## Transposes the surface point coordinates with the object's mitk::Geometry3D to display 00031 //## correct scene coordinates. 00032 //## 00033 //## @ingroup Algorithms 00034 00035 class MitkExt_EXPORT SurfaceIndexToWorldTransformFilter : public SurfaceToSurfaceFilter 00036 { 00037 public: 00038 00042 mitkClassMacro(SurfaceIndexToWorldTransformFilter, SurfaceToSurfaceFilter); 00043 itkNewMacro(Self); 00044 00045 protected: 00046 00050 SurfaceIndexToWorldTransformFilter(); 00051 00055 virtual ~SurfaceIndexToWorldTransformFilter(); 00056 00060 virtual void GenerateData(); 00061 00062 }; 00063 00064 } // namespace mitk 00065 00066 #endif /* _mitkSurfaceIndexToWorldTransformFilter_h__*/