ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMultiphaseSparseFiniteDifferenceImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkMultiphaseSparseFiniteDifferenceImageFilter_h
19#define itkMultiphaseSparseFiniteDifferenceImageFilter_h
20
27
28#include <vector>
29
30namespace itk
31{
151template <typename TInputImage,
152 typename TFeatureImage,
153 typename TOutputImage,
154 typename TFunction,
155 typename TIdCell = unsigned int>
157 : public MultiphaseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell>
158{
159public:
160 ITK_DISALLOW_COPY_AND_MOVE(MultiphaseSparseFiniteDifferenceImageFilter);
161
168
170 itkNewMacro(Self);
171
173 itkOverrideGetNameOfClassMacro(MultiphaseSparseFiniteDifferenceImageFilter);
174
175 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
176
178 using typename Superclass::TimeStepType;
179
181 using typename Superclass::InputImageType;
182 using typename Superclass::InputImagePointer;
183 using typename Superclass::InputRegionType;
184 using typename Superclass::InputSizeType;
185 using typename Superclass::InputSizeValueType;
186 using typename Superclass::InputIndexType;
187 using typename Superclass::InputIndexValueType;
188 using typename Superclass::InputPixelType;
189 using typename Superclass::InputPointType;
190 using typename Superclass::InputSpacingType;
192
193 using typename Superclass::FeatureImageType;
194 using typename Superclass::FeatureSizeType;
195 using typename Superclass::FeatureImagePointer;
196 using typename Superclass::FeatureRegionType;
197 using typename Superclass::FeatureSpacingType;
198 using typename Superclass::FeaturePointType;
199
200 using typename Superclass::OutputImageType;
201 using typename Superclass::OutputImagePointer;
202 using typename Superclass::OutputRegionType;
203 using typename Superclass::OutputSizeType;
204 using typename Superclass::OutputIndexType;
206 using typename Superclass::OutputPixelType;
207
208 using ValueType = typename InputImageType::ValueType;
209 using typename Superclass::IdCellType;
210
213 using FiniteDifferenceFunctionFloatOffsetType = typename FiniteDifferenceFunctionType::FloatOffsetType;
214
217
223
225 using LayerListType = std::vector<LayerPointerType>;
226 using LayerListIterator = typename LayerListType::iterator;
227 using LayerListConstIterator = typename LayerListType::const_iterator;
228
230 using StatusType = signed char;
231
236
239
241
246
248 using UpdateBufferType = std::vector<ValueType>;
249 using UpdateBufferConstIterator = typename UpdateBufferType::const_iterator;
250
253
257 itkSetMacro(NumberOfLayers, unsigned int);
258 itkGetConstMacro(NumberOfLayers, unsigned int);
259
261 itkSetMacro(IsoSurfaceValue, ValueType);
262 itkGetConstMacro(IsoSurfaceValue, ValueType);
263
268 itkSetMacro(InterpolateSurfaceLocation, bool);
269 itkGetConstMacro(InterpolateSurfaceLocation, bool);
270 itkBooleanMacro(InterpolateSurfaceLocation);
271
272 void
274 {
276
277 m_SparseData.resize(this->m_FunctionCount, nullptr);
278
279 for (IdCellType i = 0; i < this->m_FunctionCount; ++i)
280 {
281 m_SparseData[i] = new SparseDataStruct(i);
282 }
283 }
284
288
289protected:
292 {
293 while (!m_SparseData.empty())
294 {
295 delete m_SparseData.back();
296 m_SparseData.pop_back();
297 }
298 }
299
300 void
301 PrintSelf(std::ostream & os, Indent indent) const override;
302
303 // This data structure is created for each phase
331
334
336 std::vector<ValueType> m_PixelDistance{};
337
342 inline virtual ValueType
343 CalculateUpdateValue(const OutputIndexType & itkNotUsed(idx),
344 const TimeStepType & dt,
345 const ValueType & value,
346 const ValueType & change)
347 {
348 return (value + dt * change);
349 }
350
354 void
356
361 virtual void
363
365 void
366 Initialize() override;
367
372 void
374
376 void
378 {}
379
382 void
384
388 CalculateChange() override;
389
393 void
394 ConstructLayer(SparseDataStruct * sparsePtr, StatusType from, StatusType to);
395
400 void
402
404 void
406
409 void
411
419 void
420 PropagateLayerValues(SparseDataStruct * sparsePtr, StatusType from, StatusType to, StatusType promote, int InOrOut);
421
426 void
428
429 void
430 PropagateFunctionLayerValues(unsigned int functionIndex);
431
435 void
436 UpdateActiveLayerValues(TimeStepType dt, LayerType * StatusUpList, LayerType * StatusDownList);
437
439 void
441 LayerType * OutputList,
442 StatusType ChangeToStatus,
443 StatusType SearchForStatus);
444
446 void
447 ProcessOutsideList(LayerType * OutsideList, StatusType ChangeToStatus);
448
449 void
451
452 virtual void
453 UpdatePixel(unsigned int itkNotUsed(functionIndex),
454 unsigned int itkNotUsed(idx),
455 NeighborhoodIterator<InputImageType> & itkNotUsed(iterator),
456 ValueType & itkNotUsed(newValue),
457 bool & itkNotUsed(status))
458 {}
459
460 itkGetConstMacro(ValueZero, ValueType);
461 itkGetConstMacro(ValueOne, ValueType);
462
466
468 static const ValueType m_ValueOne;
469
471 static const ValueType m_ValueZero;
472
476
480
484
488
492
493 std::vector<SparseDataStruct *> m_SparseData{};
494
498 unsigned int m_NumberOfLayers{};
499
502
505
511
512private:
514
515 double m_RMSSum{ 0. };
516 unsigned int m_RMSCounter{ 0 };
517
521};
522} // end namespace itk
523
524#ifndef ITK_MANUAL_INSTANTIATION
525# include "itkMultiphaseSparseFiniteDifferenceImageFilter.hxx"
526#endif
527
528#endif
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename FiniteDifferenceFunctionType::FloatOffsetType FiniteDifferenceFunctionFloatOffsetType
void ApplyUpdate(TimeStepType dt) override
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< StatusImageType > BFCType
void PrintSelf(std::ostream &os, Indent indent) const override
ZeroCrossingImageFilter< InputImageType, InputImageType > ZeroCrossingFilterType
void PropagateLayerValues(SparseDataStruct *sparsePtr, StatusType from, StatusType to, StatusType promote, int InOrOut)
void ProcessStatusList(LayerType *InputList, LayerType *OutputList, StatusType ChangeToStatus, StatusType SearchForStatus)
virtual ValueType CalculateUpdateValue(const OutputIndexType &idx, const TimeStepType &dt, const ValueType &value, const ValueType &change)
void UpdateActiveLayerValues(TimeStepType dt, LayerType *StatusUpList, LayerType *StatusDownList)
void ConstructLayer(SparseDataStruct *sparsePtr, StatusType from, StatusType to)
void PropagateFunctionLayerValues(unsigned int functionIndex)
void ProcessOutsideList(LayerType *OutsideList, StatusType ChangeToStatus)
MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell > Superclass
SparseFieldCityBlockNeighborList< NeighborhoodIterator< OutputImageType > > NeighborListType
virtual void UpdatePixel(unsigned int functionIndex, unsigned int idx, NeighborhoodIterator< InputImageType > &iterator, ValueType &newValue, bool &status)
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.
A specialized memory management object for allocating and destroying contiguous blocks of objects.
Implements transparent reference counting.
A convenience class for storing indices which reference neighbor pixels within a neighborhood.
A very simple linked list that is used to manage nodes in a layer of a sparse field level-set solver.
SparseFieldLayerIterator< NodeType > Iterator
ConstSparseFieldLayerIterator< NodeType > ConstIterator
This filter finds the closest pixel to the zero-crossings (sign changes) in a signed itk::Image.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Splits an image into a main region and several "face" regions which are used to handle computations o...