diff --git a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx index f11d6384eb813df4ddfb224e675f5f7e8948b3eb..730eb65a5d0e180f16c2284417739530bbba617e 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx +++ b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx @@ -47,9 +47,7 @@ #include "otbMuellerToReciprocalCovarianceImageFilter.h" #include "otbMuellerToPolarisationDegreeAndPowerImageFilter.h" - - - +#include "otbSinclairImageFilters.h" namespace otb @@ -121,11 +119,6 @@ public: ComplexDoubleVectorImageType::PixelType> CoherencyFunctorType; - typedef otb::Functor::SinclairToCovarianceMatrixFunctor<ComplexDoubleImageType::PixelType, - ComplexDoubleImageType::PixelType, - ComplexDoubleImageType::PixelType, - ComplexDoubleImageType::PixelType, - ComplexDoubleVectorImageType::PixelType> CovarianceFunctorType; typedef otb::Functor::SinclairToCircularCovarianceMatrixFunctor<ComplexDoubleImageType::PixelType, @@ -150,12 +143,8 @@ public: CoherencyFunctorType > CohSRFilterType; - typedef SinclairImageFilter<ComplexDoubleImageType, - ComplexDoubleImageType, - ComplexDoubleImageType, - ComplexDoubleImageType, - ComplexDoubleVectorImageType, - CovarianceFunctorType > CovSRFilterType; + using CovSRFilterType = SinclairToCovarianceMatrixFilter<ComplexDoubleImageType, ComplexDoubleVectorImageType>; + typedef SinclairImageFilter<ComplexDoubleImageType, ComplexDoubleImageType, @@ -625,10 +614,10 @@ private: m_CovSRFilter = CovSRFilterType::New(); - m_CovSRFilter->SetInputHH(GetParameterComplexDoubleImage("inhh")); - m_CovSRFilter->SetInputHV(GetParameterComplexDoubleImage("inhv")); - m_CovSRFilter->SetInputVH(GetParameterComplexDoubleImage("invh")); - m_CovSRFilter->SetInputVV(GetParameterComplexDoubleImage("invv")); + m_CovSRFilter->SetVariadicNamedInput<polarimetry_tags::hh>(GetParameterComplexDoubleImage("inhh")); + m_CovSRFilter->SetVariadicNamedInput<polarimetry_tags::hv>(GetParameterComplexDoubleImage("inhv")); + m_CovSRFilter->SetVariadicNamedInput<polarimetry_tags::vh>(GetParameterComplexDoubleImage("invh")); + m_CovSRFilter->SetVariadicNamedInput<polarimetry_tags::vv>(GetParameterComplexDoubleImage("invv")); SetParameterOutputImage("outc", m_CovSRFilter->GetOutput() ); // input : 4 x 1 complex channel | output : 10 complex channels diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairImageFilters.h b/Modules/Filtering/Polarimetry/include/otbSinclairImageFilters.h index 3ea2f8b620739f1876328f7af4924d02058f6cd8..8c535c36af1eb2b428b64f748fbe47b069be8b48 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairImageFilters.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairImageFilters.h @@ -27,14 +27,12 @@ namespace otb { - // This is the entire declaration of SinclairToCovarianceMatrixFilter +// This is the entire declaration of SinclairToCovarianceMatrixFilter template <typename TInputImage, typename TOutputImage> -using SinclairToCovarianceMatrixFilter = FunctorImageFilter< Functor::SinclairToCovarianceMatrixFunctor <typename TInputImage::PixelType,typename TInputImage::PixelType,typename TInputImage::PixelType,typename TInputImage::PixelType, - typename TOutputImage::PixelType> , - std::tuple<polarimetry_tags::hh, - polarimetry_tags::hv, - polarimetry_tags::vh, - polarimetry_tags::vv> >; +using SinclairToCovarianceMatrixFilter = DefaultConstructibleFunctorImageFilter< + Functor::SinclairToCovarianceMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType, + typename TInputImage::PixelType, typename TOutputImage::PixelType>, + std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>; } // end namespace otb diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixFunctor.h b/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixFunctor.h index 9decec618f7b9991f9c2d7800e3bc9a90c5223bf..37d9624f5f07058ca9728445acaca72d578a605c 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixFunctor.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixFunctor.h @@ -71,9 +71,7 @@ public: inline TOutput operator ()(const TInput1& Shh, const TInput2& Shv, const TInput3& Svh, const TInput4& Svv) { - TOutput result; - - result.SetSize(m_NumberOfComponentsPerPixel); + TOutput result(10); const ComplexType S_hh = static_cast<ComplexType>(Shh); const ComplexType S_hv = static_cast<ComplexType>(Shv); @@ -90,28 +88,23 @@ public: result[7] = static_cast<OutputValueType>( std::norm(S_vh) ); result[8] = static_cast<OutputValueType>( S_vh*std::conj(S_vv) ); result[9] = static_cast<OutputValueType>( std::norm(S_vv) ); - - return (result); + + return result; } - - unsigned int GetNumberOfComponentsPerPixel() + constexpr size_t GetNumberOfComponentsPerPixel() { - return m_NumberOfComponentsPerPixel; + return OutputSize(); + } + constexpr size_t OutputSize(...) const + { + // Number of components in the covariance matrix + return 10; } - /** Constructor */ SinclairToCovarianceMatrixFunctor() {} /** Destructor */ virtual ~SinclairToCovarianceMatrixFunctor() {} - -protected: - - -private: - //itkStaticConstMacro(m_NumberOfComponentsPerPixel, unsigned int, 10); - static const unsigned int m_NumberOfComponentsPerPixel = 10; - }; } // namespace Functor