vcglib/vcg/complex/local_optimization.h

294 lines
9.5 KiB
C
Raw Normal View History

2004-07-08 10:25:15 +02:00
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
$Log: not supported by cvs2svn $
2004-09-28 11:58:47 +02:00
Revision 1.5 2004/09/15 10:40:20 ponchio
typedef LocalOptimization HeapType -> public:
Revision 1.4 2004/09/08 15:10:59 ganovelli
*** empty log message ***
2004-09-08 17:13:03 +02:00
Revision 1.3 2004/07/27 09:46:15 cignoni
First working version of the LocalOptimization/Simplification Framework
Revision 1.1 2004/07/15 12:04:14 ganovelli
minor changes
Revision 1.2 2004/07/09 10:22:56 ganovelli
working draft
2004-07-09 12:22:56 +02:00
Revision 1.1 2004/07/08 08:25:15 ganovelli
first draft
2004-07-08 10:25:15 +02:00
****************************************************************************/
#ifndef __VCGLIB_LOCALOPTIMIZATION
#define __VCGLIB_LOCALOPTIMIZATION
#include<vector>
#include<algorithm>
#include<time.h>
#include<math.h>
namespace vcg{
template<class MeshType>
class LocalOptimization;
enum ModifierType{ TetraEdgeCollapseOp, TriEdgeSwapOp, TriVertexSplitOp,
TriEdgeCollapseOp,TetraEdgeSpliOpt,TetraEdgeSwapOp};
/** \addtogroup tetramesh */
2004-07-08 10:25:15 +02:00
/*@{*/
/// This abstract class define which functions a local modification to be used in the LocalOptimization.
template <class MeshType>
2004-07-08 10:25:15 +02:00
class LocalModification
{
public:
typedef typename LocalOptimization<MeshType>::HeapType HeapType;
typedef typename MeshType::ScalarType ScalarType;
2004-07-08 10:25:15 +02:00
LocalModification(){};
2004-09-08 17:13:03 +02:00
virtual ~LocalModification(){};
2004-07-08 10:25:15 +02:00
/// return the type of operation
virtual ModifierType IsOfType() = 0 ;
/// return true if the data have not changed since it was created
virtual bool IsUpToDate() = 0 ;
/// return true if no constraint disallow this operation to be performed (ex: change of topology in edge collapses)
virtual bool IsFeasible() = 0;
/// Compute the priority to be used in the heap
virtual ScalarType ComputePriority()=0;
2004-07-09 12:22:56 +02:00
/// Return the priority to be used in the heap (implement static priority)
virtual ScalarType Priority() const =0;
2004-07-09 12:22:56 +02:00
/// Perform the operation and return the variation in the number of simplicies (>0 is refinement, <0 is simplification)
virtual void Execute(MeshType &m)=0;
2004-07-09 12:22:56 +02:00
/// perform initialization
static void Init(MeshType &m, HeapType&);
2004-07-09 12:22:56 +02:00
virtual const char *Info(MeshType &) {return 0;}
2004-07-08 10:25:15 +02:00
/// Update the heap as a consequence of this operation
virtual void UpdateHeap(HeapType&)=0;
}; //end class local modification
/// LocalOptimization:
/// This class implements the algorihms running on 0-1-2-3-simplicial complex that are based on local modification
2004-09-28 11:58:47 +02:00
/// The local modification can be and edge_collpase, or an edge_swap, a vertex plit...as far as they implement
/// the interface defined in LocalModification.
2004-09-28 11:58:47 +02:00
/// Implementation note: in order to keep the local modification itself indepented by its use in this class, they are not
/// really derived by LocalModification. Instead, a wrapper is done to this purpose (see vcg/complex/tetramesh/decimation/collapse.h)
2004-07-08 10:25:15 +02:00
template<class MeshType>
class LocalOptimization
{
public:
LocalOptimization(MeshType &mm): m(mm){ ClearTermination();}
2004-07-08 10:25:15 +02:00
struct HeapElem;
// scalar type
typedef typename MeshType::ScalarType ScalarType;
// type of the heap
typedef typename std::vector<HeapElem> HeapType;
// modification type
typedef LocalModification <MeshType> LocModType;
2004-07-08 10:25:15 +02:00
// modification Pointer type
typedef LocalModification <MeshType> * LocModPtrType;
2004-07-08 10:25:15 +02:00
/// termination conditions
enum LOTermination {
LOnSimplices = 0x00, // test number of simplicies
2004-07-08 10:25:15 +02:00
LOnVertices = 0x01, // test number of verticies
LOnOps = 0x02, // test number of operations
LOMetric = 0x04, // test Metric (error, quality...instance dependent)
LOTime = 0x08 // test how much time is passed since the start
2004-07-09 12:22:56 +02:00
} ;
int tf;
int nPerfmormedOps,
2004-07-08 10:25:15 +02:00
nTargetOps,
nTargetSimplices,
nTargetVertices;
float timeBudget,
start,
currMetric,
targetMetric;
void SetTerminationFlag (int v){tf |= v;}
void ClearTerminationFlag (int v){tf &= ~v;}
bool IsTerminationFlag (int v){return (tf & v);}
void SetTargetSimplices (int ts ){nTargetSimplices = ts; SetTerminationFlag(LOnSimplices); }
void SetTargetVertices (int tv ){nTargetVertices = tv; SetTerminationFlag(LOnVertices); }
2004-07-08 10:25:15 +02:00
void SetTargetOperations(int to ){nTargetOps = to; SetTerminationFlag(LOnOps); }
2004-07-08 10:25:15 +02:00
void SetTargetMetric (ScalarType tm ){targetMetric = tm; SetTerminationFlag(LOMetric); }
void SetTimeBudget (float tb ){timeBudget = tb; SetTerminationFlag(LOTime); }
void ClearTermination()
{
tf=0;
nTargetSimplices=0;
nTargetOps=0;
targetMetric=0;
timeBudget=0;
nTargetVertices=0;
}
2004-07-08 10:25:15 +02:00
/// the mesh to optimize
MeshType & m;
2004-07-08 10:25:15 +02:00
///the heap of operations
HeapType h;
///the element of the heap
// it is just a wrapper of the pointer to the localMod.
// std heap does not work for
// pointers and we want pointers to have heterogenous heaps.
2004-07-08 10:25:15 +02:00
struct HeapElem
{
2004-07-09 12:22:56 +02:00
HeapElem(){locModPtr = NULL;}
~HeapElem(){}
2004-07-08 10:25:15 +02:00
///pointer to instance of local modifier
LocModPtrType locModPtr;
2004-07-09 12:22:56 +02:00
HeapElem( LocModPtrType _locModPtr)
2004-07-08 10:25:15 +02:00
{
locModPtr = _locModPtr;
};
/// STL heap has the largest element as the first one.
/// usually we mean priority as an error so we should invert the comparison
2004-07-08 10:25:15 +02:00
const bool operator <(const HeapElem & h) const
{
return (locModPtr->Priority() > h.locModPtr->Priority());
}
2004-07-08 10:25:15 +02:00
bool IsUpToDate()
{
2004-07-09 12:22:56 +02:00
return locModPtr->IsUpToDate();
}
2004-07-08 10:25:15 +02:00
};
/// Default Constructor
2004-07-09 12:22:56 +02:00
LocalOptimization(MeshType *_m):m(_m){};
2004-07-08 10:25:15 +02:00
/// Default distructor
~LocalOptimization(){};
/// main cycle of optimization
bool DoOptimization()
2004-07-08 10:25:15 +02:00
{
start=clock();
2004-07-09 12:22:56 +02:00
nPerfmormedOps =0;
2004-07-08 10:25:15 +02:00
2004-09-08 17:13:03 +02:00
while( !GoalReached() && !h.empty())
2004-09-08 17:13:03 +02:00
{
std::pop_heap(h.begin(),h.end());
LocModPtrType locMod = h.back().locModPtr;
h.pop_back();
if( locMod->IsUpToDate() )
{
//printf("popped out: %s\n",locMod->Info(m));
// check if it is feasible
if (locMod->IsFeasible())
{
nPerfmormedOps++;
locMod->Execute(m);
locMod->UpdateHeap(h);
}
2004-07-09 12:22:56 +02:00
}
//else printf("popped out unfeasible\n");
delete locMod;
2004-07-09 12:22:56 +02:00
}
return !(h.empty());
2004-07-08 10:25:15 +02:00
}
///initialize for all vertex the temporary mark must call only at the start of decimation
2004-07-09 12:22:56 +02:00
///by default it takes the first element in the heap and calls Init (static funcion) of that type
///of local modification.
template <class LocalModificationType> void Init()
2004-07-08 10:25:15 +02:00
{
m.InitVertexIMark();
LocalModificationType::Init(m,h);
std::make_heap(h.begin(),h.end());
2004-07-08 10:25:15 +02:00
}
/// say if the process is to end or not: the process ends when any of the termination conditions is verified
/// override this function to implemetn other tests
bool GoalReached(){
2004-07-09 12:22:56 +02:00
assert ( ( ( tf & LOnSimplices )==0) || ( nTargetSimplices!= -1));
assert ( ( ( tf & LOnVertices )==0) || ( nTargetVertices != -1));
assert ( ( ( tf & LOnOps )==0) || ( nTargetOps != -1));
assert ( ( ( tf & LOMetric )==0) || ( targetMetric != -1));
assert ( ( ( tf & LOTime )==0) || ( timeBudget != -1));
if ( IsTerminationFlag(LOnSimplices) && ( m.SimplexNumber()< nTargetSimplices)) return true;
if ( IsTerminationFlag(LOnVertices) && ( m.VertexNumber() < nTargetVertices)) return true;
if ( IsTerminationFlag(LOnOps) && (nPerfmormedOps == nTargetOps)) return true;
if ( IsTerminationFlag(LOMetric) && ( currMetric > targetMetric)) return true;
if ( IsTerminationFlag(LOTime) && ( (clock()-start)/(float)CLOCKS_PER_SEC > timeBudget)) return true;
2004-07-09 12:22:56 +02:00
return false;
2004-07-08 10:25:15 +02:00
}
///erase from the heap the operations that are out of date
void ClearHeap()
{
typename HeapType::iterator hi;
for(hi=h.begin();hi!=h.end();++hi)
2004-07-09 12:22:56 +02:00
if(!(*hi).locModPtr->IsUpToDate())
2004-07-08 10:25:15 +02:00
{
*hi=h.back();
h.pop_back();
if(hi==h.end()) break;
}
//printf("\nReduced heap from %i to %i",sz,h.size());
make_heap(h.begin(),h.end());
}
};//end class decimation
}//end namespace
#endif