GSoC2011SfM  0.1
Google Summer of Code 2011: Structure from motion
D:/Travail/These/Determination caracteristiques camera/GSoC/SfM/src/Mesh.cpp
00001 #include "Mesh.h"
00002 #include "TracksOfPoints.h"
00003 
00004 namespace OpencvSfM{
00005 
00006   Polygon::Polygon( )
00007   {
00008   }
00009 
00010   void Polygon::addPoint( const cv::Ptr< TrackOfPoints > point3D )
00011   {
00012     vertices.push_back( point3D );
00013   }
00014 
00015   Mesh::Mesh( )
00016   {
00017   }
00018 
00019   void Mesh::addPolygon( const cv::Ptr< Polygon > poly )
00020   {
00021     polygons.push_back( poly );
00022   }
00023 
00024 }
 All Classes Functions Variables