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, Image< IdentifierType, TInputImage::ImageDimension > > | |
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, Image< IdentifierType, TInputImage::ImageDimension > > | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< Image< IdentifierType, TInputImage::ImageDimension > > | |
static constexpr unsigned int | OutputImageDimension |
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::ProcessObject.
|
overridevirtual |
What is the input requested region that is required to produce the output requested region? By default, the largest possible region is always required but this is overridden in many subclasses. For instance, for an image processing filter where an output pixel is a simple function of an input pixel, the input requested region will be set to the output requested region. For an image processing filter where an output pixel is a function of the pixels in a neighborhood of an input pixel, then the input requested region will need to be larger than the output requested region (to avoid introducing artificial boundary conditions). This function should never request an input region that is outside the the input largest possible region (i.e. implementations of this method should crop the input requested region at the boundaries of the input largest possible region).
Reimplemented from itk::ProcessObject.
|
overridevirtual |
Reimplemented from itk::ProcessObject.
|
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::ProcessObject.
|
staticconstexpr |
Number of dimensions.
Definition at line 51 of file itkTobogganImageFilter.h.