Skip to content

Commit

Permalink
DOC: Fix itk::MRASlabIdentifier class documentation list syntax
Browse files Browse the repository at this point in the history
Fix `itk::MRASlabIdentifier` class documentation Doxygen list syntax.

Fixes:
```
Modules/Filtering/BiasCorrection/include/itkMRASlabIdentifier.h:160:
warning:
Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 27)
Modules/Filtering/BiasCorrection/include/itkMRASlabIdentifier.h:63:
warning: End of comment block while inside formula.
```

Raised for example in:
https://open.cdash.org/viewBuildError.php?type=1&buildid=8167118
  • Loading branch information
jhlegarreta authored and dzenanz committed Sep 23, 2022
1 parent 8a6eb3d commit 68979a9
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions Modules/Filtering/BiasCorrection/include/itkMRASlabIdentifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,17 @@ namespace itk
* the \p dimension variable follows the convention \f{X, Y, Z} : {0, 1, 2}\f$.
*
* The identification scheme used works according to the following steps:
* -# Users should specify how many pixels per slice the identifier
* will sample.
* -# For each slice, the identifier searches the specified number of pixels
* of which intensity values are greater than 0 and less than those
* of the other pixels in the slice.
* -# The identifier calculates the average for each slice and the overall
* average using the search results.
* -# For each slice, it subtracts the overall average from the slice average.
* If the sign of the subtraction result changes, then it assumes that a
* slab ends and another slab begins.
* -# Users should specify how many pixels per slice the identifier
* will sample.
* -# For each slice, the identifier searches the specified number of pixels
* of which intensity values are greater than 0 and less than those
* of the other pixels in the slice.
* -# The identifier calculates the average for each slice and the overall
* average using the search results.
* -# For each slice, it subtracts the overall average from the slice average.
* If the sign of the subtraction result changes, then it assumes that a
* slab ends and another slab begins.
*
* \ingroup ITKBiasCorrection
*/
template <typename TInputImage>
Expand Down

0 comments on commit 68979a9

Please sign in to comment.