Loading [MathJax]/extensions/tex2jax.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkShapePositionLabelMapFilter.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 itkShapePositionLabelMapFilter_h
19#define itkShapePositionLabelMapFilter_h
20
22
23namespace itk
24{
38template <typename TImage>
39class ITK_TEMPLATE_EXPORT ShapePositionLabelMapFilter : public InPlaceLabelMapFilter<TImage>
40{
41public:
42 ITK_DISALLOW_COPY_AND_MOVE(ShapePositionLabelMapFilter);
43
49
51 using ImageType = TImage;
52 using ImagePointer = typename ImageType::Pointer;
53 using ImageConstPointer = typename ImageType::ConstPointer;
54 using PixelType = typename ImageType::PixelType;
55 using IndexType = typename ImageType::IndexType;
56 using LabelObjectType = typename ImageType::LabelObjectType;
57
58 using AttributeType = typename LabelObjectType::AttributeType;
59
61 static constexpr unsigned int ImageDimension = TImage::ImageDimension;
62
64 itkNewMacro(Self);
65
67 itkOverrideGetNameOfClassMacro(ShapePositionLabelMapFilter);
68
69 /* itkConceptMacro(InputEqualityComparableCheck,
70 (Concept::EqualityComparable<InputImagePixelType>));
71 itkConceptMacro(IntConvertibleToInputCheck,
72 (Concept::Convertible<int, InputImagePixelType>));
73 itkConceptMacro(InputOStreamWritableCheck,
74 (Concept::OStreamWritable<InputImagePixelType>));*/
75
81 itkGetConstMacro(Attribute, AttributeType);
82 itkSetMacro(Attribute, AttributeType);
83 void
84 SetAttribute(const std::string & s)
85 {
86 this->SetAttribute(LabelObjectType::GetAttributeFromName(s));
87 }
88
89protected:
91 ~ShapePositionLabelMapFilter() override = default;
92
93 void
95
96 template <typename TAttributeAccessor>
97 void
98 TemplatedThreadedProcessLabelObject(const TAttributeAccessor & accessor, bool physical, LabelObjectType * labelObject)
99 {
100 using AttributeValueType = typename TAttributeAccessor::AttributeValueType;
101 AttributeValueType position = accessor(labelObject);
102 // change it to an index position if it is physical
103 IndexType idx;
104 if (physical)
105 {
106 using CoordinateType = double;
108 // copy the position to a point, required by TransformPhysicalPointToIndex
109 for (unsigned int i = 0; i < ImageDimension; ++i)
110 {
111 // FIXME: This is a bug. The cast should be as in the following line
112 // where CoordinateType is used as the type to cast to. We are temporarily
113 // keeping this original line here to avoid confusing the patch for 64 bits.
114 point[i] = static_cast<OffsetValueType>(position[i]); // FIXME: use next line instead.
115 // point[i] = static_cast<CoordinateType>( position[i] );
116 }
117 idx = this->GetOutput()->TransformPhysicalPointToIndex(point);
118 }
119 else
120 {
121 // copy the position to the index, to avoid warnings
122 for (unsigned int i = 0; i < ImageDimension; ++i)
123 {
124 idx[i] = static_cast<IndexValueType>(position[i]);
125 }
126 }
127 // clear the label object
128 labelObject->Clear();
129 // and mark only the pixel we are interested in
130 labelObject->AddIndex(idx);
131 }
132
133 void
134 PrintSelf(std::ostream & os, Indent indent) const override;
135
137}; // end of class
138
139} // end namespace itk
140
141#ifndef ITK_MANUAL_INSTANTIATION
142# include "itkShapePositionLabelMapFilter.hxx"
143#endif
144
145#endif
OutputImageType * GetOutput()
Control indentation during Print() invocation.
Definition itkIndent.h:50
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
InPlaceLabelMapFilter< TImage > Superclass
typename ImageType::LabelObjectType LabelObjectType
typename ImageType::ConstPointer ImageConstPointer
void TemplatedThreadedProcessLabelObject(const TAttributeAccessor &accessor, bool physical, LabelObjectType *labelObject)
~ShapePositionLabelMapFilter() override=default
virtual void SetAttribute(AttributeType _arg)
typename LabelObjectType::AttributeType AttributeType
void PrintSelf(std::ostream &os, Indent indent) const override
void ThreadedProcessLabelObject(LabelObjectType *labelObject) override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
long OffsetValueType
Definition itkIntTypes.h:97
long IndexValueType
Definition itkIntTypes.h:93