/**************************************************************************** * 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. * * * ****************************************************************************/ /**************************************************************************** History $Log: not supported by cvs2svn $ Revision 1.35 2005/12/02 00:25:13 cignoni Added and removed typenames for gcc compiling. Added base class qualifier for referencing the elemntes of the templated base class (BasicGrid) it seems to be needed by the standard Revision 1.34 2005/11/30 16:01:25 m_di_benedetto Added std:: namespace for max() and min(). Revision 1.33 2005/11/30 10:32:44 m_di_benedetto Added (int) cast to std::distance to prevent compiler warning message. Revision 1.32 2005/11/10 15:44:17 cignoni Added casts to remove warnings Revision 1.31 2005/10/07 13:27:22 turini Minor changes in Set method: added use of template scalar type computing BBox. Revision 1.30 2005/10/05 17:05:08 pietroni corrected bug on Set Function .... bbox must be exetended in order to have'nt any object on his borde Revision 1.29 2005/10/03 13:57:56 pietroni added GetInSphere and GetInBox functions Revision 1.28 2005/10/02 23:15:26 cignoni Inveted the boolean sign of an assert in Grid() Revision 1.27 2005/09/30 15:07:28 cignoni Reordered grid access functions Added possibility of setting BBox explicitly in Set(...) Revision 1.26 2005/09/30 13:15:21 pietroni added wrapping to functions defined in GridClosest: - GetClosest - GetKClosest - DoRay Revision 1.25 2005/09/21 09:22:51 pietroni removed closest functions. Closest function is now on index\\Closest.h Users must use trimesh\\closest.h to perform spatial query. Revision 1.24 2005/09/16 11:57:15 cignoni Removed two wrong typenames Revision 1.23 2005/09/15 13:16:42 spinelli fixed bugs Revision 1.22 2005/09/15 11:14:39 pietroni minor changes Revision 1.21 2005/09/14 13:27:38 spinelli minor changes Revision 1.20 2005/09/14 12:57:52 pietroni canged template parameters for Closest Function (use of TempMark class) Revision 1.19 2005/09/14 09:05:32 pietroni added * operator to Link modified getClosest in order to use Temporary mark corrected bug on functor calling compilation Revision 1.18 2005/09/09 11:29:21 m_di_benedetto Modified old GetClosest() to respect old min_dist semantic (in/out) and removed #included Revision 1.17 2005/09/09 11:11:15 m_di_benedetto #included for std::numeric_limits::max() and corrected parameters bug in old GetClosest(); Revision 1.16 2005/09/09 11:01:02 m_di_benedetto Modified GetClosest(): now it uses a functor for distance calculation. Added comments and a GetClosest() method with backward compatibility. Revision 1.15 2005/08/26 09:27:58 cignoni Added a templated version of SetBBox Revision 1.14 2005/08/02 11:18:36 pietroni exetended form BasicGrid, changed type of t in class Link (from Iterator to Pointer to the object) Revision 1.13 2005/04/14 17:23:08 ponchio *** empty log message *** Revision 1.12 2005/03/15 11:43:18 cignoni Removed BestDim function from the grid_static_ptr class and moved to a indipendent file (grid_util.h) for sake of generality. Revision 1.11 2005/01/03 11:21:26 cignoni Added some casts Revision 1.10 2004/09/28 10:25:05 ponchio SetBox minimal change. Revision 1.9 2004/09/23 14:29:42 ponchio Small bugs fixed. Revision 1.8 2004/09/23 13:44:25 ponchio Removed SetSafeBBox. SetBBox is now safe enough. Revision 1.7 2004/09/09 12:44:39 fasano included stdio.h Revision 1.6 2004/09/09 08:39:29 ganovelli minor changes for gcc Revision 1.5 2004/06/25 18:34:23 ganovelli added Grid to return all the cells sharing a specified edge Revision 1.4 2004/06/23 15:49:03 ponchio Added some help and inndentation Revision 1.3 2004/05/12 18:50:58 ganovelli changed calls to Dist Revision 1.2 2004/05/11 14:33:46 ganovelli changed to grid_static_obj to grid_static_ptr Revision 1.1 2004/05/10 14:44:13 ganovelli created Revision 1.1 2004/03/08 09:21:31 cignoni Initial commit ****************************************************************************/ #ifndef __VCGLIB_UGRID #define __VCGLIB_UGRID #include #include #include #include #include #include #include #include namespace vcg { /** Static Uniform Grid A spatial search structure for a accessing a container of objects. It is based on a uniform grid overlayed over a protion of space. The grid partion the space into cells. Cells contains just pointers to the object that are stored elsewhere. The set of objects is meant to be static and pointer stable. Useful for situation were many space related query are issued over the same dataset (ray tracing, measuring distances between meshes, re-detailing ecc.). Works well for distribution that ar reasonably uniform. How to use it: ContainerType must have a 'value_type' typedef inside. (stl containers already have it) Objects pointed by cells (of kind 'value_type') must have a 'ScalarType' typedef (float or double usually) and a member function: void GetBBox(Box3 &b) which return the bounding box of the object When using the GetClosest() method, the user must supply a functor object (whose type is a method template argument) which expose the following operator (): bool operator () (const ObjType & obj, const Point3f & point, ScalarType & mindist, Point3f & result); which return true if the distance from point to the object 'obj' is < mindist and set mindist to said distance, and result must be set as the closest point of the object to point) */ template < class OBJTYPE, class FLT=float > class GridStaticPtr: public BasicGrid { public: typedef OBJTYPE ObjType; typedef ObjType* ObjPtr; typedef typename ObjType::ScalarType ScalarType; typedef Point3 CoordType; typedef Box3 Box3x; typedef Line3 Line3x; typedef GridStaticPtr GridPtrType; typedef BasicGrid BT; /** Internal class for keeping the first pointer of object. Definizione Link dentro la griglia. Classe di supporto per GridStaticObj. */ class Link { public: /// Costruttore di default inline Link(){}; /// Costruttore con inizializzatori inline Link(ObjPtr nt, const int ni ){ assert(ni>=0); t = nt; i = ni; }; inline bool operator < ( const Link & l ) const{ return i < l.i; } inline bool operator <= ( const Link & l ) const{ return i <= l.i; } inline bool operator > ( const Link & l ) const{ return i > l.i; } inline bool operator >= ( const Link & l ) const{ return i >= l.i; } inline bool operator == ( const Link & l ) const{ return i == l.i; } inline bool operator != ( const Link & l ) const{ return i != l.i; } inline ObjPtr & Elem() { return t; } ObjType &operator *(){return *(t);} inline int & Index() { return i; } private: /// Puntatore all'elemento T ObjPtr t; /// Indirizzo del voxel dentro la griglia int i; };//end class Link typedef Link* Cell; typedef Cell CellIterator; std::vector links; /// Insieme di tutti i links std::vector grid; /// Griglia vera e propria /// Date le coordinate di un grid point (corner minx,miy,minz) ritorna le celle che condividono /// l'edge cell che parte dal grid point in direzione axis inline void Grid( Point3i p, const int axis, std::vector & cl) { #ifndef NDEBUG if ( p[0]<0 || p[0] > BT::siz[0] || p[1]<0 || p[1]> BT::siz[1] || p[2]<0 || p[2]> BT::siz[2] ) assert(0); //return NULL; else #endif assert(((unsigned int) p[0]+BT::siz[0]*p[1]+BT::siz[1]*p[2])siz[axis1]-1);++j){ p[axis0]=i; p[axis1]=j; cl.push_back(Grid(p[0]+BT::siz[0]*(p[1]+BT::siz[1]*p[2]))); } } //////////////// // Official access functions //////////////// /// BY CELL Cell* Grid(const int i) { return &grid[i]; } void Grid( const Cell* g, Cell & first, Cell & last ) { first = *g; last = *(g+1); } /// BY INTEGER COORDS inline Cell* Grid( const int x, const int y, const int z ) { assert(!( x<0 || x>=BT::siz[0] || y<0 || y>=BT::siz[1] || z<0 || z>=BT::siz[2] )); assert(grid.size()>0); return &*grid.begin() + ( x+BT::siz[0]*(y+BT::siz[1]*z) ); } inline Cell* Grid( const Point3i &pi) { return Grid(pi[0],pi[1],pi[2]); } void Grid( const int x, const int y, const int z, Cell & first, Cell & last ) { Cell* g = Grid(x,y,z); first = *g; last = *(g+1); } void Grid( const Point3 & p, Cell & first, Cell & last ) { Cell* g = Grid(GridP(p)); first = *g; last = *(g+1); } /// Set the bounding box of the grid ///We need some extra space for numerical precision. template void SetBBox( const Box3Type & b ) { this->bbox.Import( b ); ScalarType t = this->bbox.Diag()/100.0; if(t == 0) t = ScalarType(1e20); // <--- Some doubts on this (Cigno 5/1/04) this->bbox.Offset(t); this->dim = this->bbox.max - this->bbox.min; } void ShowStats(FILE *fp) { // Conto le entry //int nentry = 0; //Hist H; //H.SetRange(0,1000,1000); //int pg; //for(pg=0;pg inline void Set(const OBJITER & _oBegin, const OBJITER & _oEnd, const Box3x &_bbox=Box3x() ) { OBJITER i; Box3 b; int _size=(int)std::distance(_oBegin,_oEnd); if(!_bbox.IsNull()) this->bbox=_bbox; else { for(i = _oBegin; i!= _oEnd; ++i) { (*i).GetBBox(b); this->bbox.Add(b); } ///inflate the bb calculated ScalarType infl=this->bbox.Diag()/_size; this->bbox.min-=vcg::Point3(infl,infl,infl); this->bbox.max+=vcg::Point3(infl,infl,infl); } this->dim = this->bbox.max - this->bbox.min; BestDim( _size, this->dim, this->siz ); // find voxel size this->voxel[0] = this->dim[0]/this->siz[0]; this->voxel[1] = this->dim[1]/this->siz[1]; this->voxel[2] = this->dim[2]/this->siz[2]; // "Alloca" la griglia: +1 per la sentinella grid.resize( this->siz[0]*this->siz[1]*this->siz[2]+1 ); // Ciclo inserimento dei tetraedri: creazione link links.clear(); for(i=_oBegin; i!=_oEnd; ++i) { Box3x bb; // Boundig box del tetraedro corrente (*i).GetBBox(bb); bb.Intersect(this->bbox); if(! bb.IsNull() ) { Box3i ib; // Boundig box in voxels BoxToIBox( bb,ib ); int x,y,z; for(z=ib.min[2];z<=ib.max[2];++z) { int bz = z*this->siz[1]; for(y=ib.min[1];y<=ib.max[1];++y) { int by = (y+bz)*this->siz[0]; for(x=ib.min[0];x<=ib.max[0];++x) // Inserire calcolo cella corrente // if( pt->Intersect( ... ) links.push_back( Link(&(*i),by+x) ); } } } } // Push della sentinella /*links.push_back( Link((typename ContainerType::iterator)NULL, (grid.size()-1)));*/ links.push_back( Link( NULL, int(grid.size())-1) ); // Ordinamento dei links sort( links.begin(), links.end() ); // Creazione puntatori ai links typename std::vector::iterator pl; unsigned int pg; pl = links.begin(); for(pg=0;pgIndex() ) // Trovato inizio { ++pl; // Ricerca prossimo blocco if(pl==links.end()) break; } } } int MemUsed() { return sizeof(GridStaticPtr)+ sizeof(Link)*links.size() + sizeof(Cell) * grid.size(); } template ObjPtr GetClosest(OBJPOINTDISTFUNCTOR & _getPointDistance, OBJMARKER & _marker, const CoordType & _p, const ScalarType & _maxDist,ScalarType & _minDist, CoordType & _closestPt) { return (vcg::GridClosest(*this,_getPointDistance,_marker, _p,_maxDist,_minDist,_closestPt)); } template unsigned int GetKClosest(OBJPOINTDISTFUNCTOR & _getPointDistance,OBJMARKER & _marker, const unsigned int _k, const CoordType & _p, const ScalarType & _maxDist,OBJPTRCONTAINER & _objectPtrs, DISTCONTAINER & _distances, POINTCONTAINER & _points) { return (vcg::GridGetKClosest(*this,_getPointDistance,_marker,_k,_p,_maxDist,_objectPtrs,_distances,_points)); } template unsigned int GetInSphere(OBJPOINTDISTFUNCTOR & _getPointDistance, OBJMARKER & _marker, const CoordType & _p, const ScalarType & _r, OBJPTRCONTAINER & _objectPtrs, DISTCONTAINER & _distances, POINTCONTAINER & _points) { return(vcg::GridGetInSphere (*this,_getPointDistance,_marker,_p,_r,_objectPtrs,_distances,_points)); } template unsigned int GetInBox(OBJMARKER & _marker, const vcg::Box3 _bbox, OBJPTRCONTAINER & _objectPtrs) { return(vcg::GridGetInBox (*this,_marker,_bbox,_objectPtrs)); } template ObjPtr DoRay(OBJRAYISECTFUNCTOR & _rayIntersector, OBJMARKER & _marker, const Ray3 & _ray, const ScalarType & _maxDist, ScalarType & _t) { return(vcg::GridDoRay(*this,_rayIntersector,_marker,_ray,_maxDist,_t)); } }; //end class GridStaticPtr } // end namespace #endif