ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAnchorOpenCloseLine.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 itkAnchorOpenCloseLine_h
19#define itkAnchorOpenCloseLine_h
20
22#include "itkIndent.h"
23
24// #define RAWHIST
25
26namespace itk
27{
35template <typename TInputPix, typename TCompare>
36class ITK_TEMPLATE_EXPORT AnchorOpenCloseLine
37{
38public:
41 using InputImagePixelType = TInputPix;
45 void
46 PrintSelf(std::ostream & os, Indent indent) const;
47
50 void
51 DoLine(std::vector<InputImagePixelType> & buffer, unsigned int bufflength);
52
53 void
54 SetSize(unsigned int size)
55 {
56 m_Size = size;
57 }
58
59private:
60 unsigned int m_Size;
61
63
64 bool
65 StartLine(std::vector<InputImagePixelType> & buffer,
66 InputImagePixelType & Extreme,
67 unsigned int & outLeftP,
68 unsigned int & outRightP);
69
70 void
71 FinishLine(std::vector<InputImagePixelType> & buffer,
72 InputImagePixelType & Extreme,
73 unsigned int & outLeftP,
74 unsigned int & outRightP);
75
76 inline bool
78 {
79 TCompare compare;
80 return !compare(a, b);
81 }
82
83 inline bool
85 {
86 TCompare compare;
87 return compare(a, b) || a == b;
88 }
89
90}; // end of class
91} // end namespace itk
92
93#ifndef ITK_MANUAL_INSTANTIATION
94# include "itkAnchorOpenCloseLine.hxx"
95#endif
96
97#endif
Function::MorphologyHistogram< InputImagePixelType, TCompare1 > HistogramType
bool Compare2(const InputImagePixelType &a, const InputImagePixelType &b)
void DoLine(std::vector< InputImagePixelType > &buffer, unsigned int bufflength)
bool Compare1(const InputImagePixelType &a, const InputImagePixelType &b)
void SetSize(unsigned int size)
void PrintSelf(std::ostream &os, Indent indent) const
void FinishLine(std::vector< InputImagePixelType > &buffer, InputImagePixelType &Extreme, unsigned int &outLeftP, unsigned int &outRightP)
bool StartLine(std::vector< InputImagePixelType > &buffer, InputImagePixelType &Extreme, unsigned int &outLeftP, unsigned int &outRightP)
Control indentation during Print() invocation.
Definition itkIndent.h:50
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....