comparison 2d_feature_extraction.xml @ 7:048545339ced draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/ commit b8e0b656d417db6e2ad0f187fc3c5afff0c3acd7
author imgteam
date Tue, 06 Jan 2026 09:25:17 +0000
parents 8e3a52b74876
children
comparison
equal deleted inserted replaced
6:8e3a52b74876 7:048545339ced
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>validators.xml</import> 5 <import>validators.xml</import>
6 <token name="@TOOL_VERSION@">0.25.2</token> 6 <token name="@TOOL_VERSION@">0.25.2</token>
7 <token name="@VERSION_SUFFIX@">0</token> 7 <token name="@VERSION_SUFFIX@">1</token>
8 <xml name="features"> 8 <xml name="features">
9 <param name="features" type="select" label="Available features" multiple="true" display="checkboxes" 9 <param name="features" type="select" label="Available features" multiple="true" display="checkboxes"
10 help="*) Features marked with an asterisk are only available for 2-D images (not for 3-D images)."> 10 help="*) Features marked with an asterisk are only available for 2-D images (not for 3-D images).">
11 <option value="label" selected="true">Label from the label map</option> 11 <option value="label" selected="true">Label from the label map</option>
12 <yield/> 12 <yield/>
229 229
230 **Minor axis length:** The length of the minor axis of the ellipse that has the same normalized second central moments as the region. 230 **Minor axis length:** The length of the minor axis of the ellipse that has the same normalized second central moments as the region.
231 231
232 **Bounding box:** Bounding box `(min_row, min_col, max_row, max_col)`. Pixels belonging to the bounding box are in the half-open interval `[min_row; max_row)` and `[min_col; max_col)`. 232 **Bounding box:** Bounding box `(min_row, min_col, max_row, max_col)`. Pixels belonging to the bounding box are in the half-open interval `[min_row; max_row)` and `[min_col; max_col)`.
233 233
234 **Centroid:** Centroid coordinate tuple `(row, col)`. 234 **Centroid:** Centroid coordinates in separate columns ``centroid_x``, ``centroid_y``, and ``centroid_z`` when processing 3-D data.
235 235
236 **Eccentricity:** Eccentricity of the ellipse that has the same second-moments as the region. The eccentricity is the ratio of the focal distance (distance between focal points) over the major axis length. The value is in the interval [0, 1). When it is 0, the ellipse becomes a circle. 236 **Eccentricity:** Eccentricity of the ellipse that has the same second-moments as the region. The eccentricity is the ratio of the focal distance (distance between focal points) over the major axis length. The value is in the interval [0, 1). When it is 0, the ellipse becomes a circle.
237 237
238 **Equivalent diameter:** The diameter of a circle with the same area as the region. 238 **Equivalent diameter:** The diameter of a circle with the same area as the region.
239 239