/**************************************************************************** * VCGLib o o * * Visual and Computer Graphics Library o o * * _ O _ * * Copyright(C) 2005 \/)\/ * * 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.17 2005/12/13 15:46:30 corsini Restructuring code Revision 1.16 2005/12/12 12:09:08 cignoni Changed names of clean function and tested inertia.h Revision 1.15 2005/12/12 11:29:21 corsini Minor changes Revision 1.14 2005/12/12 10:48:16 corsini Fix indentation Revision 1.13 2005/11/17 00:42:03 cignoni Changed include order removed clean::initialize Revision 1.12 2005/11/16 16:45:51 rita_borgo Minor changes Revision 1.11 2005/11/16 15:59:46 cignoni Changed name of the component from to Revision 1.10 2005/11/14 09:21:07 cignoni Heavily restructured the code of Trimeshinfo. Now divided the collecting part from the reporting one (xml and ascii) Revision 1.9 2005/11/04 15:37:57 rita_borgo Removed Debug option Revision 1.8 2005/10/11 16:03:40 rita_borgo Moved all the main functions inside clean.h Revision 1.7 2005/09/30 15:48:46 rita_borgo Fixed manifold Test Revision 1.6 2005/09/30 14:13:01 rita_borgo Problem: Text not aligned Revision 1.5 2005/09/30 13:29:40 rita_borgo Fixed Manifold Test Revision 1.4 2005/09/29 14:48:15 rita_borgo Fixed code related to creation of the XML file Revision 1.3 2005/09/28 13:57:09 rita_borgo Fixed some printout not alligned Revision 1.2 2005/09/28 10:46:04 rita_borgo Added possibility of saving File in OFF format Revision 1.1 2005/09/20 10:15:27 rita_borgo Changed file name to uniform with other solution projects, before was main.cpp Revision 1.8 2005/02/15 12:26:06 rita_borgo Minor changes to self-intersection Revision 1.7 2005/02/07 15:44:31 rita_borgo Fixed Color and Volume Revision 1.6 2005/02/01 17:37:53 rita_borgo Fixed Volume and Color Revision 1.5 2005/01/18 16:33:12 rita_borgo Added OFF file Option Revision 1.4 2005/01/17 18:19:00 rita_borgo Added new routines. Self-intersection first release Revision 1.2 2005/01/03 16:13:09 rita_borgo Added Standard comments ****************************************************************************/ // Standard headers #include #include #include #include using namespace std; // VCG headers #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "XMLTree.h" #include #include "defs.h" using namespace vcg; class CFace; class CEdge; class CVertex : public VertexSimp2< CVertex, CEdge, CFace, vert::Coord3f, vert::BitFlags, vert::Normal3f >{}; class CFace : public FaceSimp2< CVertex, CEdge, CFace, face::FFAdj, face::VertexRef, face::Normal3f, face::BitFlags, face::Mark > {}; class CMesh : public vcg::tri::TriMesh< vector, vector > {}; typedef CMesh::VertexPointer VertexPointer; typedef CMesh::VertexIterator VertexIterator; typedef Point3 Point3x; typedef vector Hole; typedef CMesh::VertexPointer VertexPointer; typedef CMesh::VertexIterator VertexIterator; typedef CMesh::FaceContainer FaceContainer; typedef CMesh::ScalarType ScalarType; struct MeshInfo { string FileName; int vn,fn; bool Manifold; int count_e,boundary_e,count_fd,count_uv,numholes; int BEdges; float Volume; int numcomponents,Genus; bool Regular,Semiregular; bool Orientable,Oriented; int dv; bool SelfIntersect; }; void OpenMesh(const char *filename, CMesh &m) { printf(" Mesh loading..."); int err = tri::io::Importer::Open(m,filename); if (err) { printf("\n Error during loading %s: '%s'\n",filename, tri::io::Importer::ErrorMsg(err)); exit(-1); } else printf(" done.\n\n"); } void initMeshInfo(MeshInfo &mi) { memset(&mi, 0, sizeof(mi)); } void PrintMeshInfo(MeshInfo &mi) { printf(" *** Mesh information ***\n\n"); printf(" Mesh: '%s' \n", mi.FileName.c_str()); printf(" Number of vertices: %d \n", mi.vn); printf(" Number of faces: %d \n", mi.fn); printf(" Number of edges: %d \n", mi.count_e); printf(" Number of internal edges: %d \n", mi.count_e-mi.boundary_e); printf(" Number of boundary edges: %i \n", mi.boundary_e); printf(" Number of degenerated faces: %d\n", mi.count_fd); printf(" Number of unreferenced vertices: %d\n",mi.count_uv); printf(" Number of holes/boundaries: %d \n", mi.numholes); if ((mi.Manifold)&&(mi.Oriented)&&(!mi.numholes)) printf(" Volume: %f \n", mi.Volume); else printf(" Volume: UNDEFINED (a closed oriented manifold is requested)\n"); printf(" Number of connected components: %d\n", mi.numcomponents); // Orientation if (!mi.Manifold) { printf(" Orientable Mesh: NO\n"); printf(" Oriented Mesh: NO\n"); } else { if (mi.Orientable) printf(" Orientable Mesh: YES\n"); else printf(" Orientable Mesh: NO\n"); if (mi.Oriented) printf(" Oriented Mesh: YES\n"); else printf(" Oriented Mesh: NO\n"); } // Manifold if (!mi.Manifold) printf(" Manifold: NO\n"); else printf(" Manifold: YES\n"); // Genus if (mi.Manifold) printf(" Genus: %d \n", mi.Genus); else printf(" Genus (n/a)\n"); // Mesh Type if (mi.Regular) printf(" Mesh Type: REGULAR\n"); else if (mi.Semiregular) printf(" Mesh Type: SEMIREGULAR\n"); else printf(" Mesh Type: IRREGULAR\n"); // Further details printf(" Number of duplicated vertices found: %d\n", mi.dv); printf(" Self Intersection: %s\n", mi.SelfIntersect?"Yes":"No"); } void SaveXMLInfo(MeshInfo &mi) { XMLTree doc; doc.initializeMain(); char s[256]; sprintf(s,"%d",mi.vn); doc.addNode(s, VALUE_INTEGER, "Number of Vertices"); sprintf(s,"%d",mi.fn); doc.addNode(s, VALUE_INTEGER, "Number of Faces"); if(mi.Manifold) doc.addNode("No", VALUE_BOOL,"Manifold"); else doc.addNode("Yes", VALUE_BOOL,"Manifold"); sprintf(s,"%d",mi.count_e); doc.addNode(s, VALUE_INTEGER,"Number of Edges"); sprintf(s,"%d",mi.count_fd); doc.addNode(s, VALUE_INTEGER,"Number of Degenerated Faces"); sprintf(s,"%d",mi.count_uv); doc.addNode(s, VALUE_INTEGER,"Number of unreferenced vertices"); sprintf(s,"%d",mi.numholes); doc.addNode(s, VALUE_INTEGER,"Number of Holes"); sprintf(s,"%d",mi.BEdges); doc.addNode(s, VALUE_INTEGER,"Number of Border Edges"); sprintf(s,"%f",mi.Volume); doc.addNode(s, VALUE_FLOAT,"Volume"); sprintf(s,"%d",mi.numcomponents); doc.addNode(s, VALUE_INTEGER,"Number of Connected Components"); sprintf(s,"%d",mi.Genus); doc.addNode(s, VALUE_INTEGER,"Genus"); if (mi.Regular) doc.addNode("REGULAR", VALUE_STRING,"Type of Mesh"); else if (mi.Semiregular) doc.addNode("SEMIREGULAR", VALUE_STRING,"Type of Mesh"); else doc.addNode("IRREGULAR", VALUE_STRING,"Type of Mesh"); if (!mi.Manifold) { doc.addNode("NO", VALUE_STRING,"Orientable Mesh"); doc.addNode("NO", VALUE_STRING,"Oriented Mesh"); } else { doc.addNode(mi.Orientable?"Yes":"No", VALUE_STRING,"Orientable Mesh"); doc.addNode(mi.Oriented?"Yes":"No", VALUE_STRING,"Oriented Mesh"); } sprintf(s,"%d",mi.dv); doc.addNode(s, VALUE_INTEGER,"Duplicated Vertices"); doc.addNode(mi.SelfIntersect?"Yes":"No", VALUE_STRING,"Self Intersection"); doc.finalizeMain(); doc.printXMLTree(); } void SaveHtmlInfo(MeshInfo &mi) { ofstream fout; fout.open("result.txt", ios::out); if (!fout) { printf("\n Impossible to create the HTML output file.\n"); } else { char dquotes = 32; // double quotes fout << "" << endl; fout << "...todo..." << endl; fout << "<\table>"; fout.close(); } } int main(int argc, char ** argv) { CMesh m; bool saveCleanMeshFlag = false; // Save the clean mesh bool verboseFlag = true; // Verbose mode on/off bool XmlFlag= false; // XML output enabled/disabled bool HtmlFlag = false; // HTML output enabled/disabled string SaveName; MeshInfo mi; initMeshInfo(mi); printf("\n -------------------------------\n" " TriMeshInfo V.1.2 \n" " http://vcg.isti.cnr.it\n" " release date: "__DATE__"\n" " -------------------------------\n\n\n"); // Parsing arguments /////////////////////////////////////////////// if (argc <= 1) { printf(MSG_ERR_N_ARGS); exit(-1); } mi.FileName = argv[1]; int i = 2; while (i < argc) { if (argv[i][0] == '-') { switch(argv[i][1]) { case 'q' : // Quiet mode, disable verbose mode verboseFlag = false; break; case 's': // Save the clean mesh with the name specified saveCleanMeshFlag = true; // Check clean mesh name (minimal check) if (i+1 >= argc) { printf(" Invalid output mesh name.\n\n"); exit(-1); } else if (argv[i+1][0] != '-') SaveName = argv[i+1]; else { printf(" Invalid output mesh name.\n\n"); exit(-1); } i++; break; case 'x' : // Enable XML output XmlFlag = true; break; case 'h' : // Enable HTML output HtmlFlag = true; break; default: printf(MSG_ERR_INVALID_OPTION, argv[i]); exit(0); break; } } i++; }; // Mesh loading ////////////////////////////////////////// OpenMesh(mi.FileName.c_str(),m); // Mesh processing ////////////////////////////////////////// printf(" Mesh processing...\n\n"); // Number of vertices mi.vn = m.vn; // Number of faces mi.fn = m.fn; // DEGENERATED FACES => (faces with area zero) mi.count_fd = tri::Clean::RemoveZeroAreaFace(m); // Update topology (face-to-face) tri::UpdateTopology::FaceFace(m); // UNREFERENCED VERTEX mi.count_uv = tri::Clean::RemoveUnreferencedVertex(m); // Update flags tri::UpdateFlags::Clear(m); // IS MANIFOLD mi.Manifold = tri::Clean::IsComplexManifold(m); // COUNT EDGES tri::Clean::CountEdges(m, mi.count_e, mi.boundary_e); // HOLES COUNT if(mi.Manifold) { mi.numholes = tri::Clean::CountHoles(m); mi.BEdges = tri::Clean::BorderEdges(m, mi.numholes); } // CONNECTED COMPONENTS mi.numcomponents = tri::Clean::ConnectedComponents(m); // ORIENTATION if (mi.Manifold) tri::Clean::IsOrientedMesh(m, mi.Oriented, mi.Orientable); // VOLUME (require a closed oriented manifold) if ((mi.Manifold)&&(mi.Oriented)&&(!mi.numholes)) { tri::Inertia mm; mm.Compute(m); mi.Volume = mm.Mass(); } // GENUS if(mi.Manifold) mi.Genus = tri::Clean::MeshGenus(m,mi.count_uv, mi.numholes, mi.numcomponents, mi.count_e); // REGULARITY tri::Clean::IsRegularMesh(m, mi.Regular, mi.Semiregular); // DUPLICATED VERTICES mi.dv = tri::Clean::RemoveDuplicateVertex(m); // SELF INTERSECTION mi.SelfIntersect = tri::Clean::SelfIntersections(m); // Mesh Information Output ////////////////////////////////////////// // Print mesh information if(verboseFlag) PrintMeshInfo(mi); // Save mesh information in XML format if(XmlFlag) SaveXMLInfo(mi); // Save mesh information in HTML format if (HtmlFlag) SaveHtmlInfo(mi); // Save the clean mesh if (saveCleanMeshFlag) { printf(" Save the 'clean' mesh..."); tri::io::Exporter::Save(m, SaveName.c_str()); printf(" done.\n\n"); } return 0; }