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 _MITKPOINTSETINDEXTOWORLDTRANSFORMFILTER_H__ 00019 #define _MITKPOINTSETINDEXTOWORLDTRANSFORMFILTER_H__ 00020 00021 #include "mitkPointSetToPointSetFilter.h" 00022 #include "mitkPointSet.h" 00023 00024 #include "MitkExtExports.h" 00025 00026 namespace mitk 00027 { 00028 //##Documentation 00029 //## @brief Transforms a point set object from index to world coordinates. 00030 //## Transposes the points coordinates with the object's mitk::Geometry3D to display 00031 //## correct scene coordinates. 00032 //## 00033 //## @ingroup Algorithms 00034 class MitkExt_EXPORT PointSetIndexToWorldTransformFilter : public PointSetToPointSetFilter 00035 { 00036 public: 00040 mitkClassMacro ( PointSetIndexToWorldTransformFilter, PointSetToPointSetFilter ); 00041 00042 itkNewMacro ( Self ); 00043 00044 protected: 00045 00049 PointSetIndexToWorldTransformFilter(); 00050 00054 virtual ~PointSetIndexToWorldTransformFilter(); 00058 virtual void GenerateData(); 00059 00060 }; 00061 00062 } 00063 00064 #endif