#include <itkPipelineMonitorImageFilter.h>
Enables monitoring, recording and debugging of the pipeline execution and information exchange.
This filter is useful for testing, debugging, and understanding the pipeline. When DebugOn is enabled and compiled in Debug mode, many itkDebug messages are printed. This filter also features, several Verify methods which check the recorded information, for certain conditions, which should occur when well behaved filters are executed.
There are two meta verify methods that should primarily be used depending on the expected capabilities of the pipeline:
During the pipeline execution this filter records a variety of information to aid if verifying correct pipeline behavior:
The following are recorded from the input image after the input's output information is generated:
This filter always runs in-place so it has no per-pixel overhead.
Definition at line 68 of file itkPipelineMonitorImageFilter.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 () |
Private Attributes | |
bool | m_ClearPipelineOnGenerateOutputInformation {} |
RegionVectorType | m_InputRequestedRegions {} |
unsigned int | m_NumberOfClearPipeline {} |
unsigned int | m_NumberOfUpdates {} |
RegionVectorType | m_OutputRequestedRegions {} |
RegionVectorType | m_UpdatedBufferedRegions {} |
DirectionType | m_UpdatedOutputDirection {} |
ImageRegionType | m_UpdatedOutputLargestPossibleRegion {} |
PointType | m_UpdatedOutputOrigin {} |
SpacingType | m_UpdatedOutputSpacing {} |
RegionVectorType | m_UpdatedRequestedRegions {} |
Additional Inherited Members | |
![]() | |
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 = TOutputImage::ImageDimension |
![]() | |
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 { true } |
![]() | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
using itk::PipelineMonitorImageFilter< TImageType >::ConstPointer = SmartPointer<const Self> |
Definition at line 76 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::DirectionType = typename TImageType::DirectionType |
Definition at line 79 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::ImageRegionType = typename Superclass::InputImageRegionType |
Definition at line 83 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::InputImageConstPointer = typename TImageType::ConstPointer |
Definition at line 82 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::InputImagePointer = typename TImageType::Pointer |
Definition at line 81 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::Pointer = SmartPointer<Self> |
Definition at line 75 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::PointType = typename TImageType::PointType |
Definition at line 78 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::RegionVectorType = std::vector<typename TImageType::RegionType> |
Definition at line 85 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::Self = PipelineMonitorImageFilter |
Definition at line 73 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::SpacingType = typename TImageType::SpacingType |
Definition at line 80 of file itkPipelineMonitorImageFilter.h.
using itk::PipelineMonitorImageFilter< TImageType >::Superclass = ImageToImageFilter<TImageType, TImageType> |
Definition at line 74 of file itkPipelineMonitorImageFilter.h.
|
protected |
Referenced by GetNameOfClass().
|
virtual |
|
virtual |
void itk::PipelineMonitorImageFilter< TImageType >::ClearPipelineSavedInformation | ( | ) |
Clears all saved pipeline information, but increments NumberOfClearPipeline.
|
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::Object.
|
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 |
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling DynamicThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter can be threaded, it should NOT provide a GenerateData() method but should provide a DynamicThreadedGenerateData() instead.
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< TImageType, TImageType >.
|
overridevirtual |
Standard pipeline methods are overloaded to call superclass's implementation and record information.
Reimplemented from itk::ProcessObject.
|
virtual |
|
inline |
Definition at line 172 of file itkPipelineMonitorImageFilter.h.
References m_InputRequestedRegions.
|
overridevirtual |
Reimplemented from itk::ImageToImageFilter< TImageType, TImageType >.
References PipelineMonitorImageFilter().
|
inline |
Definition at line 162 of file itkPipelineMonitorImageFilter.h.
References m_NumberOfUpdates.
|
inline |
Definition at line 167 of file itkPipelineMonitorImageFilter.h.
References m_OutputRequestedRegions.
|
inline |
Definition at line 177 of file itkPipelineMonitorImageFilter.h.
References m_UpdatedBufferedRegions.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
inline |
Definition at line 182 of file itkPipelineMonitorImageFilter.h.
References m_UpdatedRequestedRegions.
|
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< TImageType, TImageType >.
|
overridevirtual |
Send the requested region information back up the pipeline (to the filters that precede this one).
Reimplemented from itk::ProcessObject.
|
virtual |
Enable/Disable clearing all saved pipeline information when GenerateOutputInformation is called.
The NumberOfClearPipelines is incremented, to aid in detection of certain pipeline errors caused but excessive execution of GenerateOutputInformation.
Defaults to On
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyAllInputCanNotStream | ( | ) |
Checks that the input filter didn't stream, and just updated the largest possible region along with other correct behaviors.
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyAllInputCanStream | ( | int | expectedNumber | ) |
This a meta verify method to check expected pipeline execution when the pipeline is capable of streaming. See VerifyInputFilterExecutedStreaming for information on the expectedNumber parameter.
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyAllNoUpdate | ( | ) |
This method verifies that propagation was executed yet no updating was needed.
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyDownStreamFilterExecutedPropagation | ( | ) |
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyInputFilterBufferedRequestedRegions | ( | ) |
Verifies that the input filter buffered the requested region
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyInputFilterExecutedStreaming | ( | int | expectedNumber | ) |
Verifies the GenerateData executed the expected number of times.
If expectedNumber is positive then the number of updates must match. If expectedNumber is negative then the number of updates must at least be |expectedNumber|. If expectedNumber is zero, then this method always returns true, and no verification is performed.
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyInputFilterMatchedRequestedRegions | ( | ) |
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyInputFilterMatchedUpdateOutputInformation | ( | ) |
Verifies that the output information didn't change between the GenerateOutputInformation and the UpdateData phases of the pipeline.
bool itk::PipelineMonitorImageFilter< TImageType >::VerifyInputFilterRequestedLargestRegion | ( | ) |
|
private |
Definition at line 221 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 228 of file itkPipelineMonitorImageFilter.h.
Referenced by GetInputRequestedRegions().
|
private |
Definition at line 225 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 223 of file itkPipelineMonitorImageFilter.h.
Referenced by GetNumberOfUpdates().
|
private |
Definition at line 227 of file itkPipelineMonitorImageFilter.h.
Referenced by GetOutputRequestedRegions().
|
private |
Definition at line 229 of file itkPipelineMonitorImageFilter.h.
Referenced by GetUpdatedBufferedRegions().
|
private |
Definition at line 233 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 235 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 232 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 234 of file itkPipelineMonitorImageFilter.h.
|
private |
Definition at line 230 of file itkPipelineMonitorImageFilter.h.
Referenced by GetUpdatedRequestedRegions().