/usr/include/InsightToolkit/Common/itkSimplexMesh.txx is in libinsighttoolkit3-dev 3.20.1+git20120521-6build1.
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 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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkSimplexMesh.txx
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 __itkSimplexMesh_txx
#define __itkSimplexMesh_txx
#include "itkSimplexMesh.h"
#include "itkObjectFactory.h"
#include "itkProcessObject.h"
#include <algorithm>
#include <vxl_version.h>
#if VXL_VERSION_DATE_FULL > 20040406
# include <vnl/vnl_cross.h>
# define itk_cross_3d vnl_cross_3d
#else
# define itk_cross_3d cross_3d
#endif
namespace itk
{
/**
* A protected default constructor allows the New() routine to create an
* instance of SimplexMesh. All the containers are initialized to empty
* containers.
*/
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SimplexMesh() : m_LastCellId ( 0 )
{
m_GeometryData = GeometryMapType::New();
}
/**
* Mesh Destructor takes care of releasing the memory of Cells
* and CellBoundaries objects for which normal pointers are
* stored.
*/
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::~SimplexMesh()
{
itkDebugMacro("Mesh Destructor ");
GeometryMapPointer geometryMap = this->GetGeometryData();
GeometryMapIterator pointDataIterator = geometryMap->Begin();
GeometryMapIterator pointDataEnd = geometryMap->End();
while (pointDataIterator != pointDataEnd)
{
SimplexMeshGeometry* geometry = pointDataIterator->Value();
if( geometry )
{
delete geometry;
}
pointDataIterator++;
}
// clear the map
geometryMap->Initialize();
this->ReleaseCellsMemory();
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::CopyInformation(const DataObject *data)
{
const Superclass *mesh;
mesh = dynamic_cast<const Superclass*>(data);
if (mesh)
{
this->m_MaximumNumberOfRegions = mesh->GetMaximumNumberOfRegions();
}
else
{
// pointer could not be cast back down
itkExceptionMacro(<< "itk::Mesh::CopyInformation() cannot cast "
<< typeid(data).name() << " to "
<< typeid(Superclass*).name() );
}
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetBarycentricCoordinates(unsigned long idx, PointType value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->eps = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
typename SimplexMesh<TPixelType, VDimension, TMeshTraits>::PointType
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetBarycentricCoordinates(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->eps;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetReferenceMetrics(unsigned long idx, PointType value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->referenceMetrics = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
typename SimplexMesh<TPixelType, VDimension, TMeshTraits>::PointType
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetReferenceMetrics(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->referenceMetrics;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetPhi(unsigned long idx, double value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->phi = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
double
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetPhi(unsigned long idx) const
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
PointType test;
this->GetPoint(idx, &test);
return m_GeometryData->GetElement(idx)->phi;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetMeanCurvature(unsigned long idx, double value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->meanCurvature = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
double
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetMeanCurvature(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->meanCurvature;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetRadius(unsigned long idx, double value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->circleRadius = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
double
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetRadius(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->circleRadius;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetDistance(unsigned long idx, double value)
{
SimplexMeshGeometry* geometry = m_GeometryData->GetElement(idx);
geometry->distance = value;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
double
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetDistance(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->distance;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
unsigned long
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::AddEdge(unsigned long startPointId, unsigned long endPointId)
{
CellAutoPointer NewCellPointer(new LineType, true);
unsigned long edgeId = m_LastCellId;
NewCellPointer->SetPointId( 0, startPointId );
NewCellPointer->SetPointId( 1, endPointId );
this->SetCell( edgeId, NewCellPointer );
m_LastCellId++;
return edgeId;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
unsigned long
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::AddFace(CellAutoPointer &cellPointer)
{
this->SetCell( m_LastCellId , cellPointer );
m_LastCellId++;
return m_LastCellId-1;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
unsigned long
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::ReplaceFace(unsigned long replaceIndex, CellAutoPointer &cellPointer)
{
this->GetCells()->DeleteIndex( replaceIndex );
this->SetCell( replaceIndex , cellPointer );
this->SetCellData( replaceIndex , (PixelType) 1.0 );
return replaceIndex;
}
/* PrintSelf. */
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::PrintSelf(std::ostream& os, Indent indent) const
{
this->Superclass::PrintSelf(os,indent);
os << indent << "LastCellId = " << m_LastCellId << std::endl;
CellsContainerConstPointer cells = this->GetCells();
CellsContainerConstIterator cellIt = cells->Begin();
os << indent << "Cells Point Ids:" << std::endl;
while ( cellIt != cells->End() )
{
os << indent << "cell id: " << cellIt->Index() << ", point ids: ";
CellType *nextCell = cellIt->Value();
typename CellType::PointIdIterator pointIt = nextCell->PointIdsBegin();
while (pointIt != nextCell->PointIdsEnd() ) { os << *pointIt++ << "-"; }
os << std::endl;
cellIt++;
}
PointsContainerConstIterator pointsIt = this->GetPoints()->Begin();
os << indent << "Point locations:" << std::endl;
while ( pointsIt != this->GetPoints()->End() )
{
os << indent << "pt index:" << pointsIt->Index() << " , coords: " << pointsIt->Value() << std::endl;
pointsIt++;
}
GeometryMapPointer geometryMap = this->GetGeometryData();
GeometryMapIterator pointDataIterator = geometryMap->Begin();
GeometryMapIterator pointDataEnd = geometryMap->End();
while (pointDataIterator != pointDataEnd)
{
SimplexMeshGeometry* geometry = pointDataIterator->Value();
os << indent << "Mesh Geometry Data for point:"<< pointDataIterator->Index() << std::endl;
os << indent << "Direct Neighbors indices: "
<< geometry->neighborIndices[0] << ", "
<< geometry->neighborIndices[1] << ", "
<< geometry->neighborIndices[2] << std::endl;
pointDataIterator++;
}
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SetGeometryData(unsigned long pointId, SimplexMeshGeometry* geometryData)
{
if (m_GeometryData->IndexExists(pointId))
{
delete m_GeometryData->GetElement(pointId);
}
m_GeometryData->InsertElement(pointId, geometryData);
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
typename SimplexMesh<TPixelType, VDimension, TMeshTraits>::IndexArray
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetNeighbors(unsigned long idx) const
{
return m_GeometryData->GetElement(idx)->neighborIndices;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
typename SimplexMesh<TPixelType, VDimension, TMeshTraits>::NeighborListType*
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::GetNeighbors(unsigned long idx, unsigned int radius, NeighborListType* list ) const
{
if (list == NULL)
{
list = new NeighborListType();
IndexArray neighborArray = GetNeighbors(idx);
list->push_back(neighborArray[0]);
list->push_back(neighborArray[1]);
list->push_back(neighborArray[2]);
if(radius>0)
{
list = GetNeighbors(neighborArray[0], radius-1, list);
list = GetNeighbors(neighborArray[1], radius-1, list);
list = GetNeighbors(neighborArray[2], radius-1, list);
}
NeighborListType::iterator it = std::find( list->begin(),list->end(),idx );
if (it != list->end()) list->erase(it);
return list;
}
else
{
IndexArray neighborArray = GetNeighbors(idx);
NeighborListType::iterator foundIt1 = std::find( list->begin(),list->end(),neighborArray[0] );
NeighborListType::iterator foundIt2 = std::find( list->begin(),list->end(),neighborArray[1] );
NeighborListType::iterator foundIt3 = std::find( list->begin(),list->end(),neighborArray[2] );
NeighborListType::iterator endIt = list->end();
bool found1=false, found2=false, found3=false;
if (foundIt1 != endIt) found1 =true;
if (foundIt2 != endIt) found2 = true;
if (foundIt3 != endIt) found3 = true;
if (!found1) list->push_back(neighborArray[0]);
if (!found2) list->push_back(neighborArray[1]);
if (!found3) list->push_back(neighborArray[2]);
if (radius == 0)
{
return list;
}
else
{
list = GetNeighbors(neighborArray[0], radius-1, list);
list = GetNeighbors(neighborArray[1], radius-1, list);
list = GetNeighbors(neighborArray[2], radius-1, list);
return list;
}
}
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::AddNeighbor(unsigned long pointIdx, unsigned long neighborIdx)
{
SimplexMeshGeometry* data = m_GeometryData->GetElement(pointIdx);
for (int i = 0; i < 3; i++)
{
if (data->neighborIndices[i] == ((unsigned long)NumericTraits<unsigned long>::max() ))
{
data->neighborIndices[i] = neighborIdx;
break;
}
}
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::ReplaceNeighbor(unsigned long pointIdx, unsigned long oldIdx,unsigned long newIdx)
{
SimplexMeshGeometry* data = m_GeometryData->GetElement(pointIdx);
for (int i = 0; i < 3;i++)
{
if (data->neighborIndices[i] == oldIdx)
{
data->neighborIndices[i] = newIdx;
}
}
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
void
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::SwapNeighbors(unsigned long pointIdx, unsigned long firstIdx,unsigned long secondIdx)
{
SimplexMeshGeometry* data = m_GeometryData->GetElement(pointIdx);
int i;
int firstFound = -1;
int secondFound = -1;
for (i = 0; i < 3;i++)
{
if (data->neighborIndices[i] == firstIdx)
{
firstFound = i;
}
else if (data->neighborIndices[i] == secondIdx)
{
secondFound = i;
}
}
if(firstFound == -1 || secondFound == -1)
{
itkExceptionMacro("first and second not found");
}
data->neighborIndices[firstFound] = secondIdx;
data->neighborIndices[secondFound] = firstIdx;
}
template <typename TPixelType, unsigned int VDimension, typename TMeshTraits>
typename SimplexMesh<TPixelType, VDimension, TMeshTraits>::CovariantVectorType
SimplexMesh<TPixelType, VDimension, TMeshTraits>
::ComputeNormal(unsigned long idx ) const
{
PointType p,n1,n2,n3;
p.Fill(0);
n1.Fill(0);
n2.Fill(0);
n3.Fill(0);
IndexArray neighbors = this->GetNeighbors( idx );
this->GetPoint(idx,&p);
this->GetPoint(neighbors[0],&n1);
this->GetPoint(neighbors[1],&n2);
this->GetPoint(neighbors[2],&n3);
// compute normals
CovariantVectorType normal;
normal.Fill(0.0);
CovariantVectorType z;
z.SetVnlVector( itk_cross_3d((n2-n1).GetVnlVector() , (n3-n1).GetVnlVector()) );
z.Normalize();
normal += z;
return normal;
}
} // end namespace itk
#endif
|