#include <itkContourDirectedMeanDistanceImageFilter.h>
Inheritance diagram for itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >:
ContourDirectedMeanDistanceImageFilter computes the distance 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. It identifies the point that is farthest from any point of and measures the distance from to the nearest neighbor in . Note that this function is not is not symmetric and hence is not a true distance.
In particular, this filter uses the SignedDanielssonDistanceMapImageFilter inside to compute distance map from all non-zero pixels in the second image. It then computes the mean distance (in pixels) within the boundary pixels of non-zero regions in the first image.
Use MeanDistanceImageFilter to compute the full Mean distance.
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.
MeanDistanceImageFilter
Definition at line 64 of file itkContourDirectedMeanDistanceImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 72 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 90 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 85 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 92 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 83 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Image related typedefs. Definition at line 81 of file itkContourDirectedMeanDistanceImageFilter.h. Referenced by itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >::GetInput1(), and itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >::SetInput1(). |
|
Definition at line 86 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 93 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 84 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 82 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 71 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Type to use form computations. Definition at line 100 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 88 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Standard Self typedef Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 69 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Definition at line 89 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. Definition at line 70 of file itkContourDirectedMeanDistanceImageFilter.h. |
|
|
|
Definition at line 121 of file itkContourDirectedMeanDistanceImageFilter.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? 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 hierachy. 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< TInputImage1, TInputImage1 >. |
|
Return the computed directed Mean distance. |
|
Get the first input. Definition at line 110 of file itkContourDirectedMeanDistanceImageFilter.h. References itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >::InputImage1Type. |
|
Get the second input. |
|
Runtime information support. Reimplemented from itk::ImageToImageFilter< TInputImage1, TInputImage1 >. |
|
Image related typedefs. |
|
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 103 of file itkContourDirectedMeanDistanceImageFilter.h. References itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >::InputImage1Type. |
|
Set the second input. |
|
Multi-thread version GenerateData. |