ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAnchorErodeDilateLine.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 * https://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 itkAnchorErodeDilateLine_h
19#define itkAnchorErodeDilateLine_h
20
22
23namespace itk
24{
36template <typename TInputPix, typename TCompare>
37class ITK_TEMPLATE_EXPORT AnchorErodeDilateLine
38{
39public:
41 using InputImagePixelType = TInputPix;
42
43 void
44 DoLine(std::vector<TInputPix> & buffer, std::vector<TInputPix> & inbuffer, unsigned int bufflength);
45
46 void
47 SetSize(unsigned int size)
48 {
49 m_Size = size;
50 }
51
52 void
53 PrintSelf(std::ostream & os, Indent indent) const;
54
57
58private:
59 unsigned int m_Size;
60
62
63 bool
64 StartLine(std::vector<TInputPix> & buffer,
65 std::vector<TInputPix> & inbuffer,
66 InputImagePixelType & Extreme,
67 int & outLeftP,
68 int & outRightP,
69 int & inLeftP,
70 int & inRightP,
71 int middle);
72
73 void
74 FinishLine(std::vector<TInputPix> & buffer,
75 std::vector<TInputPix> & inbuffer,
76 InputImagePixelType & Extreme,
77 int & outLeftP,
78 int & outRightP,
79 int & inLeftP,
80 int & inRightP,
81 int middle);
82
83 bool
85 {
86 // bool, short and char are acceptable for vector based algorithm: they do
87 // not require
88 // too much memory. Other types are not usable with that algorithm
89 return typeid(InputImagePixelType) == typeid(unsigned char) || typeid(InputImagePixelType) == typeid(signed char) ||
90 typeid(InputImagePixelType) == typeid(unsigned short) || typeid(InputImagePixelType) == typeid(short) ||
91 typeid(InputImagePixelType) == typeid(bool);
92 }
93
94 inline bool
96 {
97 TCompare compare;
98 return compare(a, b);
99 }
100
101 inline bool
103 {
104 TCompare compare;
105 return compare(a, b) || Math::AlmostEquals(a, b);
106 }
107
108}; // end of class
109} // end namespace itk
110
111#ifndef ITK_MANUAL_INSTANTIATION
112# include "itkAnchorErodeDilateLine.hxx"
113#endif
114
115#endif
Function::MorphologyHistogram< InputImagePixelType, TFunction1 > HistogramType
void DoLine(std::vector< TInputPix > &buffer, std::vector< TInputPix > &inbuffer, unsigned int bufflength)
bool StrictCompare(const InputImagePixelType &a, const InputImagePixelType &b)
bool StartLine(std::vector< TInputPix > &buffer, std::vector< TInputPix > &inbuffer, InputImagePixelType &Extreme, int &outLeftP, int &outRightP, int &inLeftP, int &inRightP, int middle)
void FinishLine(std::vector< TInputPix > &buffer, std::vector< TInputPix > &inbuffer, InputImagePixelType &Extreme, int &outLeftP, int &outRightP, int &inLeftP, int &inRightP, int middle)
bool Compare(const InputImagePixelType &a, const InputImagePixelType &b)
void PrintSelf(std::ostream &os, Indent indent) const
Control indentation during Print() invocation.
Definition itkIndent.h:50
bool AlmostEquals(T1 x1, T2 x2)
Provide consistent equality checks between values of potentially different scalar or complex types.
Definition itkMath.h:681
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....