Example of OFF generation from a Display3D object.
- See also:
- Export 3D mesh in OFF and OBJ format
Visualisation of the Display3D mesh export using MeshLab software ( http://meshlab.sourceforge.net).
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/Display3D.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/helpers/StdDefs.h"
#include "ConfigExamples.h"
using namespace std;
using namespace DGtal;
int main( int , char** )
{
std::string inputFilename = examplesPath + "samples/Al.100.vol";
viewer << set3d ;
viewer >> "exportMeshToOFF.off";
return 0;
}