ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
00001 /*========================================================================= 00002 * 00003 * Copyright Insight Software Consortium 00004 * 00005 * Licensed under the Apache License, Version 2.0 (the "License"); 00006 * you may not use this file except in compliance with the License. 00007 * You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0.txt 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 * 00017 *=========================================================================*/ 00018 #ifndef __itkComplexToImaginaryImageAdaptor_h 00019 #define __itkComplexToImaginaryImageAdaptor_h 00020 00021 #include "itkImageAdaptor.h" 00022 #include <complex> 00023 00024 namespace itk 00025 { 00026 namespace Accessor 00027 { 00043 template< class TInternalType, class TExternalType > 00044 class ITK_EXPORT ComplexToImaginaryPixelAccessor 00045 { 00046 public: 00049 typedef TExternalType ExternalType; 00050 00053 typedef TInternalType InternalType; 00054 00055 static inline void Set(TInternalType & output, const TExternalType & input) 00056 { output = (TInternalType)( input ); } 00057 00058 static inline TExternalType Get(const TInternalType & input) 00059 { return (TExternalType)( input.imag() ); } 00060 }; 00061 } // end namespace Accessor 00062 00073 template< class TImage, class TOutputPixelType > 00074 class ITK_EXPORT ComplexToImaginaryImageAdaptor:public 00075 ImageAdaptor< TImage, 00076 Accessor::ComplexToImaginaryPixelAccessor< 00077 typename TImage::PixelType, 00078 TOutputPixelType > > 00079 { 00080 public: 00082 typedef ComplexToImaginaryImageAdaptor Self; 00083 typedef ImageAdaptor< TImage, Accessor::ComplexToImaginaryPixelAccessor< 00084 typename TImage::PixelType, 00085 TOutputPixelType > > Superclass; 00086 00087 typedef SmartPointer< Self > Pointer; 00088 typedef SmartPointer< const Self > ConstPointer; 00089 00091 itkNewMacro(Self); 00092 00094 itkTypeMacro(ComplexToImaginaryImageAdaptor, ImageAdaptor); 00095 protected: 00096 ComplexToImaginaryImageAdaptor() {} 00097 virtual ~ComplexToImaginaryImageAdaptor() {} 00098 private: 00099 ComplexToImaginaryImageAdaptor(const Self &); //purposely not implemented 00100 void operator=(const Self &); //purposely not implemented 00101 }; 00102 } // end namespace itk 00104 00105 #endif 00106