-
-
Notifications
You must be signed in to change notification settings - Fork 726
Add streaming base classes and streaming statistics #855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
blowekamp
merged 16 commits into
InsightSoftwareConsortium:master
from
blowekamp:AddStreamingBaseClasses
May 16, 2019
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f878f46
ENH: Add base class for generic streaming processes
blowekamp ac08bc1
ENH: Add ImageSink base filter class
blowekamp fdccea4
ENH: Use streaming base class for LabelStatisticsImageFilter
blowekamp 29aa8e1
ENH: Use named input in LabelStatisticsImageFilter
blowekamp 0efe8db
ENH: Add streaming support to StatisticsImageFilter
blowekamp f02a1de
ENH: Add testing for streaming with StatisticsImageFilter
blowekamp 884fe6e
ENH: Remove output image, use standard decorator macros
blowekamp cbaddfa
ENH: Refactor min/max filter to use ImageSink
blowekamp c3fcfe2
ENH: Add ImageSink::VerifyInputInformation
blowekamp 8f66190
ENH: Add KWStyle override for ImageStatistics module
blowekamp 9bb0f0c
ENH: Use streaming sink base class for image to histogram filters
blowekamp 08fcda0
ENH: Deprecate ImageTransformer class
blowekamp 6c575b3
BUG: Update NormalizeImageFilter with double graft mini-pipeline
blowekamp efdca3a
DOC: statistics filter changes for ITKv5
blowekamp a931acf
ENH: Add Python wrapping for streaming base classes
blowekamp 23da91e
ENH: Add streaming testing of label statistics filter
blowekamp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,190 @@ | ||
| /*========================================================================= | ||
| * | ||
| * Copyright Insight Software Consortium | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0.txt | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| * | ||
| *=========================================================================*/ | ||
| #ifndef itkImageSink_h | ||
| #define itkImageSink_h | ||
|
|
||
| #include "itkStreamingProcessObject.h" | ||
| #include "itkImage.h" | ||
| #include "itkImageRegionSplitterBase.h" | ||
| #include "itkImageRegionSplitterSlowDimension.h" | ||
| #include "itkImageToImageFilterCommon.h" | ||
|
|
||
| namespace itk | ||
| { | ||
|
|
||
| /** \class ImageSink | ||
| * | ||
| * ImageSink is the base class for process objects which consume image | ||
| * data. This class defaults to having at least one input of the | ||
| * templated image type. The framework enables derived algorithms to | ||
| * stream the input image as it's being consumed by the algorithm. | ||
| * | ||
| * The framework provides multi-threading of the streamed image regions. | ||
| * The input image's pipeline is updated multiple times with the | ||
| * streaming requested regions, then the fulfilled requested region | ||
| * are split again for multi-threading. | ||
| * | ||
| * By default, the NumberOfStreamDivisions is 1 (no streaming). | ||
| * Derived implementations must change the access specification for | ||
| * this method to be public to expose the streaming feature. | ||
| * | ||
| * | ||
| * \ingroup ITKSystemObjects | ||
| * \ingroup DataProcessing | ||
| * | ||
| * \ingroup ITKCommon | ||
| **/ | ||
| template <class TInputImage > | ||
| class ImageSink | ||
| : public StreamingProcessObject, | ||
| private ImageToImageFilterCommon | ||
| { | ||
| public: | ||
| ITK_DISALLOW_COPY_AND_ASSIGN(ImageSink); | ||
|
|
||
| /** Standard class type aliases. */ | ||
| using Self = ImageSink; | ||
| using Superclass = StreamingProcessObject; | ||
| using Pointer = SmartPointer< Self >; | ||
| using ConstPointer = SmartPointer< const Self >; | ||
|
|
||
| /** Run-time type information (and related methods). */ | ||
| itkTypeMacro( ImageSink, StreamingProcessObject ); | ||
|
|
||
| /** Smart Pointer type to a DataObject. */ | ||
| using DataObjectPointer = DataObject::Pointer; | ||
|
|
||
| /** Some convenient type alias. */ | ||
| using InputImageType = TInputImage; | ||
| using InputImagePointer = typename InputImageType::Pointer; | ||
| using InputImageRegionType = typename InputImageType::RegionType; | ||
| using InputImagePixelType = typename InputImageType::PixelType; | ||
|
|
||
| /** SmartPointer to a region splitting object */ | ||
| using SplitterType = ImageRegionSplitterBase; | ||
| using RegionSplitterPointer = typename SplitterType::Pointer; | ||
|
|
||
| using DataObjectIdentifierType = typename Superclass::DataObjectIdentifierType; | ||
|
|
||
| /** Dimension of input images. */ | ||
| itkStaticConstMacro(InputImageDimension, unsigned int, | ||
| InputImageType::ImageDimension); | ||
|
|
||
|
|
||
| using Superclass::SetInput; | ||
| /** Set/Get the image input of this process object. */ | ||
| virtual void SetInput(const InputImageType *input); | ||
|
|
||
| virtual const InputImageType * GetInput(void) const; | ||
|
|
||
| virtual const InputImageType *GetInput(unsigned int idx) const; | ||
|
|
||
| virtual const InputImageType *GetInput(const DataObjectIdentifierType & key) const; | ||
|
|
||
| virtual void Update( ) override; | ||
|
|
||
|
|
||
| /** get/set the Coordinate tolerance | ||
| * This tolerance is used when comparing the space defined | ||
| * by the input images. ITK has a requirement that multiple input | ||
| * images be congruent in space by default. | ||
| */ | ||
| itkSetMacro(CoordinateTolerance,double); | ||
| itkGetConstMacro(CoordinateTolerance,double); | ||
|
|
||
| /** get/set the direction tolerance | ||
| * This tolerance is used to make sure that all input | ||
| * images are oriented the same before performing the filter's | ||
| * transformations. | ||
| */ | ||
| itkSetMacro(DirectionTolerance,double); | ||
| itkGetConstMacro(DirectionTolerance,double); | ||
|
|
||
| /** get/set the global default direction tolerance | ||
| * | ||
| * This value is used to initialize the DirectionTolerance upon | ||
| * class construction of \b any Image filters. This has no | ||
| * effect on currently constructed classes. | ||
| */ | ||
| using ImageToImageFilterCommon::SetGlobalDefaultDirectionTolerance; | ||
| using ImageToImageFilterCommon::GetGlobalDefaultDirectionTolerance; | ||
|
|
||
|
|
||
| /** get/set the global default coordinate tolerance | ||
| * | ||
| * This value is used to initialize the CoordinateTolerance upon | ||
| * class construction of \b any ImageToImage filter. This has no | ||
| * effect on currently constructed classes. | ||
| */ | ||
| using ImageToImageFilterCommon::SetGlobalDefaultCoordinateTolerance; | ||
| using ImageToImageFilterCommon::GetGlobalDefaultCoordinateTolerance; | ||
|
|
||
| protected: | ||
| ImageSink(); | ||
| ~ImageSink() = default; | ||
|
|
||
| virtual void PrintSelf(std::ostream & os, Indent indent) const override; | ||
|
|
||
| virtual unsigned int GetNumberOfInputRequestedRegions () override; | ||
|
|
||
| virtual void GenerateNthInputRequestedRegion (unsigned int inputRequestedRegionNumber) override; | ||
|
|
||
| virtual void AllocateOutputs( ) {} | ||
|
|
||
| void VerifyInputInformation() ITKv5_CONST override; | ||
|
|
||
| void BeforeStreamedGenerateData( ) override {this->AllocateOutputs();} | ||
|
|
||
| virtual void StreamedGenerateData( unsigned int inputRequestedRegionNumber) override; | ||
|
|
||
| virtual void ThreadedStreamedGenerateData( const InputImageRegionType &inputRegionForChunk ) = 0; | ||
|
|
||
|
|
||
| /** Set the number of pieces to divide the input. The upstream pipeline | ||
| * will be executed this many times. */ | ||
| itkSetMacro(NumberOfStreamDivisions, unsigned int); | ||
|
|
||
| /** Get the number of pieces to divide the input. The upstream pipeline | ||
| * will be executed this many times. */ | ||
| itkGetConstMacro(NumberOfStreamDivisions, unsigned int); | ||
|
|
||
| /** Set/Get Helper class for dividing the input into regions for | ||
| * streaming */ | ||
| itkSetObjectMacro(RegionSplitter, SplitterType); | ||
| itkGetObjectMacro(RegionSplitter, SplitterType); | ||
|
|
||
|
|
||
| private: | ||
|
|
||
| unsigned int m_NumberOfStreamDivisions; | ||
| RegionSplitterPointer m_RegionSplitter; | ||
| InputImageRegionType m_CurrentInputRegion; | ||
|
|
||
| /** | ||
| * Tolerances for checking whether input images are defined to | ||
| * occupy the same physical space. | ||
| */ | ||
| double m_CoordinateTolerance; | ||
| double m_DirectionTolerance; | ||
| }; | ||
|
|
||
| } | ||
|
|
||
| #include "itkImageSink.hxx" | ||
|
|
||
| #endif // itkImageSink_h | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.