/* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * * https://www.orfeo-toolbox.org/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef otbStreamingTraits_h #define otbStreamingTraits_h #include "otbMacro.h" #include "itkBSplineInterpolateImageFunction.h" #include "itkLinearInterpolateImageFunction.h" #include "itkNearestNeighborInterpolateImageFunction.h" #include "otbWindowedSincInterpolateImageGaussianFunction.h" #include "otbWindowedSincInterpolateImageHammingFunction.h" #include "otbWindowedSincInterpolateImageCosineFunction.h" #include "otbWindowedSincInterpolateImageWelchFunction.h" #include "otbWindowedSincInterpolateImageLanczosFunction.h" #include "otbWindowedSincInterpolateImageBlackmanFunction.h" #include "otbBCOInterpolateImageFunction.h" #include "otbProlateInterpolateImageFunction.h" namespace otb { /** \class StreamingTraits * \brief This class provides internal information for streamable filters * * \note * This class is specialized for otb::VectorImage because VectorImage support less interpolator types * * \sa ImageFileWriter * \sa StreamingStatisticsImageFilter * \sa StreamingResampleImageFilter * * \ingroup OTBInterpolation */ template class ITK_EXPORT StreamingTraits { public: /** Standard class typedefs. */ typedef StreamingTraits Self; typedef TImage ImageType; /** Dimension of input image. */ itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension); // ITK Interpolators typedef itk::InterpolateImageFunction InterpolationType; typedef itk::BSplineInterpolateImageFunction BSplineInterpolationType; typedef itk::LinearInterpolateImageFunction LinearInterpolationType; typedef itk::NearestNeighborInterpolateImageFunction NearestNeighborInterpolationType; // OTB Interpolators (supported for otb::Image) typedef WindowedSincInterpolateImageGaussianFunction GaussianInterpolationType; typedef WindowedSincInterpolateImageCosineFunction CosineInterpolationType; typedef WindowedSincInterpolateImageHammingFunction HammingInterpolationType; typedef WindowedSincInterpolateImageWelchFunction WelchInterpolationType; typedef WindowedSincInterpolateImageLanczosFunction LanczosInterpolationType; typedef WindowedSincInterpolateImageBlackmanFunction BlackmanInterpolationType; typedef ProlateInterpolateImageFunction ProlateInterpolationType; typedef BCOInterpolateImageFunction BCOInterpolationType; static unsigned int CalculateNeededRadiusForInterpolator(const InterpolationType* interpolator); }; /** \class StreamingTraits * \brief This class provides internal information for streamable filters * * \note * This class is specialized for otb::VectorImage because VectorImage support less interpolator types * * \sa ImageFileWriter * \sa StreamingStatisticsImageFilter * \sa StreamingResampleImageFilter * * \ingroup OTBInterpolation */ template class ITK_EXPORT StreamingTraits> { public: /** Standard class typedefs. */ typedef StreamingTraits Self; typedef otb::VectorImage ImageType; /** Dimension of input image. */ itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension); // ITK Interpolators typedef itk::InterpolateImageFunction InterpolationType; typedef itk::LinearInterpolateImageFunction LinearInterpolationType; typedef itk::NearestNeighborInterpolateImageFunction NearestNeighborInterpolationType; // OTB Interpolators (supported for otb::VectorImage) typedef WindowedSincInterpolateImageGaussianFunction GaussianInterpolationType; typedef BCOInterpolateImageFunction BCOInterpolationType; static unsigned int CalculateNeededRadiusForInterpolator(const InterpolationType* interpolator); }; } // End namespace otb #ifndef OTB_MANUAL_INSTANTIATION #include "otbStreamingTraits.hxx" #endif #endif