/usr/include/InsightToolkit/Review/itkQuadEdgeMeshQuadricDecimation.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 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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkQuadEdgeMeshQuadricDecimation.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 __itkQuadEdgeMeshQuadricDecimation_h
#define __itkQuadEdgeMeshQuadricDecimation_h
#include "itkQuadEdgeMeshEdgeMergeDecimationFilter.h"
#include "itkQuadEdgeMeshDecimationQuadricElementHelper.h"
namespace itk
{
/**
* \class QuadEdgeMeshQuadricDecimation
* \brief
*/
template< class TInput, class TOutput, class TCriterion >
class QuadEdgeMeshQuadricDecimation :
public QuadEdgeMeshEdgeMergeDecimationFilter< TInput, TOutput, TCriterion >
{
public:
typedef QuadEdgeMeshQuadricDecimation Self;
typedef SmartPointer< Self > Pointer;
typedef SmartPointer< const Self > ConstPointer;
typedef QuadEdgeMeshEdgeMergeDecimationFilter<
TInput, TOutput, TCriterion > Superclass;
/** Run-time type information (and related methods). */
itkTypeMacro( QuadEdgeMeshQuadricDecimation, QuadEdgeMeshEdgeMergeDecimationFilter );
/** New macro for creation of through a Smart Pointer */
itkNewMacro( Self );
typedef TInput InputMeshType;
typedef typename InputMeshType::Pointer InputMeshPointer;
typedef TOutput OutputMeshType;
typedef typename OutputMeshType::Pointer OutputMeshPointer;
typedef typename OutputMeshType::PointIdentifier OutputPointIdentifier;
typedef typename OutputMeshType::PointType OutputPointType;
typedef typename OutputPointType::CoordRepType OutputCoordType;
typedef typename OutputMeshType::QEType OutputQEType;
typedef typename OutputMeshType::EdgeCellType OutputEdgeCellType;
typedef typename OutputMeshType::CellsContainerIterator OutputCellsContainerIterator;
typedef typename OutputMeshType::PointsContainerPointer OutputPointsContainerPointer;
typedef typename OutputMeshType::PointsContainerIterator OutputPointsContainerIterator;
itkStaticConstMacro( OutputPointDimension, unsigned int, OutputMeshType::PointDimension );
typedef TCriterion CriterionType;
typedef typename CriterionType::MeasureType MeasureType;
typedef typename Superclass::PriorityType PriorityType;
typedef typename Superclass::PriorityQueueItemType PriorityQueueItemType;
typedef typename Superclass::PriorityQueueType PriorityQueueType;
typedef typename Superclass::PriorityQueuePointer PriorityQueuePointer;
typedef typename Superclass::QueueMapType QueueMapType;
typedef typename Superclass::QueueMapIterator QueueMapIterator;
typedef typename Superclass::OperatorType OperatorType;
typedef typename Superclass::OperatorPointer OperatorPointer;
typedef QuadEdgeMeshDecimationQuadricElementHelper< OutputPointType >
QuadricElementType;
typedef std::map< OutputPointIdentifier, QuadricElementType >
QuadricElementMapType;
typedef typename QuadricElementMapType::iterator QuadricElementMapIterator;
protected:
QuadEdgeMeshQuadricDecimation() {}
virtual ~QuadEdgeMeshQuadricDecimation() {}
QuadricElementMapType m_Quadric;
virtual void Initialize()
{
OutputMeshPointer output = this->GetOutput();
OutputPointsContainerPointer points = output->GetPoints();
OutputPointsContainerIterator it = points->Begin();
OutputPointIdentifier p_id;
OutputQEType * qe;
OutputQEType * qe_it;
while( it != points->End() )
{
p_id = it->Index();
qe = output->FindEdge( p_id );
if( qe != 0 )
{
qe_it = qe;
do
{
QuadricAtOrigin( qe_it, m_Quadric[p_id] );
qe_it = qe_it->GetOnext();
} while( qe_it != qe );
}
it++;
}
}
inline void QuadricAtOrigin( OutputQEType* iEdge, QuadricElementType& oQ )
{
OutputMeshPointer output = this->GetOutput();
OutputPointIdentifier id[3];
id[0] = iEdge->GetOrigin();
id[1] = iEdge->GetDestination();
id[2] = iEdge->GetOnext()->GetDestination();
OutputPointType p[3];
for( int i = 0; i < 3; i++ )
{
p[i] = output->GetPoint( id[i] );
}
oQ.AddTriangle( p[0], p[1], p[2] );
}
/**
* \brief Compute the measure value for iEdge
* \param[in] iEdge
* \return measure value, here the squared edge length
*/
inline MeasureType MeasureEdge( OutputQEType* iEdge )
{
OutputPointIdentifier id_org = iEdge->GetOrigin();
OutputPointIdentifier id_dest = iEdge->GetDestination();
QuadricElementType Q = m_Quadric[ id_org ] + m_Quadric[ id_dest ];
OutputMeshPointer output = this->GetOutput();
OutputPointType org = output->GetPoint( id_org );
OutputPointType dest = output->GetPoint( id_dest );
OutputPointType mid;
mid.SetToMidPoint( org, dest );
OutputPointType p = Q.ComputeOptimalLocation( mid );
return static_cast< MeasureType >( Q.ComputeError( p ) );
}
virtual void DeletePoint( const OutputPointIdentifier& iIdToBeDeleted,
const OutputPointIdentifier& iRemaining )
{
Superclass::DeletePoint( iIdToBeDeleted, iRemaining );
QuadricElementMapIterator it = m_Quadric.find( iIdToBeDeleted );
m_Quadric[iRemaining] += it->second;
m_Quadric.erase( it );
}
/**
* \brief
* \param[in]
* \return
*/
OutputPointType Relocate( OutputQEType* iEdge )
{
OutputPointIdentifier id_org = iEdge->GetOrigin();
OutputPointIdentifier id_dest = iEdge->GetDestination();
QuadricElementType Q = m_Quadric[ id_org ] + m_Quadric[ id_dest ];
OutputMeshPointer output = this->GetOutput();
OutputPointType org = output->GetPoint( id_org );
OutputPointType dest = output->GetPoint( id_dest );
OutputPointType mid;
mid.SetToMidPoint( org, dest );
return Q.ComputeOptimalLocation( mid );
}
private:
QuadEdgeMeshQuadricDecimation( const Self& );
void operator = ( const Self& );
};
}
#endif
|