UNPKG

biswebnode

Version:

A node.js implementation of BioImage Suite Web command line tools in Javascript and WebAssembly

106 lines (103 loc) 3.4 kB
<?xml version="1.0" encoding="utf-8"?> <executable> <category>BisWEB</category> <title>Regularize Objectmap </title> <description>Performs Objectmap regularization. An objectmap is an image where the values refer to different regions. This modules uses an MRF-based algorithm to smooth the segmentation map. It is similar to a median filter for a binary mask.</description> <version>1.3.0b2</version> <documentation-url>https://bioimagesuiteweb.github.io/bisweb-manual</documentation-url> <license>GPL v2</license> <contributor>Xenios Papademetris</contributor> <acknowledgements>Funding for this work was provided by the NIH Brain Initiative under grant R24 MH114805.</acknowledgements> <parameters> <label>Standard</label> <description>Standard Parameters</description> <double> <name>Smoothness</name> <label>Smoothness</label> <description>If > 0 then apply spatial regularization MRF model with this value as the weight</description> <longflag>--smoothness</longflag> <default>2</default> <constraints> <minimum>1</minimum> <maximum>32</maximum> </constraints> </double> </parameters> <parameters advanced="true"> <label>Advanced</label> <description>Advanced Parameters</description> <double> <name>MRF Convergence</name> <label>MRF Convergence</label> <description>Convergence parameter for the MRF iterations</description> <longflag>--convergence</longflag> <default>0.2</default> <constraints> <minimum>0.01</minimum> <maximum>0.5</maximum> </constraints> </double> <integer> <name>Iterations</name> <label>Iterations</label> <description>Number of MRF iterations</description> <longflag>--iterations</longflag> <default>8</default> <constraints> <minimum>1</minimum> <maximum>20</maximum> </constraints> </integer> <integer> <name>Internal Iterations</name> <label>Internal Iterations</label> <description>Number of Internal iterations</description> <longflag>--internaliterations</longflag> <default>4</default> <constraints> <minimum>1</minimum> <maximum>20</maximum> </constraints> </integer> <string-enumeration> <name>Debug</name> <label>Debug</label> <description>Toggles debug logging</description> <longflag>--debug</longflag> <default>false</default> <element>true</element> <element>false</element> </string-enumeration> <string-enumeration> <name>SlicerProgress</name> <label>SlicerProgress</label> <description>Enables progress xml outputs for Slicer</description> <longflag>--slicerprogress</longflag> <default>true</default> <element>true</element> <element>false</element> </string-enumeration> </parameters> <parameters> <label>Inputs</label> <description>Input Objects</description> <image fileExtensions=".nii.gz,.nii"> <name>Input Image</name> <label>Input Image</label> <description>The binary mask to be regularized</description> <longflag>--input</longflag> <channel>input</channel> </image> </parameters> <parameters> <label>Outputs</label> <description>Output Objects</description> <image fileExtensions=".nii.gz,.nii"> <name>Output Image</name> <label>Output Image</label> <description>The output mask</description> <longflag>--output</longflag> <channel>output</channel> </image> </parameters> </executable>