comparison skimage.xml @ 2:c84400b58260 draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/ridge_filter/ commit c20c8e46a6391ec9759f1ae513ce0a779933af96
author imgteam
date Tue, 06 Jan 2026 01:38:25 +0000
parents b8867c9e0526
children
comparison
equal deleted inserted replaced
1:b8867c9e0526 2:c84400b58260
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.22.0</token> 6 <token name="@TOOL_VERSION@">0.22.0</token>
7 <token name="@VERSION_SUFFIX@">1</token> 7 <token name="@VERSION_SUFFIX@">2</token>
8 <xml name="base_params"> 8 <xml name="base_params">
9 <param name="black_ridges" type="select" label="Mode of operation"> 9 <param name="black_ridges" type="select" label="Mode of operation">
10 <option value="true" selected="true">Enhance dark ridges (low image intensities)</option> 10 <option value="true" selected="true">Enhance dark ridges (low image intensities)</option>
11 <option value="false">Enhance bright ridges (high image intensities)</option> 11 <option value="false">Enhance bright ridges (high image intensities)</option>
12 </param> 12 </param>
18 <expand macro="base_params"/> 18 <expand macro="base_params"/>
19 <param name="alpha" type="float" min="0" value="0.5" label="Alpha" 19 <param name="alpha" type="float" min="0" value="0.5" label="Alpha"
20 help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a plate-like structure."/> 20 help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a plate-like structure."/>
21 <param name="beta" type="float" min="0" value="0.5" label="Beta" 21 <param name="beta" type="float" min="0" value="0.5" label="Beta"
22 help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a blob-like structure."/> 22 help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a blob-like structure."/>
23 <param name="gamma" type="float" min="0" value="" label="Gamma" optional="true"
24 help="Frangi correction constant that adjusts the filter's sensitivity to areas of high variance/texture/structure. Leave empty to use the default."/>
23 </xml> 25 </xml>
24 </macros> 26 </macros>
25 <creator> 27 <creator>
26 <expand macro="creators/bmcv"/> 28 <expand macro="creators/bmcv"/>
27 <expand macro="creators/kostrykin"/> 29 <expand macro="creators/kostrykin"/>
59 #end if 61 #end if
60 62
61 #if $filter.filter_type == "frangi" or $filter.filter_type == "hessian" 63 #if $filter.filter_type == "frangi" or $filter.filter_type == "hessian"
62 "alpha": $filter.alpha, 64 "alpha": $filter.alpha,
63 "beta": $filter.beta, 65 "beta": $filter.beta,
66 #if str($filter.gamma) != ""
67 "gamma": $filter.gamma,
68 #end if
64 #end if 69 #end if
65 70
66 #if $filter.filter_type == "laplace" 71 #if $filter.filter_type == "laplace"
67 "ksize": $filter.ksize, 72 "ksize": $filter.ksize,
68 #end if 73 #end if