-
Notifications
You must be signed in to change notification settings - Fork 396
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
Network ordering of Kong2018_MSHBM #4
Comments
Thanks for making the code for this method open and so easy to use! I have a question that is related to this issue, although a bit distinct. While the code you have posted here is useful in the case of matching an experiment-specific set of priors to the GSP parcellation, I believe that the order of the clusters in the GSP prior set itself doesn't match those in the original Yeo2011 publication. I refer to the priors in And likewise, the provided group parcellation in The latter mat file does contain a colormap that properly plots the parcellation with the expected colors. But the labels don't match what I expect. If I want an individual-specific parcellation with labels that match Yeo2011, should I manually implement a matching algorithm based on the colors / eye / some other system? Or am I missing something in the CBIG code that will transform the labels for me? |
@mwaskom The color table in
|
Thank you for providing these excellent resources! We would like to perform the Hungarian matching algorithm on individual parcellations in fsaverage6 resolution. Are there group priors available in fsaverage6 space? Or alternatively, how would I go about resampling the fsaverage5 GSP priors to fsaverage6 space? Thanks again! |
@peter3200 We use nearest neighbor algorithm to upsample parcellation from fsaverage5 to fsaverage6. However, this will cause some medial wall issues. Specifically, if we upsample parcellation from fs5 to fs6, we will get a upsampled medial wall area in fs6, which differs from medial wall area of fs6 template defined by Freesurfer. The difference is not big, but you might be careful with it. Here is the code for upsampling:
|
We are trying to release a few scripts to provide the network label with the network name.
The only problem might be that the network structure could be very different if you are training from scratch on a different dataset. Here are two cases:
Use our estimated group priors to estimate individual parcellation
The group atlas will be utilized to initialize the algorithm, therefore, the network order in the individual parcellation will be the same as the group parcellation.
We provided two group priors which are generated by a group atlas estimated by GSP dataset in fsaverage5 space, and a group atlas estimated by HCP dataset in fsLR_32k space.
I will provide these group atlases with corresponding network labels.
Use your own data to train the model and estimate group priors
If you train on your own data, then your group atlas will be different from ours, the network ordering will also be different. In this way, you will have to run a Hungarian match algorithm to match the networks in your estimated group atlas with our atlases.
To do that, you can use the following code:
HCP_40sub_1000iter_17nets_cen_sm4.mat
.I will try to release all above commands and other useful scripts later.
The text was updated successfully, but these errors were encountered: