Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
Writes a 2D slice into a 3D image. More...
#include <mitkOverwriteDirectedPlaneImageFilter.h>
Public Member Functions | |
mitkClassMacro (OverwriteDirectedPlaneImageFilter, ImageToImageFilter) | |
Pointer | Clone () const |
const BaseGeometry * | GetPlaneGeometry3D () const |
Which plane to overwrite. More... | |
void | SetPlaneGeometry3D (const BaseGeometry *geometry) |
virtual void | SetTimeStep (unsigned int _arg) |
Time step of the slice to overwrite. More... | |
virtual unsigned int | GetTimeStep () const |
virtual void | SetCreateUndoInformation (bool _arg) |
Whether to create undo operation in the MITK undo stack. More... | |
virtual bool | GetCreateUndoInformation () const |
virtual void | SetSliceImage (Image *_arg) |
const Image * | GetSliceImage () |
const Image * | GetLastDifferenceImage () |
Public Member Functions inherited from mitk::ImageToImageFilter | |
virtual std::vector< std::string > | GetClassHierarchy () const override |
virtual const char * | GetClassName () const |
Pointer | Clone () const |
virtual void | SetInput (const InputImageType *image) |
virtual void | SetInput (unsigned int, const InputImageType *image) |
InputImageType * | GetInput (void) |
InputImageType * | GetInput (unsigned int idx) |
const InputImageType * | GetInput (void) const |
const InputImageType * | GetInput (unsigned int idx) const |
Public Member Functions inherited from mitk::ImageSource | |
Pointer | Clone () const |
OutputType * | GetOutput () |
Get the output data of this image source object. More... | |
const OutputType * | GetOutput () const |
OutputType * | GetOutput (DataObjectPointerArraySizeType idx) |
const OutputType * | GetOutput (DataObjectPointerArraySizeType idx) const |
virtual itk::DataObject::Pointer | MakeOutput (DataObjectPointerArraySizeType idx) override |
Make a DataObject of the correct type to used as the specified output. More... | |
virtual itk::DataObject::Pointer | MakeOutput (const DataObjectIdentifierType &name) override |
virtual vtkImageData * | GetVtkImageData () |
virtual const vtkImageData * | GetVtkImageData () const |
Public Member Functions inherited from mitk::BaseDataSource | |
OutputType * | GetOutput () |
const OutputType * | GetOutput () const |
OutputType * | GetOutput (DataObjectPointerArraySizeType idx) |
const OutputType * | GetOutput (DataObjectPointerArraySizeType idx) const |
virtual void | GraftOutput (OutputType *output) |
Graft the specified BaseData onto this BaseDataSource's output. More... | |
virtual void | GraftOutput (const DataObjectIdentifierType &key, OutputType *output) |
virtual void | GraftNthOutput (unsigned int idx, OutputType *output) |
Graft the specified base data object onto this BaseDataSource's idx'th output. More... | |
bool | Updating () const |
Access itk::ProcessObject::m_Updating. More... | |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from mitk::ImageToImageFilter | |
static const char * | GetStaticNameOfClass () |
static Pointer | New () |
Static Public Member Functions inherited from mitk::ImageSource | |
static const char * | GetStaticNameOfClass () |
static Pointer | New () |
Method for creation through the object factory. More... | |
Static Public Member Functions inherited from mitk::BaseDataSource | |
static const char * | GetStaticNameOfClass () |
Protected Member Functions | |
OverwriteDirectedPlaneImageFilter () | |
virtual | ~OverwriteDirectedPlaneImageFilter () |
virtual void | GenerateData () override |
A version of GenerateData() specific for image processing filters. More... | |
template<typename TPixel , unsigned int VImageDimension> | |
void | ItkSliceOverwriting (itk::Image< TPixel, VImageDimension > *input3D) |
template<typename TPixel , unsigned int VImageDimension> | |
void | ItkImageSwitch (itk::Image< TPixel, VImageDimension > *image) |
template<typename TPixel1 , unsigned int VImageDimension1, typename TPixel2 , unsigned int VImageDimension2> | |
void | ItkImageProcessing (itk::Image< TPixel1, VImageDimension1 > *itkImage1, itk::Image< TPixel2, VImageDimension2 > *itkImage2) |
Protected Member Functions inherited from mitk::ImageToImageFilter | |
ImageToImageFilter () | |
virtual | ~ImageToImageFilter () |
virtual void | PrintSelf (std::ostream &os, itk::Indent indent) const override |
virtual void | GenerateInputRequestedRegion () override |
Protected Member Functions inherited from mitk::ImageSource | |
ImageSource () | |
virtual | ~ImageSource () |
virtual void | ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, itk::ThreadIdType threadId) |
If an imaging filter can be implemented as a multithreaded algorithm, the filter will provide an implementation of ThreadedGenerateData(). More... | |
virtual void | PrepareOutputs () override |
This method is intentionally left blank. More... | |
virtual void | AllocateOutputs () |
The GenerateData method normally allocates the buffers for all of the outputs of a filter. More... | |
virtual void | BeforeThreadedGenerateData () |
If an imaging filter needs to perform processing after the buffer has been allocated but before threads are spawned, the filter can can provide an implementation for BeforeThreadedGenerateData(). More... | |
virtual void | AfterThreadedGenerateData () |
If an imaging filter needs to perform processing after all processing threads have completed, the filter can can provide an implementation for AfterThreadedGenerateData(). More... | |
virtual unsigned int | SplitRequestedRegion (unsigned int i, unsigned int num, OutputImageRegionType &splitRegion) |
Split the output's RequestedRegion into "num" pieces, returning region "i" as "splitRegion". More... | |
Protected Member Functions inherited from mitk::BaseDataSource | |
BaseDataSource () | |
virtual | ~BaseDataSource () |
Protected Attributes | |
Image::ConstPointer | m_SliceImage |
Image::Pointer | m_SliceDifferenceImage |
const BaseGeometry * | m_PlaneGeometry |
const BaseGeometry * | m_ImageGeometry3D |
unsigned int | m_TimeStep |
unsigned int | m_Dimension0 |
unsigned int | m_Dimension1 |
bool | m_CreateUndoInformation |
Writes a 2D slice into a 3D image.
There is a separate page describing the general design of QmitkInteractiveSegmentation: QmitkInteractiveSegmentationTechnicalPage
This class takes a 3D mitk::Image as input and tries to replace one slice in it with the second input image, which is specified by calling SetSliceImage with a 2D mitk::Image.
Two parameters determine which slice is replaced: the "slice dimension" is that one, which is constant for all points in the plane, e.g. axial would mean 2. The "slice index" is the slice index in the image direction you specified with "affected dimension". Indices count from zero.
This class works with all kind of image types, the only restrictions being that the input is 3D, and the slice image is 2D.
If requested by SetCreateUndoInformation(true), this class will create instances of ApplyDiffImageOperation for the undo stack. These operations will (on user request) be executed by DiffImageApplier to perform undo.
Last contributor:
Definition at line 62 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 31 of file mitkOverwriteDirectedPlaneImageFilter.cpp.
References MITK_WARN.
|
protectedvirtual |
Definition at line 42 of file mitkOverwriteDirectedPlaneImageFilter.cpp.
Pointer mitk::OverwriteDirectedPlaneImageFilter::Clone | ( | ) | const |
|
overrideprotectedvirtual |
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 ThreadedGenerateData(). 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 an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.
Reimplemented from mitk::ImageSource.
Definition at line 46 of file mitkOverwriteDirectedPlaneImageFilter.cpp.
References AccessFixedDimensionByItk, mitk::ImageToImageFilter::GetInput(), and mitk::ImageTimeSelector::New().
|
virtual |
|
inline |
Definition at line 90 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
inline |
Which plane to overwrite.
Definition at line 71 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
inline |
Definition at line 89 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
virtual |
|
protected |
|
protected |
|
protected |
Definition at line 127 of file mitkOverwriteDirectedPlaneImageFilter.cpp.
References mitk::CastToItkImage(), itk::Image, and mitk::New().
mitk::OverwriteDirectedPlaneImageFilter::mitkClassMacro | ( | OverwriteDirectedPlaneImageFilter | , |
ImageToImageFilter | |||
) |
|
static |
|
virtual |
Whether to create undo operation in the MITK undo stack.
|
inline |
Definition at line 75 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
virtual |
|
virtual |
Time step of the slice to overwrite.
|
protected |
Definition at line 118 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 115 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 116 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 113 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 112 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 110 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 109 of file mitkOverwriteDirectedPlaneImageFilter.h.
|
protected |
Definition at line 114 of file mitkOverwriteDirectedPlaneImageFilter.h.