/**************************************************************************** * VCGLib o o * * Visual and Computer Graphics Library o o * * _ O _ * * Copyright(C) 2004-2012 \/)\/ * * 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. * * * ****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include using namespace vcg; class MyVertex; class MyEdge; class MyFace; struct MyUsedTypes : public UsedTypes ::AsVertexType, Use ::AsEdgeType, Use ::AsFaceType>{}; class MyVertex : public Vertex< MyUsedTypes, vertex::Coord3f, vertex::Normal3f, vertex::Color4b, vertex::Qualityf, vertex::BitFlags >{}; class MyFace : public Face< MyUsedTypes, face::FFAdj, face::Color4b, face::Normal3f, face::VertexRef, face::BitFlags > {}; class MyEdge : public Edge< MyUsedTypes, edge::VertexRef, edge::VEAdj, edge::EEAdj, edge::BitFlags> {}; class MyMesh : public tri::TriMesh< std::vector, std::vector , std::vector > {}; int main( int argc, char **argv ) { setvbuf(stdout, NULL, _IONBF, 0); if(argc<3) { printf("Usage alignmeshmesh \n"); return -1; } MyMesh fixM,movM; tri::io::Importer::Open(fixM,argv[1]); printf( "Mesh0 has %i vert and %i faces\n", fixM.VN(), fixM.FN() ); tri::io::Importer::Open(movM,argv[2]); printf( "Mesh1 has %i vert and %i faces\n", movM.VN(), movM.FN() ); math::MarsenneTwisterRNG rnd; tri::UpdateBounding::Box(fixM); tri::UpdateBounding::Box(movM); float featureRad = fixM.bbox.Diag() * 0.005; // RansacFramework >::EvalNormalVariation(movM,featureRad*5.0); // tri::io::ExporterPLY::Save(movM,"mv0.ply",tri::io::Mask::IOM_VERTQUALITY + tri::io::Mask::IOM_VERTCOLOR); // RansacFramework::EvalNormalVariation(movM,featureRad*10.0); // tri::io::ExporterPLY::Save(movM,"mv1.ply",tri::io::Mask::IOM_VERTQUALITY + tri::io::Mask::IOM_VERTCOLOR); // RansacFramework::EvalNormalVariation(fixM,featureRad*5.0); // tri::io::ExporterPLY::Save(fixM,"fv0.ply",tri::io::Mask::IOM_VERTQUALITY + tri::io::Mask::IOM_VERTCOLOR); // RansacFramework::EvalNormalVariation(fixM,featureRad*10.0); // tri::io::ExporterPLY::Save(fixM,"fv1.ply",tri::io::Mask::IOM_VERTQUALITY + tri::io::Mask::IOM_VERTCOLOR); Point3f delta = math::GeneratePointInUnitBallUniform(rnd) * fixM.bbox.Diag(); tri::UpdatePosition::Translate(movM,delta); tri::UpdateNormal::PerVertexNormalizedPerFaceNormalized(fixM); tri::UpdateNormal::PerVertexNormalizedPerFaceNormalized(movM); tri::io::ExporterPLY::Save(movM,"out.ply"); int randSeed = clock(); RansacFramework > Ran; RansacFramework >::Param pp; pp.samplingRadiusPerc=0.005; pp.evalSize=50; pp.inlierRatioThr = 0.4; Ran.Init(fixM,movM,pp); std::vector >::Candidate> cVec; Ran.Process_SearchEvaluateTriple(cVec,pp); MyMesh out0; tri::Append::MeshCopy(out0,movM); tri::UpdatePosition::Matrix(out0,cVec[0].Tr); tri::io::ExporterPLY::Save(out0,"out0.ply"); MyMesh inlierMesh0; Ran.DumpInlier(inlierMesh0,cVec[0],pp); tri::io::ExporterPLY::Save(inlierMesh0,"inlier0.ply"); MyMesh out1; tri::Append::MeshCopy(out1,movM); tri::UpdatePosition::Matrix(out1,cVec[1].Tr); tri::io::ExporterPLY::Save(out1,"out1.ply"); MyMesh inlierMesh1; Ran.DumpInlier(inlierMesh1,cVec[1],pp); tri::io::ExporterPLY::Save(inlierMesh1,"inlier1.ply"); return 0; }