Massimiliano Corsini maxcorsini 2f2796a282 Shot::RescalingWorld now contains an additional parameter
to decide if rescale or not the focal length.
At the moment the intrinsics parameters loaded are assumed
to be correct, and hence all the calls to this method
do not use rescaling of the intrinsics.
2011-07-12 12:54:03 +00:00
..
2011-03-25 09:33:22 +00:00
2011-02-17 08:30:09 +00:00
2011-06-30 14:01:15 +00:00
2010-10-31 13:34:47 +00:00

Compiling MeshLab
Note:
Some plugins of MeshLab invokes functions exported by external libraries. You have to compile these libraries before attempting to compile the whole MeshLab's code. 

To compile MeshLab and all MeshLab plugins:
First compile the needed external libraries 

cd MESHLAB_DIRECTORY/src/external
qmake -recursive external.pro
make

then compile MeshLab and its plugins
cd MESHLAB_DIRECTORY/src/
qmake -recursive meshlab_full.pro
make

Alternatively you can directly compile only a subset of the whole meshlab by using the meshlab_mini.pro. This minimal subset does not require any external library (give a look at the .pro itself for more info).

cd MESHLAB_DIRECTORY/src/
qmake -recursive meshlab_mini.pro
make




For more complete info, please, refer to the meshlab wiki:
 http://meshlab.sourceforge.net/wiki/index.php/Compiling#Compiling