comparison imagej2_sharpen.xml @ 0:a84f2cbf091b draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 commit b08f0e6d1546caaf627b21f8c94044285d5d5b9c-dirty"
author imgteam
date Tue, 17 Sep 2019 17:08:08 -0400
parents
children 4c43ba752312
comparison
equal deleted inserted replaced
-1:000000000000 0:a84f2cbf091b
1 <?xml version='1.0' encoding='UTF-8'?>
2 <tool id="imagej2_sharpen" name="Sharpen" version="@WRAPPER_VERSION@.0">
3 <description></description>
4 <macros>
5 <import>imagej2_macros.xml</import>
6 </macros>
7 <expand macro="fiji_requirements" />
8 <command>
9 <![CDATA[
10 python $__tool_directory__/imagej2_sharpen.py
11 --input "$input"
12 --input_datatype $input.ext
13 --jython_script $__tool_directory__/imagej2_sharpen_jython_script.py
14 --output_datatype $output.ext
15 --output "$output"
16 ]]>
17 </command>
18 <inputs>
19 <param format="bmp,eps,gif,jpg,pcx,pgm,png,psd,tiff" name="input" type="data" label="Select image"/>
20 </inputs>
21 <outputs>
22 <data name="output" format_source="input" label="${tool.name} on ${on_string}"/>
23 </outputs>
24 <tests>
25 <test>
26 <param name="input" value="blobs.gif" />
27 <output name="output" file="blobs_sharpen.gif" compare="sim_size" />
28 </test>
29 </tests>
30 <help>
31
32 **What it does**
33
34 <![CDATA[
35
36 Increases contrast and accentuates detail in the image, but may also accentuate noise. This filter
37 uses the following weighting factors to replace each pixel with a weighted average of the 3x3 neighborhood.
38
39 ``-1 -1 -1``
40
41 ``-1 12 -1``
42
43 ``-1 -1 -1``
44
45 ]]>
46
47 </help>
48 <expand macro="fiji_headless_citations" />
49 </tool>