ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkLabelSelectionImageAdaptor.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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 itkLabelSelectionImageAdaptor_h
19 #define itkLabelSelectionImageAdaptor_h
20 
22 
23 namespace itk
24 {
35 template< class TImage, class TOutputPixelType >
36 class ITK_EXPORT LabelSelectionImageAdaptor:public
37  ImageAdaptor< TImage,
38  Accessor::LabelSelectionPixelAccessor<
39  typename TImage::PixelType,
40  TOutputPixelType > >
41 {
42 public:
46  typename TImage::PixelType,
47  TOutputPixelType > > Superclass;
48 
51 
53  itkNewMacro(Self);
54 
57 
58  void SetAcceptedValue(typename TImage::PixelType value) {
59  this->GetPixelAccessor().SetAcceptedValue(value);
60  }
61 
62 protected:
65 
66 private:
67  LabelSelectionImageAdaptor(const Self &); //purposely not implemented
68  void operator=(const Self &); //purposely not implemented
69 };
70 } // end namespace itk
71 
72 #endif
ImageAdaptor< TImage, Accessor::LabelSelectionPixelAccessor< typename TImage::PixelType, TOutputPixelType > > Superclass
Presents a label image as a binary image of one label.
Give access to partial aspects of voxels from an Image.
void SetAcceptedValue(typename TImage::PixelType value)
Base class for all data objects in ITK.
Return a binary mask of the selected label.