Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class RieszFrequencyFilterBankGenerator : public itk::GenerateImageSource<TOutpu
using FunctionValueType = typename RieszFunctionType::FunctionValueType;

using OutputsType = typename std::vector<OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<int, OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<OutputImagePointer>;

/** Dimension */
static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class StructureTensorImageFilter : public ImageToImageFilter<TInputImage, TOutpu
using GaussianSourceType = GaussianImageSource<FloatImageType>;

using InputsType = typename std::vector<InputImagePointer>;
// using InputsType = typename itk::VectorContainer<int, InputImagePointer>;
// using InputsType = typename itk::VectorContainer<InputImagePointer>;
//
void
SetInputs(const InputsType & inputs);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class WaveletFrequencyFilterBankGenerator : public itk::GenerateImageSource<TOut
using FunctionValueType = typename WaveletFunctionType::FunctionValueType;

using OutputsType = typename std::vector<OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<int, OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<OutputImagePointer>;

static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class WaveletFrequencyForward : public ImageToImageFilter<TInputImage, TOutputIm
using InputImageConstPointer = typename Superclass::InputImageConstPointer;

using OutputsType = typename std::vector<OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<int, OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<OutputImagePointer>;

using OutputRegionIterator = typename itk::ImageRegionIterator<OutputImageType>;
using InputRegionConstIterator = typename itk::ImageRegionConstIterator<InputImageType>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class WaveletFrequencyForwardUndecimated : public ImageToImageFilter<TInputImage
using InputImageConstPointer = typename Superclass::InputImageConstPointer;

using OutputsType = typename std::vector<OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<int, OutputImagePointer>;
// using OutputsType = typename itk::VectorContainer<OutputImagePointer>;

using OutputRegionIterator = typename itk::ImageRegionIterator<OutputImageType>;
using InputRegionConstIterator = typename itk::ImageRegionConstIterator<InputImageType>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class WaveletFrequencyInverse : public ImageToImageFilter<TInputImage, TOutputIm
using InputImageConstPointer = typename Superclass::InputImageConstPointer;

using InputsType = typename std::vector<InputImagePointer>;
// using InputsType = typename itk::VectorContainer<int, InputImagePointer>;
// using InputsType = typename itk::VectorContainer<InputImagePointer>;

using WaveletFilterBankType = TWaveletFilterBank;
using WaveletFilterBankPointer = typename WaveletFilterBankType::Pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class WaveletFrequencyInverseUndecimated : public ImageToImageFilter<TInputImage
using InputImageConstPointer = typename Superclass::InputImageConstPointer;

using InputsType = typename std::vector<InputImagePointer>;
// using InputsType = typename itk::VectorContainer<int, InputImagePointer>;
// using InputsType = typename itk::VectorContainer<InputImagePointer>;

using WaveletFilterBankType = TWaveletFilterBank;
using WaveletFilterBankPointer = typename WaveletFilterBankType::Pointer;
Expand Down
Loading