Skip to content

Commit

Permalink
Added documentation of two enums
Browse files Browse the repository at this point in the history
  • Loading branch information
smistad committed Aug 30, 2023
1 parent 4f1163d commit c5782af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions source/FAST/Algorithms/ImageResampler/IsotropicResampler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class FAST_EXPORT IsotropicResampler : public ImageResampler {
* @brief Which spacing to select
*/
enum class SpacingSelector {
SMALLEST = 0, // Select smallest spacing
LARGEST, // Select largest spacing
X, // Select X spacing always
Y, // Select Y spacing always
Z // Select Z spacing always
SMALLEST = 0, /**< Select smallest spacing */
LARGEST, /**< Select largest spacing */
X, /**< Select X spacing always */
Y, /**< Select Y spacing always */
Z /**< Select Z spacing always */
};
/**
* @brief Create instance
Expand Down
6 changes: 3 additions & 3 deletions source/FAST/Algorithms/NeuralNetwork/ImageToImageNetwork.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class FAST_EXPORT ImageToImageNetwork : public NeuralNetwork {
/** @brief Normalization method of image after each iteration
*/
enum class Normalization {
CLIP_0_1 = 0, // Clip image intensities at 0 and 1
CLIP_0_SQUEEZE, // Clip image intensities at 0 and squeeze intensity range if max is above 1.0
NONE, // No normalization
CLIP_0_1 = 0, /**< Clip image intensities at 0 and 1 */
CLIP_0_SQUEEZE, /**< Clip image intensities at 0 and squeeze intensity range if max is above 1.0 */
NONE, /**< No normalization */
};
/**
* @brief Create instance
Expand Down

0 comments on commit c5782af

Please sign in to comment.