Skip to content
Snippets Groups Projects
Commit 084315a4 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: DefaultConstructibleFunctorImageFilter does not exist anymore use FunctorImageFilter instead

parent 88fe948a
No related branches found
No related tags found
No related merge requests found
...@@ -32,28 +32,28 @@ namespace otb ...@@ -32,28 +32,28 @@ namespace otb
{ {
// This is the entire declaration of SinclairToCovarianceMatrixFilter // This is the entire declaration of SinclairToCovarianceMatrixFilter
template <typename TInputImage, typename TOutputImage> template <typename TInputImage, typename TOutputImage>
using SinclairToCovarianceMatrixFilter = DefaultConstructibleFunctorImageFilter< using SinclairToCovarianceMatrixFilter = FunctorImageFilter<
Functor::SinclairToCovarianceMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType, Functor::SinclairToCovarianceMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType,
typename TInputImage::PixelType, typename TOutputImage::PixelType>, typename TInputImage::PixelType, typename TOutputImage::PixelType>,
std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>; std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>;
// This is the entire declaration of SinclairToCircularCovarianceMatrixFilter // This is the entire declaration of SinclairToCircularCovarianceMatrixFilter
template <typename TInputImage, typename TOutputImage> template <typename TInputImage, typename TOutputImage>
using SinclairToCircularCovarianceMatrixFilter = DefaultConstructibleFunctorImageFilter< using SinclairToCircularCovarianceMatrixFilter = FunctorImageFilter<
Functor::SinclairToCircularCovarianceMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType, Functor::SinclairToCircularCovarianceMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType,
typename TInputImage::PixelType, typename TOutputImage::PixelType>, typename TInputImage::PixelType, typename TOutputImage::PixelType>,
std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>; std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>;
// This is the entire declaration of SinclairToCoherencyMatrixFilter // This is the entire declaration of SinclairToCoherencyMatrixFilter
template <typename TInputImage, typename TOutputImage> template <typename TInputImage, typename TOutputImage>
using SinclairToCoherencyMatrixFilter = DefaultConstructibleFunctorImageFilter< using SinclairToCoherencyMatrixFilter = FunctorImageFilter<
Functor::SinclairToCoherencyMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType, Functor::SinclairToCoherencyMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType,
typename TInputImage::PixelType, typename TOutputImage::PixelType>, typename TInputImage::PixelType, typename TOutputImage::PixelType>,
std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>; std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>;
// This is the entire declaration of SinclairToMuellerMatrixFilter // This is the entire declaration of SinclairToMuellerMatrixFilter
template <typename TInputImage, typename TOutputImage> template <typename TInputImage, typename TOutputImage>
using SinclairToMuellerMatrixFilter = DefaultConstructibleFunctorImageFilter< using SinclairToMuellerMatrixFilter = FunctorImageFilter<
Functor::SinclairToMuellerMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType, Functor::SinclairToMuellerMatrixFunctor<typename TInputImage::PixelType, typename TInputImage::PixelType, typename TInputImage::PixelType,
typename TInputImage::PixelType, typename TOutputImage::PixelType>, typename TInputImage::PixelType, typename TOutputImage::PixelType>,
std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>; std::tuple<polarimetry_tags::hh, polarimetry_tags::hv, polarimetry_tags::vh, polarimetry_tags::vv>>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment