Normalizing image brightness implemented#25
Open
dvnie1 wants to merge 2 commits intoalexlaurence:masterfrom
Open
Normalizing image brightness implemented#25dvnie1 wants to merge 2 commits intoalexlaurence:masterfrom
dvnie1 wants to merge 2 commits intoalexlaurence:masterfrom
Conversation
…ay = nibabel.load(inputfile).get_fdata() [get_data() -> get_fdata()], because prev version caused an error, with the changes it works
…l output images is the same, resulting in a heterogeneous image sequence
Contributor
|
Hi! I was checking your code, and there's something interesting I don't understand. Why do you normalize images using numpy.vectorize()? Why not call normalize function directly? What does np.vectorize do? Thanks! |
Author
Hi, it is basically an inline loop. It is needed, because my normalize() function only normalises one image at a time the way I implemented it. Feel free to change it, there are surely cleaner ways of implementing this :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I fixed a bug, that was caused by using
nibabel.load(inputfile).get_data(). Insteadnibabel.load(inputfile).get_fdata()should be used (get_fdata()instead ofget_data()).Besides that, I implemented the normalization of the input image brightness. This way, all output images have the same brightness and contrast, resulting in a heterogeneous image sequence. The issue was caused by the fact, that NIFTI images have brightness values from -3000 to 3000, but PNGs only from 0 to 255. This was solved with a basic linear transformation.