mia-2ddistance
{-i io
} {-d io
} {-o string
} [
options
...]
This program evaluate the average or maximum distance of a mask given by a binary image to an image representing a distance map and prints the result to stdout. The distance map can be obtained by running the filter 'diatance' on a binary image.
input image. For supported file types see Plugin type: 2dimage/io
distance field image (floating point). For supported file types see Plugin type: 2dimage/io
output file, '-': write to stdout
distance scaling factor
distance measuring method
avg: | use average |
max: | use maximum |
raw: | collect raw values as vector |
verbosity of output, print messages of given level and higher priorities. Supported priorities starting at lowest level are:
debug: | Debug output |
message: | Normal messages |
info: | Low level messages |
error: | Report errors |
fatal: | Report only fatal errors |
trace: | Function call trace |
warning: | Warnings |
fail: | Report test failures |
print copyright information
print this help
print a short help
print the version number and exit
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).
Evaluate the maximum distance of mask m.v by using the distance field distance.v and scale by factor 2.0. The result is written to stdout
mia-2ddistance -i m.v -d distance.v -s 2.0 -m max
Gert Wollny