-
Notifications
You must be signed in to change notification settings - Fork 122
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
Add Visual Saliency-induced Index (VSI) #119
Conversation
Codecov Report
@@ Coverage Diff @@
## master #119 +/- ##
==========================================
+ Coverage 87.76% 88.81% +1.04%
==========================================
Files 15 17 +2
Lines 1275 1421 +146
==========================================
+ Hits 1119 1262 +143
- Misses 156 159 +3
Continue to review full report at Codecov.
|
Nice job! Code that I used
While computing VSI score for those 2 images in OCTAVE (I don't have MATLAB installed) produces score
Difference is quite significant. Can you comment on that? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice one @denproc 👍
Only little comments from me 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Can be merged unless @zakajd has some additional comments
def test_vsi_compare_with_matlab(device) -> None: | ||
prediction = torch.tensor(np.array(Image.open('tests/assets/I01.BMP'))).permute(2, 0, 1) | ||
target = torch.tensor(np.array(Image.open('tests/assets/i01_01_5.bmp'))).permute(2, 0, 1) | ||
predicted_score = vsi(prediction, target, data_range=255, reduction='none') | ||
target_score = torch.tensor([0.96405]).to(predicted_score) | ||
assert torch.allclose(predicted_score, target_score), f'Expected result similar to MATLAB,' \ | ||
f'got diff{predicted_score - target_score}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me 👍
Merging
Closes #115
Proposed Change
Let's merge #116 first.