Mercurial > repos > imgteam > background_removal
comparison background_removal.xml @ 1:6e9e98a7be4e draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/background_removal commit 649a1e6ecb925bed885a8477fe82dfd9dfea8baa
author | imgteam |
---|---|
date | Tue, 30 Jul 2024 08:08:50 +0000 |
parents | e2c6bedc6b73 |
children |
comparison
equal
deleted
inserted
replaced
0:e2c6bedc6b73 | 1:6e9e98a7be4e |
---|---|
2 <description>with scikit-image</description> | 2 <description>with scikit-image</description> |
3 <macros> | 3 <macros> |
4 <import>creators.xml</import> | 4 <import>creators.xml</import> |
5 <import>tests.xml</import> | 5 <import>tests.xml</import> |
6 <token name="@TOOL_VERSION@">0.24.0</token> | 6 <token name="@TOOL_VERSION@">0.24.0</token> |
7 <token name="@VERSION_SUFFIX@">0</token> | 7 <token name="@VERSION_SUFFIX@">1</token> |
8 </macros> | 8 </macros> |
9 <creator> | 9 <creator> |
10 <expand macro="creators/rmassei"/> | 10 <expand macro="creators/rmassei"/> |
11 </creator> | 11 </creator> |
12 <requirements> | 12 <requirements> |
17 python "$__tool_directory__/background_removal.py" $input_image $filter $radius $output | 17 python "$__tool_directory__/background_removal.py" $input_image $filter $radius $output |
18 ]]> | 18 ]]> |
19 </command> | 19 </command> |
20 <inputs> | 20 <inputs> |
21 <param name="input_image" type="data" format="tiff, jpg, jpeg, png, tif" label="Input Image"/> | 21 <param name="input_image" type="data" format="tiff, jpg, jpeg, png, tif" label="Input Image"/> |
22 <param name="filter" type="select" label="Select Filter"> | 22 <param name="filter" type="select" label="Method"> |
23 <option value="rolling_ball">Rolling-ball algorithm</option> | 23 <option value="rolling_ball">Rolling-ball algorithm</option> |
24 <option value="dog">Difference of Gaussians</option> | 24 <option value="dog">Difference of Gaussians</option> |
25 <option value="top_hat">Top-hat filter</option> | 25 <option value="top_hat">Top-hat filter</option> |
26 </param> | 26 </param> |
27 <param name="radius" type="float" label="Radius" value="20"/> | 27 <param name="radius" type="float" label="Radius" value="20" help="The radius of the local neighborhood (in pixels)."/> |
28 </inputs> | 28 </inputs> |
29 <outputs> | 29 <outputs> |
30 <data name="output" format="tiff" label="Background substraction output"/> | 30 <data name="output" format="tiff" label="Background substraction output"/> |
31 </outputs> | 31 </outputs> |
32 <tests> | 32 <tests> |