#include <itkLabelVotingImageFilter.h>
This filter performs pixelwise voting among an arbitrary number of input images, where each of them represents a segmentation of the same scene (i.e., image).
Label voting is a simple method of classifier combination applied to image segmentation. Typically, the accuracy of the combined segmentation exceeds the accuracy of any of the input segmentations. Voting is therefore commonly used as a way of boosting segmentation performance.
The use of label voting for combination of multiple segmentations is described in [100].
Input volumes must all contain the same size RequestedRegions. Not all input images must contain all possible labels, but all label values must have the same meaning in all images.
By default, the label used for undecided pixels is the maximum label value used in the input images plus one. Since it is possible for an image with 8 bit pixel values to use all 256 possible label values, it is permissible to combine 8 bit (i.e., byte) images into a 16 bit (i.e., short) output image.
Definition at line 73 of file itkLabelVotingImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
![]() | |
static double | GetGlobalDefaultCoordinateTolerance () |
static double | GetGlobalDefaultCoordinateTolerance () |
static double | GetGlobalDefaultDirectionTolerance () |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static void | SetGlobalDefaultDirectionTolerance (double) |
static void | SetGlobalDefaultDirectionTolerance (double) |
![]() | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
![]() | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = TOutputImage::ImageDimension |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
![]() | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
static constexpr unsigned int | OutputImageDimension |
![]() | |
static constexpr unsigned int | OutputImageDimension |
Private Attributes | |
bool | m_HasLabelForUndecidedPixels { false } |
OutputPixelType | m_LabelForUndecidedPixels {} |
vcl_size_t | m_TotalLabelCount { 0 } |
Additional Inherited Members | |
![]() | |
using | InputToOutputRegionCopierType |
using | OutputToInputRegionCopierType |
![]() | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
![]() | |
template<typename TSourceObject> | |
static void | MakeRequiredOutputs (TSourceObject &sourceObject, const DataObjectPointerArraySizeType numberOfRequiredOutputs) |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
![]() | |
bool | m_DynamicMultiThreading |
![]() | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 82 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename InputImageType::ConstPointer |
Definition at line 103 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Image type alias support
Definition at line 101 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::InputPixelType = typename TInputImage::PixelType |
Definition at line 93 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::LabelCountType = unsigned long |
Definition at line 106 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 104 of file itkLabelVotingImageFilter.h.
using itk::ImageSource< TOutputImage >::OutputImageRegionType |
Definition at line 125 of file itkImageSource.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 102 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::OutputPixelType = typename TOutputImage::PixelType |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 92 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 81 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::Self = LabelVotingImageFilter |
Standard class type aliases.
Definition at line 79 of file itkLabelVotingImageFilter.h.
using itk::LabelVotingImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<TInputImage, TOutputImage> |
Definition at line 80 of file itkLabelVotingImageFilter.h.
|
protected |
Referenced by GetNameOfClass().
|
overrideprotecteddefault |
|
overrideprotectedvirtual |
Determine maximum label value in all input images and initialize global data.
Reimplemented from itk::ImageSource< TInputImage >.
|
protected |
Determine maximum value among all input images' pixels.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::LightObject.
|
overrideprotectedvirtual |
If an imaging filter can be implemented as a multithreaded algorithm, the filter will provide an implementation of ThreadedGenerateData() or DynamicThreadedGenerateData(). This superclass will automatically split the output image into a number of pieces, spawn multiple threads, and call (Dynamic)ThreadedGenerateData() in each thread. Prior to spawning threads, the BeforeThreadedGenerateData() method is called. After all the threads have completed, the AfterThreadedGenerateData() method is called. If an image processing filter cannot support threading, that filter should provide an implementation of the GenerateData() method instead of providing an implementation of (Dynamic)ThreadedGenerateData(). If a filter provides a GenerateData() method as its implementation, then the filter is responsible for allocating the output data. If a filter provides a (Dynamic)ThreadedGenerateData() method as its implementation, then the output memory will allocated automatically by this superclass. The (Dynamic)ThreadedGenerateData() method should only produce the output specified by "outputThreadRegion" parameter. (Dynamic)ThreadedGenerateData() cannot write to any other portion of the output image (as this is responsibility of a different thread).
DynamicThreadedGenerateData() is the newer variant without threadId, and is the preferred signature, which is called by default. This variant can split the requested region into different number of pieces depending on current multi-processing load, which allows better load balancing. The non-dynamic (also known as classic) ThreadedGenerateData() signature has threadId, and number of pieces to be split into is known in advance. It is activated by calling this->DynamicMultiThreadingOff(); in derived class constructor. It should be used when the multi-threaded algorithm needs to pre-allocate some data structure with size dependent on the number of pieces (also known as chunks, work units, and sometimes also incorrectly as threads). Only PlatformMultiThreader guarantees that each piece will be processed in its own specific thread. Pool and TBB multi-threaders maintain a pool of threads (normally equal to number of processing cores) which they use to process the pieces. This normally results in a single thread being reused to process multiple work units.
Reimplemented from itk::ImageSource< TInputImage >.
|
inline |
Get label value used for undecided pixels. After updating the filter, this function returns the actual label value used for undecided pixels in the current output. Note that this value is overwritten when SetLabelForUndecidedPixels is called and the new value only becomes effective upon the next filter update.
Definition at line 127 of file itkLabelVotingImageFilter.h.
References m_LabelForUndecidedPixels.
|
overridevirtual |
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
References LabelVotingImageFilter().
|
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, TInputImage >.
|
inline |
Set label value for undecided pixels.
Definition at line 113 of file itkLabelVotingImageFilter.h.
References m_HasLabelForUndecidedPixels, m_LabelForUndecidedPixels, and itk::Object::Modified().
|
inline |
Unset label value for undecided pixels and turn on automatic selection.
Definition at line 135 of file itkLabelVotingImageFilter.h.
References m_HasLabelForUndecidedPixels, and itk::Object::Modified().
|
staticconstexpr |
Definition at line 98 of file itkLabelVotingImageFilter.h.
|
staticconstexpr |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 97 of file itkLabelVotingImageFilter.h.
|
private |
Definition at line 175 of file itkLabelVotingImageFilter.h.
Referenced by SetLabelForUndecidedPixels(), and UnsetLabelForUndecidedPixels().
|
private |
Definition at line 174 of file itkLabelVotingImageFilter.h.
Referenced by GetLabelForUndecidedPixels(), and SetLabelForUndecidedPixels().
|
private |
Definition at line 176 of file itkLabelVotingImageFilter.h.