1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
/*=========================================================================
*
* 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 itkDiscreteGaussianDerivativeImageFilter_hxx
#define itkDiscreteGaussianDerivativeImageFilter_hxx
#include "itkNeighborhoodOperatorImageFilter.h"
#include "itkGaussianDerivativeOperator.h"
#include "itkImageRegionIterator.h"
#include "itkProgressAccumulator.h"
#include "itkStreamingImageFilter.h"
namespace itk
{
template <typename TInputImage, typename TOutputImage>
void
DiscreteGaussianDerivativeImageFilter<TInputImage, TOutputImage>::GenerateInputRequestedRegion()
{
// call the superclass' implementation of this method. this should
// copy the output requested region to the input requested region
Superclass::GenerateInputRequestedRegion();
// get pointers to the input and output
typename Superclass::InputImagePointer inputPtr = const_cast<TInputImage *>(this->GetInput());
if (!inputPtr)
{
return;
}
// Build an operator so that we can determine the kernel size
GaussianDerivativeOperator<OutputPixelType, ImageDimension> oper;
typename TInputImage::SizeType radius;
for (unsigned int i = 0; i < TInputImage::ImageDimension; ++i)
{
// Determine the size of the operator in this dimension. Note that the
// Gaussian is built as a 1D operator in each of the specified directions.
oper.SetDirection(i);
if (m_UseImageSpacing)
{
oper.SetSpacing(this->GetInput()->GetSpacing()[i]);
}
// GaussianDerivativeOperator modifies the variance when setting image
// spacing
oper.SetVariance(m_Variance[i]);
oper.SetMaximumError(m_MaximumError[i]);
oper.SetMaximumKernelWidth(m_MaximumKernelWidth);
oper.CreateDirectional();
radius[i] = oper.GetRadius(i);
}
// get a copy of the input requested region (should equal the output
// requested region)
typename TInputImage::RegionType inputRequestedRegion;
inputRequestedRegion = inputPtr->GetRequestedRegion();
// pad the input requested region by the operator radius
inputRequestedRegion.PadByRadius(radius);
// crop the input requested region at the input's largest possible region
if (inputRequestedRegion.Crop(inputPtr->GetLargestPossibleRegion()))
{
inputPtr->SetRequestedRegion(inputRequestedRegion);
return;
}
else
{
// Couldn't crop the region (requested region is outside the largest
// possible region). Throw an exception.
// store what we tried to request (prior to trying to crop)
inputPtr->SetRequestedRegion(inputRequestedRegion);
// build an exception
InvalidRequestedRegionError e(__FILE__, __LINE__);
e.SetLocation(ITK_LOCATION);
e.SetDescription("Requested region is (at least partially) outside the largest possible region.");
e.SetDataObject(inputPtr);
throw e;
}
}
template <typename TInputImage, typename TOutputImage>
void
DiscreteGaussianDerivativeImageFilter<TInputImage, TOutputImage>::GenerateData()
{
typename TOutputImage::Pointer output = this->GetOutput();
output->SetBufferedRegion(output->GetRequestedRegion());
output->Allocate();
// Create an internal image to protect the input image's metadata
// (e.g. RequestedRegion). The StreamingImageFilter changes the
// requested region as part of its normal processing.
auto localInput = TInputImage::New();
localInput->Graft(this->GetInput());
// Type of the pixel to use for intermediate results
using RealOutputPixelType = typename NumericTraits<OutputPixelType>::RealType;
using RealOutputImageType = Image<OutputPixelType, ImageDimension>;
// Type definition for the internal neighborhood filter
//
// First filter convolves and changes type from input type to real type
// Middle filters convolves from real to real
// Last filter convolves and changes type from real type to output type
// Streaming filter forces the mini-pipeline to run in chunks
using FirstFilterType = NeighborhoodOperatorImageFilter<InputImageType, RealOutputImageType, RealOutputPixelType>;
using IntermediateFilterType =
NeighborhoodOperatorImageFilter<RealOutputImageType, RealOutputImageType, RealOutputPixelType>;
using LastFilterType = NeighborhoodOperatorImageFilter<RealOutputImageType, OutputImageType, RealOutputPixelType>;
using SingleFilterType = NeighborhoodOperatorImageFilter<InputImageType, OutputImageType, RealOutputPixelType>;
using StreamingFilterType = StreamingImageFilter<OutputImageType, OutputImageType>;
using FirstFilterPointer = typename FirstFilterType::Pointer;
using IntermediateFilterPointer = typename IntermediateFilterType::Pointer;
using LastFilterPointer = typename LastFilterType::Pointer;
using SingleFilterPointer = typename SingleFilterType::Pointer;
using StreamingFilterPointer = typename StreamingFilterType::Pointer;
// Create a series of operators
using OperatorType = GaussianDerivativeOperator<RealOutputPixelType, ImageDimension>;
std::vector<OperatorType> oper;
oper.resize(ImageDimension);
// Create a process accumulator for tracking the progress of minipipeline
auto progress = ProgressAccumulator::New();
progress->SetMiniPipelineFilter(this);
// Set up the operators
for (unsigned int i = 0; i < ImageDimension; ++i)
{
// we reverse the direction to minimize computation while, because
// the largest dimension will be split slice wise for streaming.
//
// This is to say oper[0] = Z, oper[1] = Y, oper[2] = X for the
// 3D case.
const unsigned int reverse_i = ImageDimension - i - 1;
// Set up the operator for this dimension
oper[reverse_i].SetDirection(i);
oper[reverse_i].SetOrder(m_Order[i]);
if (m_UseImageSpacing)
{
// convert the variance from physical units to pixels
double s = localInput->GetSpacing()[i];
s = s * s;
oper[reverse_i].SetVariance(m_Variance[i] / s);
}
else
{
oper[reverse_i].SetVariance(m_Variance[i]);
}
oper[reverse_i].SetMaximumKernelWidth(m_MaximumKernelWidth);
oper[reverse_i].SetMaximumError(m_MaximumError[i]);
oper[reverse_i].SetNormalizeAcrossScale(m_NormalizeAcrossScale);
oper[reverse_i].CreateDirectional();
}
// Create a chain of filters
if (ImageDimension == 1)
{
// Use just a single filter
SingleFilterPointer singleFilter = SingleFilterType::New();
singleFilter->SetOperator(oper[0]);
singleFilter->SetInput(localInput);
progress->RegisterInternalFilter(singleFilter, 1.0f / ImageDimension);
// Graft this filters output onto the mini-pipeline so the mini-pipeline
// has the correct region ivars and will write to this filters bulk data
// output.
singleFilter->GraftOutput(output);
// Update the filter
singleFilter->Update();
// Graft the last output of the mini-pipeline onto this filters output so
// the final output has the correct region ivars and a handle to the final
// bulk data
this->GraftOutput(output);
}
else
{
// Setup a full mini-pipeline and stream the data through the
// pipeline.
unsigned int numberOfStages = ImageDimension * this->GetInternalNumberOfStreamDivisions() + 1;
// First filter convolves and changes type from input type to real type
FirstFilterPointer firstFilter = FirstFilterType::New();
firstFilter->SetOperator(oper[0]);
firstFilter->ReleaseDataFlagOn();
firstFilter->SetInput(localInput);
progress->RegisterInternalFilter(firstFilter, 1.0f / numberOfStages);
// Middle filters convolves from real to real
std::vector<IntermediateFilterPointer> intermediateFilters;
if (ImageDimension > 2)
{
const unsigned int max_dim = ImageDimension - 1;
for (unsigned int i = 1; i != max_dim; ++i)
{
IntermediateFilterPointer f = IntermediateFilterType::New();
f->SetOperator(oper[i]);
f->ReleaseDataFlagOn();
progress->RegisterInternalFilter(f, 1.0f / numberOfStages);
if (i == 1)
{
f->SetInput(firstFilter->GetOutput());
}
else
{
// note: first filter in vector (zeroth element) is for i==1
f->SetInput(intermediateFilters[i - 2]->GetOutput());
}
intermediateFilters.push_back(f);
}
}
// Last filter convolves and changes type from real type to output type
LastFilterPointer lastFilter = LastFilterType::New();
lastFilter->SetOperator(oper[ImageDimension - 1]);
lastFilter->ReleaseDataFlagOn();
if (ImageDimension > 2)
{
const unsigned int temp_dim = ImageDimension - 3;
lastFilter->SetInput(intermediateFilters[temp_dim]->GetOutput());
}
else
{
lastFilter->SetInput(firstFilter->GetOutput());
}
progress->RegisterInternalFilter(lastFilter, 1.0f / numberOfStages);
// Put in a StreamingImageFilter so the mini-pipeline is processed
// in chunks to minimize memory usage
StreamingFilterPointer streamingFilter = StreamingFilterType::New();
streamingFilter->SetInput(lastFilter->GetOutput());
streamingFilter->SetNumberOfStreamDivisions(this->GetInternalNumberOfStreamDivisions());
progress->RegisterInternalFilter(streamingFilter, 1.0f / numberOfStages);
// Graft this filters output onto the mini-pipeline so the mini-pipeline
// has the correct region ivars and will write to this filters bulk data
// output.
streamingFilter->GraftOutput(output);
// Update the last filter in the chain
streamingFilter->Update();
// Graft the last output of the mini-pipeline onto this filters output so
// the final output has the correct region ivars and a handle to the final
// bulk data
this->GraftOutput(output);
}
}
template <typename TInputImage, typename TOutputImage>
void
DiscreteGaussianDerivativeImageFilter<TInputImage, TOutputImage>::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Order: " << m_Order << std::endl;
os << indent << "Variance: " << m_Variance << std::endl;
os << indent << "MaximumError: " << m_MaximumError << std::endl;
os << indent << "MaximumKernelWidth: " << m_MaximumKernelWidth << std::endl;
os << indent << "UseImageSpacing: " << (m_UseImageSpacing ? "On" : "Off") << std::endl;
os << indent << "InternalNumberOfStreamDivisions: " << m_InternalNumberOfStreamDivisions << std::endl;
os << indent << "NormalizeAcrossScale: " << m_NormalizeAcrossScale << std::endl;
}
} // end namespace itk
#endif
|