1818
1919// Software Guide : BeginLatex
2020//
21- // This example illustrates how to manually construct an \doxygen {Image}
21+ // This example illustrates how to manually construct an \itkref {Image}
2222// class. The following is the minimal code needed to instantiate, declare
2323// and create the \code{Image} class.
2424//
@@ -54,7 +54,7 @@ main(int, char *[])
5454 //
5555 // The image can then be created by invoking the \code{New()} operator
5656 // from the corresponding image type and assigning the result
57- // to a \doxygen {SmartPointer}.
57+ // to a \itkref {SmartPointer}.
5858 //
5959 // \index{itk::Image!Pointer}
6060 // \index{itk::Image!New()}
@@ -83,8 +83,8 @@ main(int, char *[])
8383 // instantiated as previously shown, and that regions describing the image
8484 // are then associated with it.
8585 //
86- // A region is defined by two classes: the \doxygen {Index} and
87- // \doxygen {Size} classes. The origin of the region within the
86+ // A region is defined by two classes: the \itkref {Index} and
87+ // \itkref {Size} classes. The origin of the region within the
8888 // image is defined by the \code{Index}. The extent, or size, of the region
8989 // is defined by the \code{Size}. When an image is created manually, the
9090 // user is responsible for defining the image size and the index at which
@@ -112,7 +112,7 @@ main(int, char *[])
112112 // Software Guide : BeginLatex
113113 //
114114 // The region size is represented by an array of the same dimension as the
115- // image (using the \doxygen {Size} class). The components of the array are
115+ // image (using the \itkref {Size} class). The components of the array are
116116 // unsigned integers indicating the extent in pixels of the image along
117117 // every dimension.
118118 //
@@ -132,7 +132,7 @@ main(int, char *[])
132132 // Software Guide : BeginLatex
133133 //
134134 // Having defined the starting index and the image size, these two
135- // parameters are used to create an \doxygen {ImageRegion} object
135+ // parameters are used to create an \itkref {ImageRegion} object
136136 // which basically encapsulates both concepts.
137137 // The region is initialized with the starting index and size of the
138138 // image.
0 commit comments