/usr/include/InsightToolkit/Algorithms/itkWatershedRelabeler.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkWatershedRelabeler.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkWatershedRelabeler_h
#define __itkWatershedRelabeler_h
#include "itkEquivalencyTable.h"
#include "itkWatershedSegmentTree.h"
#include "itkWatershedSegmenter.h"
#include "itkImage.h"
namespace itk
{
namespace watershed
{
/** \class Relabeler
*
* This filter implements the final step in the watershed segmentation
* algorithm. It is responsible for relabeling a segmented image according to
* a specified saliency level (flood level) in a merge tree. (See
* itk::WatershedImageFilter for information on terminology used in this
* documentation.)
*
* \par Inputs
* There are two inputs to this filter. The first input is a labeled image of
* unsigned long integers, such as is produced by itk::watershed::Segmenter.
* The second input is an itk::watershed::SegmentTree, which is the merge tree
* data structure produced by the itk::watershed::SegmentTreeGenerator
* filter. The merge tree represents the hierarchy of merges among adjacent
* segments in the initial segmentation image.
*
* \par Output
* The output of this filter is a relabeled image of unsigned long integers of
* dimension and size matching the input.
*
* \par Parameters
* There is a single parameter FloodLevel for this filter. FloodLevel is
* given in percentage points (0.0 - 1.0) of the maximum saliency found in the
* merge tree. A FloodLevel of 0.0 will produce an output in which no
* segments are relabeled (merged). A FloodLevel of 1.0 will produce an
* output in which all the entries in the merge tree are used to relabel the
* image. FloodLevel controls which level in the segmentation hierarchy to
* produce on the output.
*
* \ingroup WatershedSegmentation
* \sa itk::WatershedImageFilter
* \sa itk::EquivalencyTable
* \sa itk::watershed::SegmentTree */
template <class TScalarType, unsigned int TImageDimension>
class ITK_EXPORT Relabeler
: public ProcessObject
{
public:
/** Define smart pointers for this object */
typedef Relabeler Self;
typedef ProcessObject Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
itkNewMacro(Self);
itkTypeMacro(WatershedRelabeler, ProcessObject);
/** Expose the ImageDimension template parameter at run time */
itkStaticConstMacro(ImageDimension, unsigned int,TImageDimension);
/** Some convenient typedefs */
typedef TScalarType ScalarType;
typedef Image<unsigned long, TImageDimension> ImageType;
typedef SegmentTree<ScalarType> SegmentTreeType;
typedef Segmenter<Image<ScalarType, TImageDimension> > SegmenterType;
typedef DataObject::Pointer DataObjectPointer;
/** Standard itk::ProcessObject subclass method. */
virtual DataObjectPointer MakeOutput(unsigned int idx);
/** Set/Get the input image */
void SetInputImage(ImageType *img)
{
this->ProcessObject::SetNthInput(0, img);
}
ImageType * GetInputImage(void)
{
return static_cast<ImageType *>
(this->ProcessObject::GetInput(0) );
}
/** Set/Get the output image */
void SetOutputImage(ImageType * img)
{
this->ProcessObject::SetNthOutput(0,img);
}
ImageType * GetOutputImage(void)
{
return static_cast<ImageType *>
(this->ProcessObject::GetOutput(0) );
}
/** Set/Get the input tree that defines segment merges */
void SetInputSegmentTree(SegmentTreeType *et)
{
this->ProcessObject::SetNthInput(1, et);
}
SegmentTreeType * GetInputSegmentTree(void)
{
return static_cast<SegmentTreeType *>
(this->ProcessObject::GetInput(1));
}
/** Standard non-threaded pipeline method */
void GenerateData();
/** Set/Get the percentage of the maximum saliency level
* to merge to. */
itkSetClampMacro(FloodLevel, double, 0.0, 1.0);
itkGetConstMacro(FloodLevel, double);
/** Standard ProcessObject method used in implementing mini-pipelines */
void GraftOutput(ImageType *graft);
void GraftNthOutput(unsigned int idx, ImageType *graft);
protected:
Relabeler();
virtual ~Relabeler() {}
Relabeler(const Self&) {}
void operator=(const Self&) {}
void PrintSelf(std::ostream& os, Indent indent) const;
double m_FloodLevel;
void GenerateOutputRequestedRegion(DataObject *output);
void GenerateInputRequestedRegion();
};
}// end namespace watershed
}// end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkWatershedRelabeler.txx"
#endif
#endif
|