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

Addition of Image Quality Metrics #1911

Open
lauramurgatroyd opened this issue Aug 23, 2024 · 1 comment
Open

Addition of Image Quality Metrics #1911

lauramurgatroyd opened this issue Aug 23, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@lauramurgatroyd
Copy link
Member

lauramurgatroyd commented Aug 23, 2024

Description

In @RasmiaKulan's project we applied the following image quality metrics to reconstructions with FBP and iterative:

Signal to noise ratio (SNR):

  • this requires an ROI in a dataset
  • calculates the mean divided by the standard deviation in the ROI
  • Note: we already have PSNR - do we want to have both?

Contrast to noise ratio (CNR):

  • this requires two different ROIs to compare the contrast between
  • Calculates [mean(ROI1) - mean (ROI 2) ]/ stdev ROI2
  • There are other methods of calculating this so which one to implement is to be discussed

L2-Norm-Error:

  • takes two different images or ROIs in two different images
  • this is an assessment of the difference in pixel values
  • L2Norm(image1-image2)/L2Norm(image2)

We could add these image quality metrics into CIL, where we currently have some existing metrics:

# Licensed under the Apache License, Version 2.0 (the "License");

Some of the existing metrics, such as PSNR already exist in skimage.metrics so we could potentially make use of this instead and remove them from CIL https://scikit-image.org/docs/stable/api/skimage.metrics.html

@lauramurgatroyd lauramurgatroyd added the enhancement New feature or request label Aug 23, 2024
@lauramurgatroyd
Copy link
Member Author

Also related: #1836

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant