comparison scale_image.xml @ 6:72b8a6b7661b draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/ commit c55311bbe4c3d7e0039c77785509a150864bb272
author imgteam
date Thu, 17 Oct 2024 10:47:27 +0000
parents 85666e555698
children
comparison
equal deleted inserted replaced
5:85666e555698 6:72b8a6b7661b
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.18.3</token> 6 <token name="@TOOL_VERSION@">0.18.3</token>
7 <token name="@VERSION_SUFFIX@">1</token> 7 <token name="@VERSION_SUFFIX@">2</token>
8 </macros> 8 </macros>
9 <creator> 9 <creator>
10 <expand macro="creators/bmcv" /> 10 <expand macro="creators/bmcv" />
11 </creator> 11 </creator>
12 <edam_operations> 12 <edam_operations>
35 35
36 && mv ./output.${input.ext} ./output 36 && mv ./output.${input.ext} ./output
37 37
38 ]]></command> 38 ]]></command>
39 <inputs> 39 <inputs>
40 <param name="input" type="data" format="png" label="Image file"/> 40 <param name="input" type="data" format="png,tiff" label="Image file"/>
41 <param argument="--scale" type="text" value="1" label="Scaling factor" help="Use either a single scaling factor (uniform scaling), or a comma-separated list of scaling factors (anistropic scaling). For a 2-D single-channel or RGB image, the first scaling factor corresponds to the image width and the second corresponds to the image height. For images with 3 or more axes, the last axis is assumed to correspond to the image channels if uniform scaling is used (a single value)."/> 41 <param argument="--scale" type="text" value="1" label="Scaling factor" help="Use either a single scaling factor (uniform scaling), or a comma-separated list of scaling factors (anistropic scaling). For a 2-D single-channel or RGB image, the first scaling factor corresponds to the image width and the second corresponds to the image height. For images with 3 or more axes, the last axis is assumed to correspond to the image channels if uniform scaling is used (a single value)."/>
42 <param argument="--order" type="select" label="Interpolation method"> 42 <param argument="--order" type="select" label="Interpolation method">
43 <option value="0">Nearest-neighbor</option> 43 <option value="0">Nearest-neighbor</option>
44 <option value="1" selected="true">Bi-linear</option> 44 <option value="1" selected="true">Bi-linear</option>
45 <option value="2">Bi-cubic</option> 45 <option value="2">Bi-cubic</option>