changeset 2:f37d2ad5f532 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:39 +0000
parents a683c87ec261
children
files skimage.xml
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/skimage.xml	Mon Dec 15 22:25:53 2025 +0000
+++ b/skimage.xml	Tue Jan 06 01:38:39 2026 +0000
@@ -4,7 +4,7 @@
         <import>creators.xml</import>
         <import>tests.xml</import>
         <token name="@TOOL_VERSION@">0.22.0</token>
-        <token name="@VERSION_SUFFIX@">1</token>
+        <token name="@VERSION_SUFFIX@">2</token>
         <xml name="base_params">
             <param name="black_ridges" type="select" label="Mode of operation">
                 <option value="true" selected="true">Enhance dark ridges (low image intensities)</option>
@@ -20,6 +20,8 @@
                    help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a plate-like structure."/>
             <param name="beta" type="float" min="0" value="0.5" label="Beta"
                    help="Frangi correction constant that adjusts the filter's sensitivity to deviation from a blob-like structure."/>
+            <param name="gamma" type="float" min="0" value="" label="Gamma" optional="true"
+                   help="Frangi correction constant that adjusts the filter's sensitivity to areas of high variance/texture/structure. Leave empty to use the default."/>
         </xml>
     </macros>
     <creator>
@@ -61,6 +63,9 @@
             #if $filter.filter_type == "frangi" or $filter.filter_type == "hessian"
                 "alpha": $filter.alpha,
                 "beta": $filter.beta,
+                #if str($filter.gamma) != ""
+                    "gamma": $filter.gamma,
+                #end if
             #end if
 
             #if $filter.filter_type == "laplace"