From cc388bebfed2aac4d9eb5f75599c28faa1d0a1e1 Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 2 Feb 2016 15:09:54 +0000 Subject: [PATCH] moved Redetail sampler class from meshlab to here. --- vcg/complex/algorithms/point_sampling.h | 106 ++++++++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/vcg/complex/algorithms/point_sampling.h b/vcg/complex/algorithms/point_sampling.h index bf739f8a..16eb488a 100644 --- a/vcg/complex/algorithms/point_sampling.h +++ b/vcg/complex/algorithms/point_sampling.h @@ -331,6 +331,112 @@ public: +/* This sampler is used to transfer the detail of a mesh onto another one. + * It keep internally the spatial indexing structure used to find the closest point + */ +template +class RedetailSampler +{ + typedef typename MeshType::FaceType FaceType; + typedef typename MeshType::VertexType VertexType; + typedef typename MeshType::CoordType CoordType; + typedef typename MeshType::ScalarType ScalarType; + typedef GridStaticPtr MetroMeshGrid; + typedef GridStaticPtr VertexMeshGrid; + +public: + + RedetailSampler():m(0) {} + + MeshType *m; /// the source mesh for which we search the closest points (e.g. the mesh from which we take colors etc). + CallBackPos *cb; + int sampleNum; // the expected number of samples. Used only for the callback + int sampleCnt; + MetroMeshGrid unifGridFace; + VertexMeshGrid unifGridVert; + bool useVertexSampling; + + // Parameters + typedef tri::FaceTmark MarkerFace; + MarkerFace markerFunctor; + + bool coordFlag; + bool colorFlag; + bool normalFlag; + bool qualityFlag; + bool selectionFlag; + bool storeDistanceAsQualityFlag; + float dist_upper_bound; + void init(MeshType *_m, CallBackPos *_cb=0, int targetSz=0) + { + coordFlag=false; + colorFlag=false; + qualityFlag=false; + selectionFlag=false; + storeDistanceAsQualityFlag=false; + m=_m; + tri::UpdateNormal::PerFaceNormalized(*m); + if(m->fn==0) useVertexSampling = true; + else useVertexSampling = false; + + if(useVertexSampling) unifGridVert.Set(m->vert.begin(),m->vert.end()); + else unifGridFace.Set(m->face.begin(),m->face.end()); + markerFunctor.SetMesh(m); + // sampleNum and sampleCnt are used only for the progress callback. + cb=_cb; + sampleNum = targetSz; + sampleCnt = 0; + } + + // this function is called for each vertex of the target mesh. + // and retrieve the closest point on the source mesh. + void AddVert(VertexType &p) + { + assert(m); + // the results + CoordType closestPt, normf, bestq, ip; + ScalarType dist = dist_upper_bound; + const CoordType &startPt= p.cP(); + // compute distance between startPt and the mesh S2 + if(useVertexSampling) + { + VertexType *nearestV=0; + nearestV = tri::GetClosestVertex(*m,unifGridVert,startPt,dist_upper_bound,dist); //(PDistFunct,markerFunctor,startPt,dist_upper_bound,dist,closestPt); + if(cb) cb(sampleCnt++*100/sampleNum,"Resampling Vertex attributes"); + if(storeDistanceAsQualityFlag) p.Q() = dist; + if(dist == dist_upper_bound) return ; + + if(coordFlag) p.P()=nearestV->P(); + if(colorFlag) p.C() = nearestV->C(); + if(normalFlag) p.N() = nearestV->N(); + if(qualityFlag) p.Q()= nearestV->Q(); + if(selectionFlag) if(nearestV->IsS()) p.SetS(); + } + else + { + FaceType *nearestF=0; + vcg::face::PointDistanceBaseFunctor PDistFunct; + dist=dist_upper_bound; + if(cb) cb(sampleCnt++*100/sampleNum,"Resampling Vertex attributes"); + nearestF = unifGridFace.GetClosest(PDistFunct,markerFunctor,startPt,dist_upper_bound,dist,closestPt); + if(dist == dist_upper_bound) return ; + + CoordType interp; + InterpolationParameters(*nearestF,(*nearestF).cN(),closestPt, interp); + interp[2]=1.0-interp[1]-interp[0]; + + if(coordFlag) p.P()=closestPt; + if(colorFlag) p.C().lerp(nearestF->V(0)->C(),nearestF->V(1)->C(),nearestF->V(2)->C(),interp); + if(normalFlag) p.N() = nearestF->V(0)->N()*interp[0] + nearestF->V(1)->N()*interp[1] + nearestF->V(2)->N()*interp[2]; + if(qualityFlag) p.Q()= nearestF->V(0)->Q()*interp[0] + nearestF->V(1)->Q()*interp[1] + nearestF->V(2)->Q()*interp[2]; + if(selectionFlag) if(nearestF->IsS()) p.SetS(); + } + } +}; // end class RedetailSampler + + + + /** \brief Main Class of the Sampling framework.