/**************************************************************************** * 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.2 2005/10/13 14:59:57 ganovelli versione con svd Revision 1.1 2005/03/14 17:04:24 ganovelli created ****************************************************************************/ #ifndef __VCGLIB_FITTING3 #define __VCGLIB_FITTING3 #include #include #include #include #include namespace vcg { template bool PlaneFittingPoints( std::vector< Point3 > & samples,Plane3 &p){ int j; Matrix44 m;m.SetZero(); typename std::vector< Point3 > ::iterator i; Point3 c; c.Zero(); for(i = samples.begin(); i != samples.end(); ++i) c+=*i; c/=samples.size(); for(i = samples.begin(); i != samples.end(); ++i){ Point3 p = (*i)-c; for(j = 0 ; j < 3;++j) *(Point3*)&m[j][0] += p * p[j]; } m[0][3]= m[1][3]=m[2][3]=0.0; m[3][3]= 1.0; m[3][0]= m[3][1]=m[3][2]=0.0; int n; Matrix44 res; Point4 e; Point3 d; Jacobi(m,e,res,n); S mx = fabs(e[0]); int mxi=0; for(j=1; j < 3; ++j) if( (fabs(e[j]) < mx) ) {mx=fabs(e[j]); mxi = j;} d[0]=res[0][mxi]; d[1]=res[1][mxi]; d[2]=res[2][mxi]; p.SetOffset(c*d/d.Norm()); p.SetDirection(d/d.Norm()); return true; } template inline double FIT_VExp( const Point3 & x, const int i ) { assert(i>=0); assert(i<4); if(i==0) return 1; else return x[i-1]; } /** Fitting di piani: trova il piano che meglio approssima l'insieme di punti dato */ template bool PlaneFittingPointsOld( std::vector< Point3 > & samples, Plane3 & p ) { Point3 d; const int N = 4; S P[N][N]; // A = s' . s S U[N][N]; int i,j,k,n; n = (int)samples.size(); if(n<3) return false; //printf("\n p_prima: %f %f %f %f \n",p.Offset(),p.Direction()[0],p.Direction()[1],p.Direction()[2]); for(i=0;i m; for(i=0;i s;s.Zero(); // // s.Normalize(); // printf("\n RES %f %f %f %f \n",s[0],s[1],s[2],s[3]); //printf("\n GJ \n"); // for(i=0;i(U[1][2]*U[2][3]-U[1][3],-U[2][3],1).Norm(); p.SetDirection(Point3(U[1][2]*U[2][3]-U[1][3],-U[2][3],1)); p.SetOffset(-(U[0][2]*U[2][3]-U[0][3]+U[0][1]*U[1][3]-U[0][1]*U[1][2]*U[2][3])/norm); //printf("\n p: %f %f %f %f \n",p.Offset(),p.Direction()[0],p.Direction()[1],p.Direction()[2]); return true; } } // end namespace #endif