ITK  4.1.0
Insight Segmentation and Registration Toolkit
itkAsinImageAdaptor.h
Go to the documentation of this file.
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 __itkAsinImageAdaptor_h
00019 #define __itkAsinImageAdaptor_h
00020 
00021 #include "itkImageAdaptor.h"
00022 #include "vnl/vnl_math.h"
00023 
00024 namespace itk
00025 {
00026 namespace Accessor
00027 {
00040 template< class TInternalType, class TExternalType >
00041 class ITK_EXPORT AsinPixelAccessor
00042 {
00043 public:
00044 
00047   typedef TExternalType ExternalType;
00048 
00051   typedef TInternalType InternalType;
00052 
00053   static inline void Set(TInternalType & output, const TExternalType & input)
00054   { output = (TInternalType)vcl_asin( (double)input ); }
00055 
00056   static inline TExternalType Get(const TInternalType & input)
00057   { return (TExternalType)vcl_asin( (double)input ); }
00058 };
00059 } // end namespace Accessor
00060 
00071 template< class TImage, class TOutputPixelType >
00072 class ITK_EXPORT AsinImageAdaptor:public
00073   ImageAdaptor< TImage,
00074                 Accessor::AsinPixelAccessor<
00075                   typename TImage::PixelType,
00076                   TOutputPixelType >   >
00077 {
00078 public:
00079 
00081   typedef AsinImageAdaptor Self;
00082   typedef ImageAdaptor< TImage,
00083                         Accessor::AsinPixelAccessor< typename TImage::PixelType, TOutputPixelType > > Superclass;
00084 
00085   typedef SmartPointer< Self >       Pointer;
00086   typedef SmartPointer< const Self > ConstPointer;
00087 
00089   itkTypeMacro(AsinImageAdaptor, ImageAdaptor);
00090 
00092   itkNewMacro(Self);
00093 protected:
00094   AsinImageAdaptor() {}
00095   virtual ~AsinImageAdaptor() {}
00096 private:
00097   AsinImageAdaptor(const Self &); //purposely not implemented
00098   void operator=(const Self &);   //purposely not implemented
00099 };
00100 } // end namespace itk
00102 
00103 #endif
00104