- added call of FarthestVertex with returning vertices within a specified interval
- added initial #define to avoid multiple inclusion
This commit is contained in:
parent
95713e5723
commit
c4cc235b52
|
@ -35,29 +35,32 @@
|
|||
class for computing approximated geodesic distances on a mesh.
|
||||
|
||||
basic example: farthest vertex from a specified one
|
||||
MyMesh m;
|
||||
MyMesh::VertexPointer seed,far;
|
||||
MyMesh::ScalarType dist;
|
||||
MyMesh m;
|
||||
MyMesh::VertexPointer seed,far;
|
||||
MyMesh::ScalarType dist;
|
||||
|
||||
vcg::Geo<MyMesh> g;
|
||||
g.FarthestVertex(m,seed,far,d);
|
||||
vcg::Geo<MyMesh> g;
|
||||
g.FarthestVertex(m,seed,far,d);
|
||||
|
||||
*/
|
||||
namespace vcg{
|
||||
namespace tri{
|
||||
#ifndef __VCGLIB_GEODESIC
|
||||
#define __VCGLIB_GEODESIC
|
||||
|
||||
template <class MeshType>
|
||||
struct EuclideanDistance{
|
||||
namespace vcg{
|
||||
namespace tri{
|
||||
|
||||
template <class MeshType>
|
||||
struct EuclideanDistance{
|
||||
typedef typename MeshType::VertexType VertexType;
|
||||
typedef typename MeshType::ScalarType ScalarType;
|
||||
|
||||
EuclideanDistance(){}
|
||||
ScalarType operator()(const VertexType * v0, const VertexType * v1) const
|
||||
{return vcg::Distance(v0->cP(),v1->cP());}
|
||||
};
|
||||
};
|
||||
|
||||
template <class MeshType, class DistanceFunctor = EuclideanDistance<MeshType> >
|
||||
class Geo{
|
||||
template <class MeshType, class DistanceFunctor = EuclideanDistance<MeshType> >
|
||||
class Geo{
|
||||
|
||||
public:
|
||||
|
||||
|
@ -163,9 +166,9 @@ class Geo{
|
|||
ScalarType & max_distance,
|
||||
bool farthestOnBorder = false,
|
||||
ScalarType distance_threshold = std::numeric_limits<ScalarType>::max(),
|
||||
typename MeshType::template PerVertexAttributeHandle<VertexPointer> * sources = NULL
|
||||
)
|
||||
{
|
||||
typename MeshType::template PerVertexAttributeHandle<VertexPointer> * sources = NULL,
|
||||
std::vector<VertexPointer> *InInterval=NULL)
|
||||
{
|
||||
bool isLeaf;
|
||||
std::vector<VertDist> frontier;
|
||||
VertexPointer curr,farthest=0,pw1;
|
||||
|
@ -198,6 +201,9 @@ class Geo{
|
|||
{
|
||||
pop_heap(frontier.begin(),frontier.end(),pred());
|
||||
curr = (frontier.back()).v;
|
||||
if (InInterval!=NULL)
|
||||
InInterval->push_back(curr);
|
||||
|
||||
curr_s = TD[curr].source;
|
||||
if(sources!=NULL)
|
||||
(*sources)[curr] = curr_s;
|
||||
|
@ -259,17 +265,27 @@ class Geo{
|
|||
}// end while
|
||||
|
||||
// Copy found distance onto the Quality (\todo parametric!)
|
||||
if (InInterval==NULL)
|
||||
{
|
||||
for(VertexIterator vi = m.vert.begin(); vi != m.vert.end(); ++vi) if(!(*vi).IsD())
|
||||
(*vi).Q() = TD[&(*vi)].d;
|
||||
}
|
||||
else
|
||||
{
|
||||
assert(InInterval->size()>0);
|
||||
for(int i=0;i<InInterval->size();i++)
|
||||
(*InInterval)[i]->Q() = TD[(*InInterval)[i]].d;
|
||||
}
|
||||
|
||||
return farthest;
|
||||
}
|
||||
|
||||
|
||||
public:
|
||||
public:
|
||||
/*
|
||||
Given a mesh and a vector of pointers to vertices (sources), assigns the approximated geodesic
|
||||
distance from the cloasest source to all the mesh vertices and returns the pointer to the farthest.
|
||||
distance from the cloasest source to all the mesh vertices and returns the vertices within the
|
||||
specified interval
|
||||
Note: update the field Q() of the vertices
|
||||
*/
|
||||
static bool FarthestVertex( MeshType & m,
|
||||
|
@ -277,15 +293,21 @@ public:
|
|||
VertexPointer & farthest,
|
||||
ScalarType & distance,
|
||||
ScalarType distance_thr = std::numeric_limits<ScalarType>::max(),
|
||||
typename MeshType::template PerVertexAttributeHandle<VertexPointer> * sources = NULL){
|
||||
typename MeshType::template PerVertexAttributeHandle<VertexPointer> * sources = NULL,
|
||||
std::vector<VertexPointer> *InInterval=NULL)
|
||||
{
|
||||
|
||||
typename std::vector<VertexPointer>::iterator fi;
|
||||
std::vector<VertDist>fr;
|
||||
if(fro.empty()) return false;
|
||||
|
||||
for( fi = fro.begin(); fi != fro.end() ; ++fi)
|
||||
{
|
||||
fr.push_back(VertDist(*fi,0.0));
|
||||
farthest = Visit(m,fr,distance,false,distance_thr,sources);
|
||||
/* if (InInterval==NULL)continue;
|
||||
InInterval.push_back();*/
|
||||
}
|
||||
farthest = Visit(m,fr,distance,false,distance_thr,sources,InInterval);
|
||||
return true;
|
||||
}
|
||||
/*
|
||||
|
@ -297,18 +319,39 @@ public:
|
|||
VertexPointer seed,
|
||||
VertexPointer & farthest,
|
||||
ScalarType & distance,
|
||||
ScalarType distance_thr = std::numeric_limits<ScalarType>::max()){
|
||||
ScalarType distance_thr = std::numeric_limits<ScalarType>::max())
|
||||
{
|
||||
std::vector<VertexPointer> seedVec;
|
||||
seedVec.push_back( seed );
|
||||
VertexPointer v0;
|
||||
FarthestVertex(m,seedVec,v0,distance,distance_thr);
|
||||
farthest = v0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
Given a mesh and a pointers to a vertex-source (source), assigns the approximated geodesic
|
||||
distance from the vertex-source to all the mesh vertices and returns the vertices within the
|
||||
specified interval
|
||||
Note: update the field Q() of the vertices
|
||||
*/
|
||||
static void FarthestVertex( MeshType & m,
|
||||
VertexPointer seed,
|
||||
VertexPointer & farthest,
|
||||
ScalarType & distance,
|
||||
ScalarType distance_thr,
|
||||
std::vector<VertexPointer> *InInterval=NULL)
|
||||
{
|
||||
std::vector<VertexPointer> seedVec;
|
||||
seedVec.push_back( seed );
|
||||
VertexPointer v0;
|
||||
FarthestVertex(m,seedVec,v0,distance,distance_thr,NULL,InInterval);
|
||||
farthest = v0;
|
||||
}
|
||||
|
||||
/*
|
||||
Same as FarthestPoint but the returned pointer is to a border vertex
|
||||
Note: update the field Q() of the vertices
|
||||
*/
|
||||
*/
|
||||
static void FarthestBVertex(MeshType & m,
|
||||
std::vector<VertexPointer> & seedVec,
|
||||
VertexPointer & farthest,
|
||||
|
@ -322,11 +365,11 @@ public:
|
|||
for( fi = seedVec.begin(); fi != seedVec.end() ; ++fi)
|
||||
fr.push_back(VertDist(*fi,-1));
|
||||
farthest = Visit(m,fr,distance,true,sources);
|
||||
}
|
||||
/*
|
||||
}
|
||||
/*
|
||||
Same as FarthestPoint but the returned pointer is to a border vertex
|
||||
Note: update the field Q() of the vertices
|
||||
*/
|
||||
*/
|
||||
static void FarthestBVertex( MeshType & m,
|
||||
VertexPointer seed,
|
||||
VertexPointer & farthest,
|
||||
|
@ -339,10 +382,10 @@ public:
|
|||
farthest = v0;
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
Assigns to each vertex of the mesh its distance to the closest vertex on the border
|
||||
Note: update the field Q() of the vertices
|
||||
*/
|
||||
*/
|
||||
static bool DistanceFromBorder( MeshType & m,
|
||||
ScalarType & distance,
|
||||
typename MeshType::template PerVertexAttributeHandle<VertexPointer> * sources = NULL
|
||||
|
@ -358,8 +401,9 @@ public:
|
|||
tri::UpdateQuality<MeshType>::VertexConstant(m,0);
|
||||
|
||||
return FarthestVertex(m,fro,farthest,distance,std::numeric_limits<ScalarType>::max(),sources);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
};// end namespace tri
|
||||
};// end namespace tri
|
||||
};// end namespace vcg
|
||||
#endif
|
Loading…
Reference in New Issue