#include <itkSimilarityIndexImageFilter.h>
Inheritance diagram for itk::SimilarityIndexImageFilter:
Public Types | |
typedef SimilarityIndexImageFilter | Self |
typedef ImageToImageFilter< TInputImage1, TInputImage1 > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage1 | InputImage1Type |
typedef TInputImage2 | InputImage2Type |
typedef TInputImage1::Pointer | InputImage1Pointer |
typedef TInputImage2::Pointer | InputImage2Pointer |
typedef TInputImage1::ConstPointer | InputImage1ConstPointer |
typedef TInputImage2::ConstPointer | InputImage2ConstPointer |
typedef TInputImage1::RegionType | RegionType |
typedef TInputImage1::SizeType | SizeType |
typedef TInputImage1::IndexType | IndexType |
typedef TInputImage1::PixelType | InputImage1PixelType |
typedef TInputImage2::PixelType | InputImage2PixelType |
typedef NumericTraits< InputImage1PixelType >::RealType | RealType |
Public Methods | |
virtual const char * | GetClassName () const |
itkStaticConstMacro (ImageDimension, unsigned int, TInputImage1::ImageDimension) | |
void | SetInput1 (const InputImage1Type *image) |
void | SetInput2 (const InputImage2Type *image) |
const InputImage1Type * | GetInput1 (void) |
const InputImage2Type * | GetInput2 (void) |
virtual RealType | GetSimilarityIndex () |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
SimilarityIndexImageFilter () | |
~SimilarityIndexImageFilter () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | AllocateOutputs () |
void | BeforeThreadedGenerateData () |
void | AfterThreadedGenerateData () |
void | ThreadedGenerateData (const RegionType &outputRegionForThread, int threadId) |
void | GenerateInputRequestedRegion () |
void | EnlargeOutputRequestedRegion (DataObject *data) |
SimilarityIndexImageFilter measures the similarity between the set non-zero pixels of two images using the following formula:
where and are respectively the set of non-zero pixels in the first and second input images. Operator represents the size of a set and represents the intersection of two sets.
The measure is derived from a reliability measure known as the kappa statistic. is sensitive to both differences in size and in location and have been in the literature for comparing two segmentation masks. For more information see: "Morphometric Analysis of White Matter Lesions in MR Images: Method and Validation", A. P. Zijdenbos, B. M. Dawant, R. A. Margolin and A. C. Palmer, IEEE Trans. on Medical Imaging, 13(4) pp 716-724,1994
This filter requires the largest possible region of the first image and the same corresponding region in the second image. It behaves as filter with two input and one output. Thus it can be inserted in a pipeline with other filters. The filter passes the first input through unmodified.
This filter is templated over the two input image type. It assume both image have the same number of dimensions.
Definition at line 58 of file itkSimilarityIndexImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 66 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 84 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 79 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 86 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 77 of file itkSimilarityIndexImageFilter.h. |
|
Image related typedefs. Definition at line 75 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 80 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 87 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 78 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 76 of file itkSimilarityIndexImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 65 of file itkSimilarityIndexImageFilter.h. |
|
Type to use form computations. Definition at line 94 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 82 of file itkSimilarityIndexImageFilter.h. |
|
Standard Self typedef Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 63 of file itkSimilarityIndexImageFilter.h. |
|
Definition at line 83 of file itkSimilarityIndexImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 64 of file itkSimilarityIndexImageFilter.h. |
|
|
|
Definition at line 115 of file itkSimilarityIndexImageFilter.h. |
|
Do final mean and variance computation from data accumulated in threads. Reimplemented from itk::ImageSource< TInputImage1 >. |
|
Pass the input through unmodified. Do this by Grafting in the AllocateOutputs method. Reimplemented from itk::ImageSource< TInputImage1 >. |
|
Initialize some accumulators before the threads run. Reimplemented from itk::ImageSource< TInputImage1 >. |
|
Give the process object a chance to indictate 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. |
|
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::ImageToImageFilter< TInputImage1, TInputImage1 >. |
|
Runtime information support. Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. |
|
Get the first input. Definition at line 104 of file itkSimilarityIndexImageFilter.h. |
|
Get the secong input. |
|
Return the computed similarity index. |
|
Image related typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. |
|
Method for creation through the object factory. Reimplemented from itk::Object. |
|
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< TInputImage1, TInputImage1 >. |
|
Set the first input. Definition at line 97 of file itkSimilarityIndexImageFilter.h. |
|
Set the second input. |
|
Multi-thread version GenerateData. |