Mercurial > repos > thomaswollmann > projective_transformation
comparison projective_transformation.xml @ 0:e3e4b058db67 draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/projective_transformation/ commit 787ebcc8daa1834214bc92c201c921c704ef2d1f
author | thomaswollmann |
---|---|
date | Mon, 07 Jan 2019 05:38:46 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e3e4b058db67 |
---|---|
1 <?xml version="1.0"?> | |
2 <tool name="Projective Transformation" id="ip_projective_transformation" version="0.0.4"> | |
3 <description>Projective Transformation</description> | |
4 <requirements> | |
5 <requirement type="package" version="0.14.0">scikit-image</requirement> | |
6 <requirement type="package" version="0.23.4">pandas</requirement> | |
7 <requirement type="package" version="1.15.4">numpy</requirement> | |
8 <!--<requirement type="package" version="1.1.0">scipy</requirement>--> | |
9 </requirements> | |
10 <command> | |
11 <![CDATA[ | |
12 python '$__tool_directory__/projective_transformation.py' | |
13 '$fixed_image' | |
14 '$moving_image' | |
15 '$warp_matrix' | |
16 ./out.png | |
17 && mv ./out.png '$out' | |
18 ]]> | |
19 </command> | |
20 <inputs> | |
21 <param name="moving_image" type="data" format="png" label="Moving Image" /> | |
22 <param name="fixed_image" type="data" format="png" label="Fixed Image" /> | |
23 <param name="warp_matrix" type= "data" format="csv" label="Warp Matrix" /> | |
24 </inputs> | |
25 <outputs> | |
26 <data format="png" name="out" /> | |
27 </outputs> | |
28 <tests> | |
29 <test> | |
30 <param name="fixed_image" value="sample1.png"/> | |
31 <param name="moving_image" value="sample2.png"/> | |
32 <param name="warp_matrix" value="warp_matrix.csv"/> | |
33 <output name="out" value="yam.png" ftype="png" compare="sim_size"/> | |
34 </test> | |
35 </tests> | |
36 <help> | |
37 This tool performs a projective transformation of the input (moving) image so that it fits the fixed image. | |
38 </help> | |
39 <citations> | |
40 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> | |
41 </citations> | |
42 </tool> |