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

RL: Perform voxel-by-voxel division #82

Merged
merged 3 commits into from
Jul 11, 2021
Merged

Conversation

bathomas
Copy link
Collaborator

The ITK DivideFilter will set the resultant image to ::max when the denominator is equal to zero. This causes RL to fail and produce a corrupt output image.

fixes #81

Copy link
Collaborator

@KrisThielemans KrisThielemans left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd forgotten how verbose ITK is...


while ( !divIt.IsAtEnd() )
{
if (denomIt.Get() > 1e-4)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is very dangerous as it assumes a certain scale in the image. The STIR solution is to use a number relative to the max (a median would be better but much more expensive). Even that is creating trouble for parametric images (as it uses a global max), see UCL/STIR#906. However, maybe that isn't so much of a problem here)

@bathomas bathomas merged commit a44f65b into UCL:master Jul 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Richardson-Lucy can create very high voxel values at alternating iterations
2 participants