table of contents
mia-meshfilter(1) | General Commands Manual | mia-meshfilter(1) |
NAME¶
mia-meshfilter - Run filters on a 3D mesh.
SYNOPSIS¶
mia-meshfilter -i <in-file> -o <out-file> [options] <PLUGINS:mesh/filter>
DESCRIPTION¶
mia-meshfilter This program runs a series filters on a
given input mesh. The filters are given as extra parameters on the command
line and are run in the order in which they are given. To obtain a list of
available filters you may run
'mia-plugin-help mesh/filter' from the command line
OPTIONS¶
- -i --in-file=(input, required); io
- input mesh to be filtered
For supported file types see PLUGINS:mesh/io - -o --out-file=(output, required); io
- output mesh that have been filtered
For supported file types see PLUGINS:mesh/io
Help & Info¶
- -V --verbose=warning
- verbosity of output, print messages of given level and higher priorities. Supported priorities starting at lowest level are:
- --copyright
- print copyright information
- -h --help
- print this help
- -? --usage
- print a short help
- --version
- print the version number and exit
Processing¶
- --threads=-1
- Maxiumum number of threads to use for processing,This number should be lower or equal to the number of logical processor cores in the machine. (-1: automatic estimation).
PLUGINS: mesh/filter¶
- addscale
- This filter sorts sets the scale parameter for each vertex from a 3D image. Image and mesh are expected to be in the same physical coordinate space., supported parameters are:
- deltribynormal
- This filter deletes all triangles that have a normal that differs by the given angle from the provided direction., supported parameters are:
- scale
- This plug-in provides a filter to scale triangulat meshes by a given strategy, supported parameters are:
- selectbig
- This filter selects the component with the highest number of triangles from a mesh that is actually composed of disconnected components. Components are considered to be disconnected if they don't share a common edge (they might share a common vertex though
- vtxsort
- This filter sorts the vertices of a mesh according to the given direction. Specifically, the dot product between the given direction and the vertices will be ordered ascending, supported parameters are:
PLUGINS: mesh/io¶
- datapool
- Virtual IO to and from the internal data pool
- off
- plugin to load/store some Geomview OFF files. Supported is only the ASCII format 3D meshes with normales and per-vertex RGB colors. Alpha values and texture coordinates, as well as per face properties are ignored. Polygons are read and triangulated.
- ply
- Ply triangle mesh input/output support
- stl
- STL mesh io plugin
- vista
- Vista/Simbio triangle mesh input/output support
- vtk
- A subset of VTK mesh in-and output: Triangle meshes are written, and triangle meshes and triangle strips are read. Additional per-vertex attributes are supported: 'normals', 'colors' for three component colors, and 'scale' for a scalar value attached to each vertex. The data is written by the vtkPolyDataWriter in binary format.
EXAMPLE¶
Run an isotropic scaling on input.vmesh to fit it into the box defined by the corners <0,0,0> - <128,128,128> and save the result to output.vmesh
mia-meshfilter -i input.vmesh -o output.vmesh scale:strategy=iso-fitbox,box-start=[<0,0,0>],box-end=[<128,128,128>]
AUTHOR(s)¶
Gert Wollny
COPYRIGHT¶
This software is Copyright (c) 1999‐2015 Leipzig, Germany and Madrid, Spain. It comes with ABSOLUTELY NO WARRANTY and you may redistribute it under the terms of the GNU GENERAL PUBLIC LICENSE Version 3 (or later). For more information run the program with the option '--copyright'.
v2.4.7 | USER COMMANDS |