I am working on a project where I need to evaluate models in various viewing directions and distances (zoom in/out) using MeshLab. I would greatly appreciate any assistance on how to determine the distance and direction of the model accurately.
If there are any transformation matrices for direction and distance of the model, please let me know how to find them in meshlab.
There is two transformation matrix that affect each model
The
model matrix
, which is one tranformation (rotation, translation, scale) per each mesh loaded in meshlab. It is initialised to the Identity Matrix every time you import a mesh in meshlab. You can set/read this matrix using the filterMatrix: Set/Copy Transformation
or change it with any of the transformation filter.The
view matrix
orcamera matrix
, which is the transformation applied to the camera, so it has effect on every modeld loaded in meshlab. This is the one you change when you drag the mouse on the screen. It gives the impression of being rotating the mesh in the screen, but in reality it is moving the camera in an orbit around the meshes loaded in the screen.I will assume that you are interested in the
view matrix
because you are refering to distances and zoom values, which is data related to the camera.The
view matrix
is changed every time we import a new mesh into our project, because meshlab move the camera to ensure every model in the project is visible in the screen. Of course, it is changed again when you click and drag the mouse in the render area.You can get the
view matrix
and every other configuration of the camera using the MenuWindows->Copy Camera Setting to Clipboard
The information of the camera will be written as a XML string to the clipboard. You can paste this screen into notepad or other text editor. The XML string has always this format
The information you are interested at can be extracted from this string. For example:
Compute geometric measures
filter and compute the distance from the camera to your "favorite center". which could be the center of the bounding box, the center of mass, the vertices barycenter or the Thin shell (faces) barycenter.