Skip to content

Commit

Permalink
Add note on 'bad features' warning for skewness and kurtosis
Browse files Browse the repository at this point in the history
  • Loading branch information
k-dominik committed Apr 18, 2024
1 parent 6893110 commit e28cc36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ilastik/plugins_default/vigra_objfeats.py
Expand Up @@ -147,6 +147,8 @@ def fill_properties(self, features):
features[feature_name]["detailtext"] = (
"Skewness of the intensity distribution inside the object, also known as the third standardized moment. This feature measures the asymmetry of the "
"intensity distribution inside the object. For multi-channel data, this feature is computed channel-wise. "
"If all pixels in an object have the same value, you may encounter a 'bad features' warning when computing Skewness. "
"Skewness will have a value of 0 for these objects."
)
features[feature_name]["group"] = "Intensity Distribution"

Expand All @@ -155,6 +157,8 @@ def fill_properties(self, features):
features[feature_name]["detailtext"] = (
"Kurtosis of the intensity distribution inside the object, also known as the fourth standardized moment. This feature measures the heaviness of the "
"tails for the distribution of intensity over the object's pixels. For multi-channel data, this feature is computed channel-wise. "
"If all pixels in an object have the same value, you may encounter a 'bad features' warning when computing Kurtosis. "
"Kurtosis will have a value of 0 for these objects."
)
features[feature_name]["group"] = "Intensity Distribution"

Expand Down

0 comments on commit e28cc36

Please sign in to comment.