Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COMP: Remove Doxygen \ref, \copydetails commands #263

Merged
merged 1 commit into from
Dec 5, 2018
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
4 changes: 0 additions & 4 deletions Modules/Core/Common/include/itkFloatingPointExceptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ class ITKCommon_EXPORT FloatingPointExceptions
static void Enable();

/** Disable floating point exceptions.
*
* \copydetails Enable
*
* \sa Enable, SetEnabled, GetEnabled
*/
Expand All @@ -59,8 +57,6 @@ class ITKCommon_EXPORT FloatingPointExceptions
static bool GetEnabled();

/** Set the state to specified value.
*
* \copydetails Enable
*
* \sa Enable, Disable, GetEnabled
*/
Expand Down
4 changes: 2 additions & 2 deletions Modules/Filtering/FFT/include/itkForwardFFTImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ namespace itk
*
* The output generated from a ForwardFFTImageFilter is in the
* dual space or frequency domain.
* Refer to \ref FrequencyFFTLayoutImageRegionConstIteratorWithIndex
* Refer to FrequencyFFTLayoutImageRegionConstIteratorWithIndex
* for a description of the layout of frequencies generated after a forward FFT.
* Also see \ref ITKImageFrequency for a set of filters requiring input images in the frequency domain.
* Also see ITKImageFrequency for a set of filters requiring input images in the frequency domain.
*
* \ingroup FourierTransform
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ namespace itk
* frequency layout of the input image.
*
* Images in the dual space can be acquired experimentally, from scattering experiments or other techniques.
* In that case use \ref FrequencyImageRegionIteratorWithIndex because
* In that case use FrequencyImageRegionIteratorWithIndex because
* the layout of dual space images is the same as spatial domain images.
*
* Frequency-domain images can be computed from any spatial-domain applying a Fourier Transform.
* If \ref ForwardFFTImageFilter was used, template this filter with
* the \ref FrequencyFFTLayoutImageRegionIteratorWithIndex.
* Please note that \ref FrequencyFFTLayoutImageRegionIteratorWithIndex requires a full FFT,
* If ForwardFFTImageFilter was used, template this filter with
* the FrequencyFFTLayoutImageRegionIteratorWithIndex.
* Please note that FrequencyFFTLayoutImageRegionIteratorWithIndex requires a full FFT,
* and is not compatible with the Hermitian optimization.
*
* To use this filter with Hermitian (halved-frequency) FFTs, use
* \ref FrequencyHalfHermitianFFTLayoutImageRegionIteratorWithIndex or its const version.
* FrequencyHalfHermitianFFTLayoutImageRegionIteratorWithIndex or its const version.
*
* If the output of the FFT is shifted, for example after applying \ref FFTShiftImageFilter,
* use \ref FrequencyShiftedFFTLayoutImageRegionIteratorWithIndex.
* If the output of the FFT is shifted, for example after applying FFTShiftImageFilter,
* use FrequencyShiftedFFTLayoutImageRegionIteratorWithIndex.
*
* \sa UnaryGeneratorImageFilter
*
Expand Down