Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds RFOVE tool #89

Merged
merged 8 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ template.xml
template_shed.yml
.vscode
/create_csvs.py
.DS_Store
._*
8 changes: 8 additions & 0 deletions tools/rfove/.shed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
categories:
- Imaging
description: Perform segmentation region-based fitting of overlapping ellipses
long_description: RFOVE is completely unsupervised, operates without any assumption or prior knowledge on the object’s shape and extends and improves the Decremental Ellipse Fitting Algorithm (DEFA). Both RFOVE and DEFA solve the multi-ellipse fitting problem by performing model selection that is guided by the minimization of the Akaike Information Criterion on a suitably defined shape complexity measure. However, in contrast to DEFA, RFOVE minimizes an objective function that allows for ellipses with higher degree of overlap and, thus, achieves better ellipse-based shape approximation.
name: rfove
owner: imgteam
homepage_url: https://sites.google.com/site/costaspanagiotakis/research/cs
remote_repository_url: https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/
52 changes: 52 additions & 0 deletions tools/rfove/rfove.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<tool id="rfove" name="Perform segmentation region-based fitting of overlapping ellipses" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.05">
<description>with RFOVE</description>
<macros>
<token name="@TOOL_VERSION@">2023.11.12</token>
<token name="@VERSION_SUFFIX@">0</token>
</macros>
<edam_operations>
<edam_operation>operation_3443</edam_operation>
</edam_operations>
<xrefs>
<xref type="bio.tools">rfove</xref>
</xrefs>
<requirements>
<container type="docker">docker.io/kostrykin/rfove:@TOOL_VERSION@</container>
</requirements>
<command detect_errors="aggressive">
<![CDATA[
#set $neighborhood_size = "%d" % ($half_neighborhood_size.value * 2 + 1)
/rfove
${area_ub}
${min_area_max_area_ratio_ub}
${overlap_ub}
${neighborhood_size}
'${dataset}'

output.tiff
]]>
</command>
<inputs>
<param name="dataset" type="data" format="tiff,png" label="Dataset" />
<param name="area_ub" type="integer" label="Maximum ellipse area" min="5" value="250" />
<param name="min_area_max_area_ratio_ub" type="float" min="0" max="1" value="0.1" label="Upper bound of the ratio: minimum area / maximum area" />

<param name="overlap_ub" type="float" label="Maximum ellipse overlap" min="0" value="0.2" />
<param name="half_neighborhood_size" type="integer" label="Half neighborhood size" min="1" value="100" />
</inputs>
<outputs>
<data format="tiff" name="masks" from_work_dir="output.tiff" label="${tool.name} on ${on_string}" />
</outputs>
<tests>
<test>
<param name="dataset" value="BBBC033_C2_z28.png" />
<output name="masks" value="output.tiff" ftype="tiff" compare="sim_size" />
</test>
</tests>
<help>
RFOVE is completely unsupervised, operates without any assumption or prior knowledge on the object’s shape and extends and improves the Decremental Ellipse Fitting Algorithm (DEFA). Both RFOVE and DEFA solve the multi-ellipse fitting problem by performing model selection that is guided by the minimization of the Akaike Information Criterion on a suitably defined shape complexity measure. However, in contrast to DEFA, RFOVE minimizes an objective function that allows for ellipses with higher degree of overlap and, thus, achieves better ellipse-based shape approximation.
</help>
<citations>
<citation type="doi">10.1016/j.imavis.2019.09.001</citation>
</citations>
</tool>
Binary file added tools/rfove/test-data/BBBC033_C2_z28.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/rfove/test-data/output.tiff
Binary file not shown.