/* * 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 otbOneRIBandImageToOneComplexBandImage_h #define otbOneRIBandImageToOneComplexBandImage_h #include "itkImageToImageFilter.h" #include "itkImage.h" #include "itkNumericTraits.h" /* * Inputs : one image made of two real bands * Output : one image made of one complex band * * */ namespace otb { template class ITK_EXPORT OneRIBandImageToOneComplexBandImage : public itk::ImageToImageFilter { public: /** Extract input and output image dimension */ itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension); itkStaticConstMacro(OutputImageDimension, unsigned int, TOutputImage::ImageDimension); typedef TInputImage InputImageType; typedef TOutputImage OutputImageType; /** standard class typedefs */ typedef OneRIBandImageToOneComplexBandImage Self; typedef itk::ImageToImageFilter Superclass; typedef itk::SmartPointer Pointer; typedef itk::SmartPointer ConstPointer; /** Object factory management */ itkNewMacro(Self); /** typemacro */ itkTypeMacro(OneRIBandImageToOneComplexBandImage, ImageToImageFilter); typedef typename InputImageType::PixelType InputPixelType; typedef typename OutputImageType::PixelType OutputPixelType; typedef typename itk::NumericTraits::RealType InputRealType; typedef typename InputImageType::RegionType InputImageRegionType; typedef typename OutputImageType::RegionType OutputImageRegionType; protected: OneRIBandImageToOneComplexBandImage(); ~OneRIBandImageToOneComplexBandImage() override { } void PrintSelf(std::ostream& os, itk::Indent indent) const override; void BeforeThreadedGenerateData(void) override; void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread, itk::ThreadIdType threadId) override; private: OneRIBandImageToOneComplexBandImage(const Self&) = delete; void operator=(const Self&) = delete; }; } // end namespace otb #ifndef OTB_MANUAL_INSTANTIATION #include "otbOneRIBandImageToOneComplexBandImage.hxx" #endif #endif