|
| ExtractImageFilter () |
|
virtual | ~ExtractImageFilter () |
|
virtual void | GenerateOutputInformation () override |
|
virtual void | GenerateInputRequestedRegion () override |
|
virtual void | GenerateData () override |
| A version of GenerateData() specific for image processing filters. More...
|
|
template<typename TPixel , unsigned int VImageDimension> |
void | ItkImageProcessing (const itk::Image< TPixel, VImageDimension > *image) |
|
| ImageToImageFilter () |
|
virtual | ~ImageToImageFilter () |
|
virtual void | PrintSelf (std::ostream &os, itk::Indent indent) const override |
|
| 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...
|
|
| BaseDataSource () |
|
virtual | ~BaseDataSource () |
|
Extracts a 2D slice from a 3D image.
- Deprecated:
- This class is deprecated. Use mitk::ExtractSliceFilter instead.
- See also
- ExtractSliceFilter
- See also
- SegTool2D
-
OverwriteSliceImageFilter
There is a separate page describing the general design of QmitkInteractiveSegmentation: Technical design of QmitkSegmentation
This class takes a 3D mitk::Image as input and tries to extract one slice from it.
Two parameters determine which slice is extracted: 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.
Output will not be set if there was a problem extracting the desired slice.
Last contributor: $Author$
Definition at line 54 of file mitkExtractImageFilter.h.
void mitk::ExtractImageFilter::GenerateData |
( |
| ) |
|
|
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.
- See also
- ThreadedGenerateData()
Reimplemented from mitk::ImageSource.
Definition at line 37 of file mitkExtractImageFilter.cpp.
References AccessFixedDimensionByItk, mitk::PlaneGeometry::Axial, mitk::PlaneGeometry::Frontal, mitk::BaseData::GetGeometry(), mitk::ImageToImageFilter::GetInput(), mitk::ImageSource::GetOutput(), MITK_ERROR, mitk::ImageTimeSelector::New(), mitk::PlaneGeometry::New(), and mitk::PlaneGeometry::Sagittal.
void mitk::ExtractImageFilter::GenerateInputRequestedRegion |
( |
| ) |
|
|
overrideprotectedvirtual |
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 this 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.
- See also
- ProcessObject::GenerateInputRequestedRegion(), ImageSource::GenerateInputRequestedRegion()
Reimplemented from mitk::ImageToImageFilter.
Definition at line 168 of file mitkExtractImageFilter.cpp.