/usr/include/InsightToolkit/Review/itkVanHerkGilWermanUtilities.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkVanHerkGilWermanUtilities.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkVanHerkGilWermanUtilities_h
#define __itkVanHerkGilWermanUtilities_h
#include <list>
#include "itkSharedMorphologyUtilities.h"
namespace itk {
/**
* \class VanHerkGilWermanUtilities
* \brief functionality in common for anchor openings/closings and
* erosions/dilation
*
*/
#if defined(_MSC_VER) && _MSC_VER >= 1300
#if 0
// version with no user access to border
template <class TImage, class TBres, class TLine, class TFunction>
int FillLineBuffer(typename TImage::ConstPointer input,
const typename TImage::IndexType StartIndex,
typename TImage::PixelType border,
const TLine line, // unit vector
const float tol,
const typename TBres::OffsetArray LineOffsets,
const typename TImage::RegionType AllImage,
const unsigned int KernLen,
typename TImage::PixelType * pixbuffer,
typename TImage::PixelType * fExtBuffer,
unsigned &start,
unsigned &end);
#else
template <class PixelType, class TFunction>
void FillReverseExt(PixelType *pixbuffer, PixelType *rExtBuffer,
const unsigned int KernLen, unsigned len);
template <class PixelType, class TFunction>
void FillForwardExt(PixelType *pixbuffer, PixelType *fExtBuffer,
const unsigned int KernLen, unsigned len);
#endif
template <class TImage, class TBres, class TFunction, class TLine>
void DoFace(typename TImage::ConstPointer input,
typename TImage::Pointer output,
typename TImage::PixelType border,
TLine line,
const typename TBres::OffsetArray LineOffsets,
const unsigned int KernLen,
typename TImage::PixelType * pixbuffer,
typename TImage::PixelType * fExtBuffer,
typename TImage::PixelType * rExtBuffer,
const typename TImage::RegionType AllImage,
const typename TImage::RegionType face);
#endif
} // namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkVanHerkGilWermanUtilities.txx"
#endif
#endif
|