ITK
6.0.0
Insight Toolkit
|
#include <itkTestingHashImageFilter.h>
Generates a md5 hash string from an image.
Definition at line 65 of file itkTestingHashImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TImageType, TImageType > | |
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 () |
Private Attributes | |
HashFunctionEnum | m_HashFunction { HashFunctionEnum::MD5 } |
Additional Inherited Members | |
Static Public Attributes inherited from itk::InPlaceImageFilter< TImageType, TImageType > | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TImageType, TImageType > | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< TImageType > | |
static constexpr unsigned int | OutputImageDimension |
Protected Types inherited from itk::ImageToImageFilter< TImageType, TImageType > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TImageType > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
Static Protected Member Functions inherited from itk::ProcessObject | |
template<typename TSourceObject > | |
static void | MakeRequiredOutputs (TSourceObject &sourceObject, const DataObjectPointerArraySizeType numberOfRequiredOutputs) |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
Protected Attributes inherited from itk::ImageSource< TImageType > | |
bool | m_DynamicMultiThreading |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount {} |
using itk::Testing::HashImageFilter< TImageType >::ConstPointer = SmartPointer<const Self> |
Definition at line 74 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::DataObjectPointer = typename DataObject::Pointer |
Smart Pointer type to a DataObject.
Definition at line 85 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::DataObjectPointerArraySizeType = ProcessObject::DataObjectPointerArraySizeType |
Make a DataObject of the correct type to be used as the specified output.
Definition at line 110 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::HashFunctionEnum = HashImageFilterEnums::HashFunction |
Definition at line 115 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::HashObjectType = SimpleDataObjectDecorator<std::string> |
Type of DataObjects used for scalar outputs
Definition at line 88 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::Pointer = SmartPointer<Self> |
Definition at line 73 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::RegionType = typename TImageType::RegionType |
Definition at line 76 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::Self = HashImageFilter |
Standard Self type alias
Definition at line 71 of file itkTestingHashImageFilter.h.
using itk::Testing::HashImageFilter< TImageType >::Superclass = InPlaceImageFilter<TImageType, TImageType> |
Definition at line 72 of file itkTestingHashImageFilter.h.
|
protected |
|
overrideprotectedvirtual |
If an imaging filter needs to perform processing after all processing threads have completed, the filter can can provide an implementation for AfterThreadedGenerateData(). The execution flow in the default GenerateData() method will be: 1) Allocate the output buffer 2) Call BeforeThreadedGenerateData() 3) Spawn threads, calling ThreadedGenerateData() in each thread. 4) Call AfterThreadedGenerateData() Note that this flow of control is only available if a filter provides a ThreadedGenerateData() method and NOT a GenerateData() method.
Reimplemented from itk::ImageSource< TImageType >.
|
inlineoverrideprotected |
All work is done by AfterThreadedGenerateData().
Definition at line 141 of file itkTestingHashImageFilter.h.
|
overrideprotectedvirtual |
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.
|
inline |
Get the computed Hash values
Definition at line 92 of file itkTestingHashImageFilter.h.
|
virtual |
Set/Get The hash function type. Currently only MD5 is supported and this value is ignores.
|
inline |
Get the computed Hash values
Definition at line 97 of file itkTestingHashImageFilter.h.
References itk::ProcessObject::GetOutput().
|
inline |
Get the computed Hash values
Definition at line 102 of file itkTestingHashImageFilter.h.
References itk::ProcessObject::GetOutput().
|
overridevirtual |
Reimplemented from itk::ProcessObject.
|
overridevirtual |
Make a DataObject of the correct type to used as the specified output.
Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a itkSmartPointer to a DataObject. ImageSource and MeshSource override this method to create the correct type of image and mesh respectively. If a filter has multiple outputs of different types, then that filter must provide an implementation of MakeOutput().
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.
|
virtual |
Set/Get The hash function type. Currently only MD5 is supported and this value is ignores.
|
inlineoverrideprotected |
All work is done by AfterThreadedGenerateData().
Definition at line 138 of file itkTestingHashImageFilter.h.
|
private |
Definition at line 159 of file itkTestingHashImageFilter.h.