-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(SupportInputImageTypes): Support VectorImage as template special…
…ization Reduces binary sizes, simplifies usage for pipelines that cannot support VectorImage.
- Loading branch information
Showing
5 changed files
with
84 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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 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,73 @@ | ||
/*========================================================================= | ||
* | ||
* Copyright NumFOCUS | ||
* | ||
* 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 | ||
* | ||
* https://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 itkSpecializedImagePipelineFunctor_h | ||
#define itkSpecializedImagePipelineFunctor_h | ||
#include "itkPipeline.h" | ||
#include "itkImage.h" | ||
#include "itkVectorImage.h" | ||
|
||
namespace itk | ||
{ | ||
|
||
namespace wasm | ||
{ | ||
|
||
/** \class SpecializedImagePipelineFunctor | ||
* | ||
* \brief Internal class to dispatch for pipeline execution on itk::Image or itk::VectorImage. | ||
* | ||
* \ingroup ITKWebAssemblyInterface | ||
*/ | ||
template<template <typename TImage> class TPipelineFunctor, unsigned int VDimension, typename TPixel> | ||
class | ||
SpecializedImagePipelineFunctor | ||
{ | ||
public: | ||
int operator()(itk::wasm::Pipeline & pipeline) | ||
{ | ||
using ImageType = itk::Image<TPixel, VDimension>; | ||
|
||
using PipelineType = TPipelineFunctor<ImageType>; | ||
return PipelineType()(pipeline); | ||
} | ||
}; | ||
|
||
/** \class SpecializedImagePipelineFunctor | ||
* | ||
* \brief Internal class to dispatch for pipeline execution on itk::Image or itk::VectorImage. | ||
* | ||
* \ingroup ITKWebAssemblyInterface | ||
*/ | ||
template<template <typename TImage> class TPipelineFunctor, unsigned int VDimension, typename TComponent> | ||
class | ||
SpecializedImagePipelineFunctor<TPipelineFunctor, VDimension, itk::VariableLengthVector<TComponent>> | ||
{ | ||
public: | ||
int operator()(itk::wasm::Pipeline & pipeline) | ||
{ | ||
using ImageType = itk::VectorImage<TComponent, VDimension>; | ||
|
||
using PipelineType = TPipelineFunctor<ImageType>; | ||
return PipelineType()(pipeline); | ||
} | ||
}; | ||
|
||
} // end namespace wasm | ||
} // end namespace itk | ||
|
||
#endif |
This file contains 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 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 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