ITK
6.0.0
Insight Toolkit
|
#include <itkTobogganImageFilter.h>
toboggan image segmentation The Toboggan segmentation takes a gradient magnitude image as input and produces an (over-)segmentation of the image based on connecting each pixel to a local minimum of gradient. It is roughly equivalent to a watershed segmentation of the lowest level.
The output is a 4 connected labeled map of the image.
Definition at line 39 of file itkTobogganImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static double | GetGlobalDefaultCoordinateTolerance () |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static void | SetGlobalDefaultDirectionTolerance (double) |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | NDimensions = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
using itk::TobogganImageFilter< TInputImage, TOutputImage >::IndexType = typename InputImageType::IndexType |
Definition at line 71 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::InputImageConstPointer = typename InputImageType::ConstPointer |
Definition at line 73 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::InputImagePixelType = typename InputImageType::PixelType |
Input image pixel type.
Definition at line 60 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 72 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
The type of input image.
Definition at line 48 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::NeighborhoodIteratorType = ConstNeighborhoodIterator<Image<float, 2> > |
Neighborhood iterator type
Definition at line 102 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::OutputImagePixelType = typename OutputImageType::PixelType |
Output image pixel type.
Definition at line 57 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 74 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
The type of output image.
Definition at line 54 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Smart pointer type alias support
Definition at line 83 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::RegionType = typename InputImageType::RegionType |
Other convenient type alias
Definition at line 69 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::ScalarType = typename InputImageType::PixelType |
Typedef support for the input image scalar value type.
Definition at line 80 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::Self = TobogganImageFilter |
Standard "Self" type alias.
Definition at line 45 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::SizeType = typename InputImageType::SizeType |
Definition at line 70 of file itkTobogganImageFilter.h.
using itk::TobogganImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<InputImageType, OutputImageType> |
Standard super class type alias support
Definition at line 77 of file itkTobogganImageFilter.h.
anonymous enum |
Dimension of the input and output images.
Enumerator | |
---|---|
ImageDimension |
Definition at line 63 of file itkTobogganImageFilter.h.
|
protecteddefault |
|
overrideprotecteddefault |
|
overridevirtual |
Give the process object a chance to indicate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region.
Reimplemented from itk::ProcessObject.
|
overridevirtual |
Standard process object method. This filter is not multithreaded.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overridevirtual |
What is the input requested region that is required to produce the output requested region? The base assumption for image processing filters is that the input requested region can be set to match the output requested region. If a filter requires more input (for instance a filter that uses neighborhoods needs more input than output to avoid introducing artificial boundary conditions) or less input (for instance a magnify filter) will have to override this method. In doing so, it should call its superclass' implementation as its first step. Note that imaging filters operate differently than the classes to this point in the class hierarchy. Up till now, the base assumption has been that the largest possible region will be requested of the input.
This implementation of GenerateInputRequestedRegion() only processes the inputs that are a subclass of the ImageBase<InputImageDimension>. If an input is another type of DataObject (including an Image of a different dimension), they are skipped by this method. The subclasses of ImageToImageFilter are responsible for providing an implementation of GenerateInputRequestedRegion() when there are multiple inputs of different types.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
overridevirtual |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
staticconstexpr |
Number of dimensions.
Definition at line 51 of file itkTobogganImageFilter.h.