ITK  5.1.0
Insight Toolkit
itkLabelObjectLine.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkLabelObjectLine_h
19 #define itkLabelObjectLine_h
20 
21 #include "itkIndex.h"
22 #include "itkIndent.h"
23 
24 namespace itk
25 {
42 template <unsigned int VImageDimension>
43 class ITK_TEMPLATE_EXPORT LabelObjectLine
44 {
45 public:
46  static constexpr unsigned int ImageDimension = VImageDimension;
47 
50 
52  LabelObjectLine(const IndexType & idx, const LengthType & length);
53  virtual ~LabelObjectLine() = default;
54 
58  void
59  SetIndex(const IndexType & idx);
60 
61  const IndexType &
62  GetIndex() const;
63 
67  void
68  SetLength(const LengthType length);
69 
70  const LengthType &
71  GetLength() const;
72 
76  bool
77  HasIndex(const IndexType idx) const;
78 
79  bool
80  IsNextIndex(const IndexType & idx) const;
81 
83  void
84  Print(std::ostream & os, Indent indent = 0) const;
85 
86 protected:
91  virtual void
92  PrintSelf(std::ostream & os, Indent indent) const;
93 
94  virtual void
95  PrintHeader(std::ostream & os, Indent indent) const;
96 
97  virtual void
98  PrintTrailer(std::ostream & os, Indent indent) const;
99 
100 private:
103 };
104 } // end namespace itk
105 
106 #ifndef ITK_MANUAL_INSTANTIATION
107 # include "itkLabelObjectLine.hxx"
108 #endif
109 
110 #endif
itk::Index< VImageDimension >
itk::LabelObjectLine::m_Length
LengthType m_Length
Definition: itkLabelObjectLine.h:102
itk::LabelObjectLine::LengthType
SizeValueType LengthType
Definition: itkLabelObjectLine.h:49
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itkIndent.h
itkIndex.h
itk::LabelObjectLine
Definition: itkLabelObjectLine.h:43
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::LabelObjectLine::m_Index
IndexType m_Index
Definition: itkLabelObjectLine.h:101
itk::SizeValueType
unsigned long SizeValueType
Definition: itkIntTypes.h:83