Skip to content
This repository was archived by the owner on Apr 29, 2026. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions include/itkFastBilateralImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ITK_EXPORT FastBilateralImageFilter : public ImageToImageFilter<TInputImag
public:
ITK_DISALLOW_COPY_AND_MOVE(FastBilateralImageFilter);

/** Standard class typedefs. */
/** Standard class type aliases. */
using Self = FastBilateralImageFilter;
using Superclass = ImageToImageFilter<TInputImage, TOutputImage>;
using Pointer = SmartPointer<Self>;
Expand All @@ -91,7 +91,7 @@ class ITK_EXPORT FastBilateralImageFilter : public ImageToImageFilter<TInputImag
* is assumed to be the same. */
static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;

/** Input image typedefs. */
/** Input image type aliases. */
using InputImageType = TInputImage;
using InputImagePointer = typename TInputImage::Pointer;
using InputImageConstPointer = typename TInputImage::ConstPointer;
Expand All @@ -102,7 +102,7 @@ class ITK_EXPORT FastBilateralImageFilter : public ImageToImageFilter<TInputImag
/** Input image iterator type. */
using InputImageConstIteratorType = ImageRegionConstIteratorWithIndex<TInputImage>;

/** Output image typedefs. */
/** Output image type aliases. */
using OutputImageType = TOutputImage;
using OutputImagePointer = typename TOutputImage::Pointer;

Expand Down
Loading