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.
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
Feat: Improve cerebellum atlas #26
base: main
Are you sure you want to change the base?
Feat: Improve cerebellum atlas #26
Changes from all commits
989464f
592a88f
5cd82ff
cbf2d34
0c3e742
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Revert this change here too. The cerebellum is not like the isocortex and does not have two hemispheres. Do not get me wrong there are some hemispherical regions but all the vermal regions (e.g. Lingula, Declive, etc.) are at the center of the cerebellum and splitting them does not make sense: there is no separation.
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.
yes, this is tricky, I have to figure out how to do, as here we do per lobule, and for example Simple Lobule is not near the center, so it has two parts, one in each hemisphere
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.
probably this should be done on a subregion basis, I'll play around with it
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.
@drodarie , would this this correct?
I detect hemispheres if they have voxel at the halfplane +- 1 voxel.
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.
The has_hemisphere feature was created to prevent an orientation field that is computed on one hemisphere to affect the other one. But this has an effect only when they directly face each other and are very close to each other. This is the case for isocortex but not for the cerebellar cortex because we deal with each subregion individually.
I believe your change would have close to no effect here. More, this means that you need to compute the orientation field twice for each hemispherical subregion.
IMO, there is a lack of a grounded explanation for this change.