melage 0.0.68__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- assets/copyright.png +0 -0
- assets/resource/color/FreeSurferColorLUT.txt +2006 -0
- assets/resource/color/LUT_30.txt +31 -0
- assets/resource/color/SynthSeg.txt +34 -0
- resource/color/Simple.txt → assets/resource/color/lut_prostate.txt +20 -18
- assets/resource/horizontalview.png +0 -0
- assets/resource/theme/create_ticks.py +85 -0
- assets/resource/theme/rc/checkbox_checked.png +0 -0
- assets/resource/theme/rc/checkbox_checked@2x.png +0 -0
- assets/resource/theme/rc/checkbox_checked_disabled.png +0 -0
- assets/resource/theme/rc/checkbox_checked_disabled@2x.png +0 -0
- assets/resource/theme/rc/checkbox_checked_focus.png +0 -0
- assets/resource/theme/rc/checkbox_checked_focus@2x.png +0 -0
- assets/resource/theme/rc/checkbox_checked_pressed.png +0 -0
- assets/resource/theme/rc/checkbox_checked_pressed@2x.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate@2x.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_disabled.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_disabled@2x.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_focus.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_focus@2x.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_pressed.png +0 -0
- assets/resource/theme/rc/checkbox_indeterminate_pressed@2x.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked@2x.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_disabled.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_disabled@2x.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_focus.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_focus@2x.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_pressed.png +0 -0
- assets/resource/theme/rc/checkbox_unchecked_pressed@2x.png +0 -0
- assets/resource/verticalview.png +0 -0
- assets/resource/zoom_in.png +0 -0
- assets/resource/zoom_neutral (copy).png +0 -0
- assets/resource/zoom_neutral.png +0 -0
- assets/resource/zoom_out.png +0 -0
- data/MNI/mni_icbm152_t1_tal_nlin_sym_09a.nii +0 -0
- data/MNI/mni_icbm152_t1_tal_nlin_sym_09a_masked.nii.gz +0 -0
- data/MNI/mni_icbm152_t1_tal_nlin_sym_09a_seg.nii.gz +0 -0
- melage/__init__.py +1 -1
- melage/config/__init__.py +100 -0
- melage/core/Registration/registration.py +54 -0
- melage/{utils/readData.py → core/io.py} +12 -4
- melage/{widgets/melageAbout.py → dialogs/AboutDialog.py} +1 -1
- melage/dialogs/MaskOperationsDialog.py +146 -0
- melage/dialogs/MaskingDialog.py +139 -0
- melage/dialogs/RegistrationDialog.py +311 -0
- melage/{widgets/ImageThresholding.py → dialogs/ThresholdingDialog.py} +2 -2
- melage/dialogs/TransformationDialog.py +275 -0
- melage/dialogs/__init__.py +9 -0
- melage/dialogs/dynamic_gui.py +327 -0
- melage/{widgets/fileDialog_widget.py → dialogs/helpers/FileDialog.py} +226 -1
- melage/dialogs/helpers/__init__.py +5 -0
- melage/main.py +13 -13
- melage/{widgets/mainwindow_widget.py → mainwindow_widget.py} +1434 -1408
- melage/plugins/N4_bias/N4.py +115 -0
- melage/plugins/N4_bias/N4_schema.py +40 -0
- melage/plugins/N4_bias/main/utils.py +46 -0
- melage/plugins/__init__.py +2 -0
- melage/plugins/bet/bet.py +176 -0
- melage/plugins/bet/bet_schema.py +73 -0
- melage/{widgets/brain_extraction.py → plugins/bet/main/BET.py} +51 -316
- melage/plugins/change_coord/change_coord.py +197 -0
- melage/plugins/change_coord/change_coord_schema.py +31 -0
- melage/plugins/change_coord/main/utils.py +15 -0
- melage/{widgets/Segmentation → plugins/esfcm/main}/FCM.py +3 -5
- melage/plugins/esfcm/main/test.py +57 -0
- melage/{widgets/Segmentation → plugins/esfcm/main}/utils.py +20 -0
- melage/plugins/esfcm/tissue_segmentation.py +124 -0
- melage/plugins/esfcm/tissue_segmentation_schema.py +33 -0
- melage/plugins/masking_operation/mo.py +115 -0
- melage/plugins/masking_operation/mo_schema.py +33 -0
- melage/plugins/mga_net/MGA_Net.py +145 -0
- melage/plugins/mga_net/MGA_Net_schema.py +29 -0
- melage/plugins/mga_net/main/figures/Network.txt +1 -0
- melage/{widgets/DeepLModels/new_unet.py → plugins/mga_net/main/model/mga_net.py} +3 -3
- melage/plugins/mga_net/main/model/utils.py +258 -0
- melage/plugins/mga_net/main/test_mgaNet.py +134 -0
- melage/plugins/resize/resize.py +136 -0
- melage/plugins/resize/resize_schema.py +41 -0
- melage/plugins/ui_helpers.py +144 -0
- melage/plugins/warpseg/WarpSeg.py +195 -0
- melage/plugins/warpseg/WarpSeg_schema.py +41 -0
- melage/plugins/warpseg/__init__.py +2 -0
- melage/plugins/warpseg/warpseg_main/data_reader/DDSet.py +303 -0
- melage/plugins/warpseg/warpseg_main/data_reader/DDSetSeg.py +279 -0
- melage/plugins/warpseg/warpseg_main/data_reader/__init__.py +60 -0
- melage/plugins/warpseg/warpseg_main/data_reader/baseData.py +18 -0
- melage/plugins/warpseg/warpseg_main/data_reader/utils.py +267 -0
- melage/plugins/warpseg/warpseg_main/dist_utils.py +18 -0
- melage/plugins/warpseg/warpseg_main/requirements.txt +10 -0
- melage/plugins/warpseg/warpseg_main/test.py +272 -0
- melage/plugins/warpseg/warpseg_main/train.py +432 -0
- melage/plugins/warpseg/warpseg_main/train_reg.py +373 -0
- melage/plugins/warpseg/warpseg_main/verify_post_process.py +73 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/__init__.py +45 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/py/__init__.py +1 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/py/utils.py +99 -0
- melage/{widgets/Synthstrip.py → plugins/warpseg/warpseg_main/voxelmorph/torch/Unet.py} +71 -51
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/__init__.py +4 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/layers.py +97 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/losses.py +462 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/modelio.py +77 -0
- melage/{widgets/DeepLModels/InfantSegment/Unet.py → plugins/warpseg/warpseg_main/voxelmorph/torch/multi_stage_net.py} +76 -52
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/networks.py +308 -0
- melage/plugins/warpseg/warpseg_main/voxelmorph/torch/utils.py +470 -0
- melage/{utils/DispalyIm.py → rendering/DisplayIm.py} +67 -79
- melage/{utils → rendering}/glScientific.py +1 -1
- melage/utils/__init__.py +1 -0
- melage/utils/utils.py +343 -196
- melage/widgets/{dockWidgets.py → DockWidgets.py} +123 -55
- melage/widgets/SettingsWidget.py +98 -0
- melage/widgets/__init__.py +49 -0
- melage/widgets/openglWidgets.py +344 -156
- melage/widgets/openglWidgets_bu.py +645 -0
- melage/widgets/plugin_manager.py +62 -0
- melage-1.0.0.dist-info/METADATA +953 -0
- melage-1.0.0.dist-info/RECORD +571 -0
- melage-1.0.0.dist-info/entry_points.txt +2 -0
- melage-1.0.0.dist-info/top_level.txt +4 -0
- melage/requirements22.txt +0 -25
- melage/requirements_old.txt +0 -28
- melage/resource/theme/rc/checkbox_checked.png +0 -0
- melage/resource/theme/rc/checkbox_checked@2x.png +0 -0
- melage/resource/theme/rc/checkbox_checked@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_checked@2x000.png.png +0 -0
- melage/resource/theme/rc/checkbox_checked_disabled.png +0 -0
- melage/resource/theme/rc/checkbox_checked_disabled0.png +0 -0
- melage/resource/theme/rc/checkbox_checked_disabled@2x.png +0 -0
- melage/resource/theme/rc/checkbox_checked_disabled@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_checked_focus.png +0 -0
- melage/resource/theme/rc/checkbox_checked_focus0.png +0 -0
- melage/resource/theme/rc/checkbox_checked_focus@2x.png +0 -0
- melage/resource/theme/rc/checkbox_checked_focus@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_checked_pressed.png +0 -0
- melage/resource/theme/rc/checkbox_checked_pressed0.png +0 -0
- melage/resource/theme/rc/checkbox_checked_pressed@2x.png +0 -0
- melage/resource/theme/rc/checkbox_checked_pressed@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate@2x.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_disabled.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_disabled@2x.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_focus.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_focus@2x.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_pressed.png +0 -0
- melage/resource/theme/rc/checkbox_indeterminate_pressed@2x.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked@2x.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked@2x00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled@2x.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_disabled@2x00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus@2x.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_focus@2x00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed00.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed@2x.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed@2x0.png +0 -0
- melage/resource/theme/rc/checkbox_unchecked_pressed@2x00.png +0 -0
- melage/some_notes.txt +0 -3
- melage/utils/GMM.py +0 -720
- melage/utils/Shaders_bu.py +0 -314
- melage/utils/__init__0.py +0 -7
- melage/utils/glScientific_bc.py +0 -1585
- melage/utils/registration.py +0 -512
- melage/utils/source_folder.py +0 -18
- melage/version.txt +0 -1
- melage/widgets/ApplyMask.py +0 -212
- melage/widgets/ChangeSystem.py +0 -152
- melage/widgets/DeepLModels/NPP/dataset/mri_dataset_affine.py +0 -149
- melage/widgets/DeepLModels/NPP/models/checkpoints/npp_v1.pth.py +0 -0
- melage/widgets/DeepLModels/NPP/models/losses.py +0 -146
- melage/widgets/DeepLModels/NPP/models/model.py +0 -272
- melage/widgets/DeepLModels/NPP/models/utils.py +0 -303
- melage/widgets/DeepLModels/NPP/npp.py +0 -116
- melage/widgets/DeepLModels/NPP/requirements.txt +0 -8
- melage/widgets/DeepLModels/NPP/train/train.py +0 -116
- melage/widgets/DeepLModels/Unet3DAtt.py +0 -657
- melage/widgets/DeepLModels/Unet3D_basic.py +0 -648
- melage/widgets/DeepLModels/new_unet_old.py +0 -639
- melage/widgets/DeepLModels/new_unet_old2.py +0 -658
- melage/widgets/MaskOperations.py +0 -147
- melage/widgets/N4Dialog.py +0 -241
- melage/widgets/Segmentation/__init__.py +0 -588
- melage/widgets/SemiAutoSeg.py +0 -666
- melage/widgets/__init__0.py +0 -5
- melage/widgets/about.py +0 -246
- melage/widgets/activator.py +0 -147
- melage/widgets/be_dl.py +0 -409
- melage/widgets/be_dl_unet3d.py +0 -441
- melage/widgets/brain_extraction_dl.py +0 -887
- melage/widgets/brain_extraction_dl_bu.py +0 -869
- melage/widgets/registrationWidget.py +0 -342
- melage/widgets/settings_widget.py +0 -77
- melage/widgets/tranformationWidget.py +0 -275
- melage-0.0.68.dist-info/METADATA +0 -740
- melage-0.0.68.dist-info/RECORD +0 -916
- melage-0.0.68.dist-info/entry_points.txt +0 -2
- melage-0.0.68.dist-info/top_level.txt +0 -2
- resource/0circle.png +0 -0
- resource/0circle_faded.png +0 -0
- resource/3d.png +0 -0
- resource/3d.psd +0 -0
- resource/3dFaded.png +0 -0
- resource/Eraser.png +0 -0
- resource/EraserFaded.png +0 -0
- resource/EraserX.png +0 -0
- resource/EraserXFaded.png +0 -0
- resource/Eraser_icon.svg +0 -79
- resource/Hand.png +0 -0
- resource/HandIcons_0.png +0 -0
- resource/Hand_IX.png +0 -0
- resource/Hand_IXFaded.png +0 -0
- resource/Handsqueezed.png +0 -0
- resource/Handwriting (copy).png +0 -0
- resource/Handwriting.png +0 -0
- resource/HandwritingMinus.png +0 -0
- resource/HandwritingMinusX.png +0 -0
- resource/HandwritingPlus.png +0 -0
- resource/HandwritingPlusX.png +0 -0
- resource/Move_icon.svg +0 -8
- resource/PngItem_2422924.png +0 -0
- resource/about.png +0 -0
- resource/about_logo.png +0 -0
- resource/about_logo0.png +0 -0
- resource/action_check.png +0 -0
- resource/action_check_OFF.png +0 -0
- resource/arrow).png +0 -0
- resource/arrow.png +0 -0
- resource/arrowFaded.png +0 -0
- resource/arrow_org.png +0 -0
- resource/arrow_org.png.png +0 -0
- resource/arrows.png +0 -0
- resource/authors.mp4 +0 -0
- resource/box.png +0 -0
- resource/check-image-icon-0.jpg +0 -0
- resource/circle.png +0 -0
- resource/circle_faded.png +0 -0
- resource/circle_or.png +0 -0
- resource/close.png +0 -0
- resource/close_bg.png +0 -0
- resource/color/Tissue.txt +0 -24
- resource/color/Tissue12.txt +0 -27
- resource/color/albert_LUT.txt +0 -102
- resource/color/mcrib_LUT.txt +0 -102
- resource/color/pediatric1.txt +0 -29
- resource/color/pediatric1_old.txt +0 -27
- resource/color/pediatric2.txt +0 -87
- resource/color/pediatric3.txt +0 -29
- resource/color/pediatrics (copy).csv +0 -103
- resource/color/tissue_seg.txt +0 -4
- resource/contour.png +0 -0
- resource/contour.svg +0 -2
- resource/contourFaded.png +0 -0
- resource/contourX.png +0 -0
- resource/contourXFaded.png +0 -0
- resource/dti.png +0 -0
- resource/dti0.png +0 -0
- resource/dti222.png +0 -0
- resource/dti_or.png +0 -0
- resource/eco.png +0 -0
- resource/eco22.png +0 -0
- resource/eco_old.png +0 -0
- resource/eco_or.png +0 -0
- resource/eco_or2.png +0 -0
- resource/eco_seg.png +0 -0
- resource/eco_seg_old.png +0 -0
- resource/export.png +0 -0
- resource/hand-grab-icon-10.jpg +0 -0
- resource/hand-grab-icon-25.jpg +0 -0
- resource/info.png +0 -0
- resource/line.png +0 -0
- resource/linefaded.png +0 -0
- resource/load.png +0 -0
- resource/melage_top.ico +0 -0
- resource/melage_top.png +0 -0
- resource/melage_top0.png +0 -0
- resource/melage_top1.png +0 -0
- resource/melage_top4.png +0 -0
- resource/mri (copy).png +0 -0
- resource/mri.png +0 -0
- resource/mri0.png +0 -0
- resource/mri000.png +0 -0
- resource/mri22.png +0 -0
- resource/mri_big.png +0 -0
- resource/mri_old.png +0 -0
- resource/mri_seg.png +0 -0
- resource/mri_seg_old.png +0 -0
- resource/new.png +0 -0
- resource/open.png +0 -0
- resource/open2.png +0 -0
- resource/pan.png +0 -0
- resource/pencil.png +0 -0
- resource/pencilFaded.png +0 -0
- resource/points.png +0 -0
- resource/pointsFaded.png +0 -0
- resource/rotate.png +0 -0
- resource/ruler.png +0 -0
- resource/rulerFaded.png +0 -0
- resource/s.png +0 -0
- resource/s.psd +0 -0
- resource/save.png +0 -0
- resource/saveas.png +0 -0
- resource/seg_mri.png +0 -0
- resource/seg_mri2.png +0 -0
- resource/settings.png +0 -0
- resource/synch.png +0 -0
- resource/synchFaded.png +0 -0
- resource/theme/rc/.keep +0 -1
- resource/theme/rc/arrow_down.png +0 -0
- resource/theme/rc/arrow_down@2x.png +0 -0
- resource/theme/rc/arrow_down_disabled.png +0 -0
- resource/theme/rc/arrow_down_disabled@2x.png +0 -0
- resource/theme/rc/arrow_down_focus.png +0 -0
- resource/theme/rc/arrow_down_focus@2x.png +0 -0
- resource/theme/rc/arrow_down_pressed.png +0 -0
- resource/theme/rc/arrow_down_pressed@2x.png +0 -0
- resource/theme/rc/arrow_left.png +0 -0
- resource/theme/rc/arrow_left@2x.png +0 -0
- resource/theme/rc/arrow_left_disabled.png +0 -0
- resource/theme/rc/arrow_left_disabled@2x.png +0 -0
- resource/theme/rc/arrow_left_focus.png +0 -0
- resource/theme/rc/arrow_left_focus@2x.png +0 -0
- resource/theme/rc/arrow_left_pressed.png +0 -0
- resource/theme/rc/arrow_left_pressed@2x.png +0 -0
- resource/theme/rc/arrow_right.png +0 -0
- resource/theme/rc/arrow_right@2x.png +0 -0
- resource/theme/rc/arrow_right_disabled.png +0 -0
- resource/theme/rc/arrow_right_disabled@2x.png +0 -0
- resource/theme/rc/arrow_right_focus.png +0 -0
- resource/theme/rc/arrow_right_focus@2x.png +0 -0
- resource/theme/rc/arrow_right_pressed.png +0 -0
- resource/theme/rc/arrow_right_pressed@2x.png +0 -0
- resource/theme/rc/arrow_up.png +0 -0
- resource/theme/rc/arrow_up@2x.png +0 -0
- resource/theme/rc/arrow_up_disabled.png +0 -0
- resource/theme/rc/arrow_up_disabled@2x.png +0 -0
- resource/theme/rc/arrow_up_focus.png +0 -0
- resource/theme/rc/arrow_up_focus@2x.png +0 -0
- resource/theme/rc/arrow_up_pressed.png +0 -0
- resource/theme/rc/arrow_up_pressed@2x.png +0 -0
- resource/theme/rc/base_icon.png +0 -0
- resource/theme/rc/base_icon@2x.png +0 -0
- resource/theme/rc/base_icon_disabled.png +0 -0
- resource/theme/rc/base_icon_disabled@2x.png +0 -0
- resource/theme/rc/base_icon_focus.png +0 -0
- resource/theme/rc/base_icon_focus@2x.png +0 -0
- resource/theme/rc/base_icon_pressed.png +0 -0
- resource/theme/rc/base_icon_pressed@2x.png +0 -0
- resource/theme/rc/branch_closed.png +0 -0
- resource/theme/rc/branch_closed@2x.png +0 -0
- resource/theme/rc/branch_closed_disabled.png +0 -0
- resource/theme/rc/branch_closed_disabled@2x.png +0 -0
- resource/theme/rc/branch_closed_focus.png +0 -0
- resource/theme/rc/branch_closed_focus@2x.png +0 -0
- resource/theme/rc/branch_closed_pressed.png +0 -0
- resource/theme/rc/branch_closed_pressed@2x.png +0 -0
- resource/theme/rc/branch_end.png +0 -0
- resource/theme/rc/branch_end@2x.png +0 -0
- resource/theme/rc/branch_end_disabled.png +0 -0
- resource/theme/rc/branch_end_disabled@2x.png +0 -0
- resource/theme/rc/branch_end_focus.png +0 -0
- resource/theme/rc/branch_end_focus@2x.png +0 -0
- resource/theme/rc/branch_end_pressed.png +0 -0
- resource/theme/rc/branch_end_pressed@2x.png +0 -0
- resource/theme/rc/branch_line.png +0 -0
- resource/theme/rc/branch_line@2x.png +0 -0
- resource/theme/rc/branch_line_disabled.png +0 -0
- resource/theme/rc/branch_line_disabled@2x.png +0 -0
- resource/theme/rc/branch_line_focus.png +0 -0
- resource/theme/rc/branch_line_focus@2x.png +0 -0
- resource/theme/rc/branch_line_pressed.png +0 -0
- resource/theme/rc/branch_line_pressed@2x.png +0 -0
- resource/theme/rc/branch_more.png +0 -0
- resource/theme/rc/branch_more@2x.png +0 -0
- resource/theme/rc/branch_more_disabled.png +0 -0
- resource/theme/rc/branch_more_disabled@2x.png +0 -0
- resource/theme/rc/branch_more_focus.png +0 -0
- resource/theme/rc/branch_more_focus@2x.png +0 -0
- resource/theme/rc/branch_more_pressed.png +0 -0
- resource/theme/rc/branch_more_pressed@2x.png +0 -0
- resource/theme/rc/branch_open.png +0 -0
- resource/theme/rc/branch_open@2x.png +0 -0
- resource/theme/rc/branch_open_disabled.png +0 -0
- resource/theme/rc/branch_open_disabled@2x.png +0 -0
- resource/theme/rc/branch_open_focus.png +0 -0
- resource/theme/rc/branch_open_focus@2x.png +0 -0
- resource/theme/rc/branch_open_pressed.png +0 -0
- resource/theme/rc/branch_open_pressed@2x.png +0 -0
- resource/theme/rc/checkbox_checked.png +0 -0
- resource/theme/rc/checkbox_checked0.png +0 -0
- resource/theme/rc/checkbox_checked@2x.png +0 -0
- resource/theme/rc/checkbox_checked@2x0.png +0 -0
- resource/theme/rc/checkbox_checked@2x000.png.png +0 -0
- resource/theme/rc/checkbox_checked_disabled.png +0 -0
- resource/theme/rc/checkbox_checked_disabled0.png +0 -0
- resource/theme/rc/checkbox_checked_disabled@2x.png +0 -0
- resource/theme/rc/checkbox_checked_disabled@2x0.png +0 -0
- resource/theme/rc/checkbox_checked_focus.png +0 -0
- resource/theme/rc/checkbox_checked_focus0.png +0 -0
- resource/theme/rc/checkbox_checked_focus@2x.png +0 -0
- resource/theme/rc/checkbox_checked_focus@2x0.png +0 -0
- resource/theme/rc/checkbox_checked_pressed.png +0 -0
- resource/theme/rc/checkbox_checked_pressed0.png +0 -0
- resource/theme/rc/checkbox_checked_pressed@2x.png +0 -0
- resource/theme/rc/checkbox_checked_pressed@2x0.png +0 -0
- resource/theme/rc/checkbox_indeterminate.png +0 -0
- resource/theme/rc/checkbox_indeterminate@2x.png +0 -0
- resource/theme/rc/checkbox_indeterminate_disabled.png +0 -0
- resource/theme/rc/checkbox_indeterminate_disabled@2x.png +0 -0
- resource/theme/rc/checkbox_indeterminate_focus.png +0 -0
- resource/theme/rc/checkbox_indeterminate_focus@2x.png +0 -0
- resource/theme/rc/checkbox_indeterminate_pressed.png +0 -0
- resource/theme/rc/checkbox_indeterminate_pressed@2x.png +0 -0
- resource/theme/rc/checkbox_unchecked.png +0 -0
- resource/theme/rc/checkbox_unchecked0.png +0 -0
- resource/theme/rc/checkbox_unchecked00.png +0 -0
- resource/theme/rc/checkbox_unchecked@2x.png +0 -0
- resource/theme/rc/checkbox_unchecked@2x0.png +0 -0
- resource/theme/rc/checkbox_unchecked@2x00.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled0.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled00.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled@2x.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled@2x0.png +0 -0
- resource/theme/rc/checkbox_unchecked_disabled@2x00.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus0.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus00.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus@2x.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus@2x0.png +0 -0
- resource/theme/rc/checkbox_unchecked_focus@2x00.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed0.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed00.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed@2x.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed@2x0.png +0 -0
- resource/theme/rc/checkbox_unchecked_pressed@2x00.png +0 -0
- resource/theme/rc/line_horizontal.png +0 -0
- resource/theme/rc/line_horizontal@2x.png +0 -0
- resource/theme/rc/line_horizontal_disabled.png +0 -0
- resource/theme/rc/line_horizontal_disabled@2x.png +0 -0
- resource/theme/rc/line_horizontal_focus.png +0 -0
- resource/theme/rc/line_horizontal_focus@2x.png +0 -0
- resource/theme/rc/line_horizontal_pressed.png +0 -0
- resource/theme/rc/line_horizontal_pressed@2x.png +0 -0
- resource/theme/rc/line_vertical.png +0 -0
- resource/theme/rc/line_vertical@2x.png +0 -0
- resource/theme/rc/line_vertical_disabled.png +0 -0
- resource/theme/rc/line_vertical_disabled@2x.png +0 -0
- resource/theme/rc/line_vertical_focus.png +0 -0
- resource/theme/rc/line_vertical_focus@2x.png +0 -0
- resource/theme/rc/line_vertical_pressed.png +0 -0
- resource/theme/rc/line_vertical_pressed@2x.png +0 -0
- resource/theme/rc/radio_checked.png +0 -0
- resource/theme/rc/radio_checked@2x.png +0 -0
- resource/theme/rc/radio_checked_disabled.png +0 -0
- resource/theme/rc/radio_checked_disabled@2x.png +0 -0
- resource/theme/rc/radio_checked_focus.png +0 -0
- resource/theme/rc/radio_checked_focus@2x.png +0 -0
- resource/theme/rc/radio_checked_pressed.png +0 -0
- resource/theme/rc/radio_checked_pressed@2x.png +0 -0
- resource/theme/rc/radio_unchecked.png +0 -0
- resource/theme/rc/radio_unchecked@2x.png +0 -0
- resource/theme/rc/radio_unchecked_disabled.png +0 -0
- resource/theme/rc/radio_unchecked_disabled@2x.png +0 -0
- resource/theme/rc/radio_unchecked_focus.png +0 -0
- resource/theme/rc/radio_unchecked_focus@2x.png +0 -0
- resource/theme/rc/radio_unchecked_pressed.png +0 -0
- resource/theme/rc/radio_unchecked_pressed@2x.png +0 -0
- resource/theme/rc/toolbar_move_horizontal.png +0 -0
- resource/theme/rc/toolbar_move_horizontal@2x.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_disabled.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_disabled@2x.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_focus.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_focus@2x.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_pressed.png +0 -0
- resource/theme/rc/toolbar_move_horizontal_pressed@2x.png +0 -0
- resource/theme/rc/toolbar_move_vertical.png +0 -0
- resource/theme/rc/toolbar_move_vertical@2x.png +0 -0
- resource/theme/rc/toolbar_move_vertical_disabled.png +0 -0
- resource/theme/rc/toolbar_move_vertical_disabled@2x.png +0 -0
- resource/theme/rc/toolbar_move_vertical_focus.png +0 -0
- resource/theme/rc/toolbar_move_vertical_focus@2x.png +0 -0
- resource/theme/rc/toolbar_move_vertical_pressed.png +0 -0
- resource/theme/rc/toolbar_move_vertical_pressed@2x.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal@2x.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_disabled.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_disabled@2x.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_focus.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_focus@2x.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_pressed.png +0 -0
- resource/theme/rc/toolbar_separator_horizontal_pressed@2x.png +0 -0
- resource/theme/rc/toolbar_separator_vertical.png +0 -0
- resource/theme/rc/toolbar_separator_vertical@2x.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_disabled.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_disabled@2x.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_focus.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_focus@2x.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_pressed.png +0 -0
- resource/theme/rc/toolbar_separator_vertical_pressed@2x.png +0 -0
- resource/theme/rc/transparent.png +0 -0
- resource/theme/rc/transparent@2x.png +0 -0
- resource/theme/rc/transparent_disabled.png +0 -0
- resource/theme/rc/transparent_disabled@2x.png +0 -0
- resource/theme/rc/transparent_focus.png +0 -0
- resource/theme/rc/transparent_focus@2x.png +0 -0
- resource/theme/rc/transparent_pressed.png +0 -0
- resource/theme/rc/transparent_pressed@2x.png +0 -0
- resource/theme/rc/window_close.png +0 -0
- resource/theme/rc/window_close@2x.png +0 -0
- resource/theme/rc/window_close_disabled.png +0 -0
- resource/theme/rc/window_close_disabled@2x.png +0 -0
- resource/theme/rc/window_close_focus.png +0 -0
- resource/theme/rc/window_close_focus@2x.png +0 -0
- resource/theme/rc/window_close_pressed.png +0 -0
- resource/theme/rc/window_close_pressed@2x.png +0 -0
- resource/theme/rc/window_grip.png +0 -0
- resource/theme/rc/window_grip@2x.png +0 -0
- resource/theme/rc/window_grip_disabled.png +0 -0
- resource/theme/rc/window_grip_disabled@2x.png +0 -0
- resource/theme/rc/window_grip_focus.png +0 -0
- resource/theme/rc/window_grip_focus@2x.png +0 -0
- resource/theme/rc/window_grip_pressed.png +0 -0
- resource/theme/rc/window_grip_pressed@2x.png +0 -0
- resource/theme/rc/window_minimize.png +0 -0
- resource/theme/rc/window_minimize@2x.png +0 -0
- resource/theme/rc/window_minimize_disabled.png +0 -0
- resource/theme/rc/window_minimize_disabled@2x.png +0 -0
- resource/theme/rc/window_minimize_focus.png +0 -0
- resource/theme/rc/window_minimize_focus@2x.png +0 -0
- resource/theme/rc/window_minimize_pressed.png +0 -0
- resource/theme/rc/window_minimize_pressed@2x.png +0 -0
- resource/theme/rc/window_undock.png +0 -0
- resource/theme/rc/window_undock@2x.png +0 -0
- resource/theme/rc/window_undock_disabled.png +0 -0
- resource/theme/rc/window_undock_disabled@2x.png +0 -0
- resource/theme/rc/window_undock_focus.png +0 -0
- resource/theme/rc/window_undock_focus@2x.png +0 -0
- resource/theme/rc/window_undock_pressed.png +0 -0
- resource/theme/rc/window_undock_pressed@2x.png +0 -0
- resource/theme/style.qss +0 -2223
- resource/tract.png +0 -0
- resource/view1.png +0 -0
- resource/view1_eco.png +0 -0
- resource/view1_mri.png +0 -0
- resource/view1_seg.png +0 -0
- resource/view2.png +0 -0
- resource/view2_seg.png +0 -0
- resource/w.png +0 -0
- resource/zoom_in.png +0 -0
- resource/zoom_inFaded.png +0 -0
- resource/zoom_out.png +0 -0
- resource/zoom_outFaded.png +0 -0
- {melage/resource → assets}/main.ico +0 -0
- {melage → assets}/resource/0circle.png +0 -0
- {melage → assets}/resource/0circle_faded.png +0 -0
- {melage → assets}/resource/3d.png +0 -0
- {melage → assets}/resource/3d.psd +0 -0
- {melage → assets}/resource/3dFaded.png +0 -0
- {melage → assets}/resource/Eraser.png +0 -0
- {melage → assets}/resource/EraserFaded.png +0 -0
- {melage → assets}/resource/EraserX.png +0 -0
- {melage → assets}/resource/EraserXFaded.png +0 -0
- {melage → assets}/resource/Eraser_icon.svg +0 -0
- {melage → assets}/resource/Hand.png +0 -0
- {melage → assets}/resource/HandIcons_0.png +0 -0
- {melage → assets}/resource/Hand_IX.png +0 -0
- {melage → assets}/resource/Hand_IXFaded.png +0 -0
- {melage → assets}/resource/Handsqueezed.png +0 -0
- {melage → assets}/resource/Handwriting (copy).png +0 -0
- {melage → assets}/resource/Handwriting.png +0 -0
- {melage → assets}/resource/HandwritingMinus.png +0 -0
- {melage → assets}/resource/HandwritingMinusX.png +0 -0
- {melage → assets}/resource/HandwritingPlus.png +0 -0
- {melage → assets}/resource/HandwritingPlusX.png +0 -0
- {melage → assets}/resource/Move_icon.svg +0 -0
- {melage → assets}/resource/PngItem_2422924.png +0 -0
- {melage → assets}/resource/about.png +0 -0
- {melage → assets}/resource/about_logo.png +0 -0
- {melage → assets}/resource/about_logo0.png +0 -0
- {melage → assets}/resource/action_check.png +0 -0
- {melage → assets}/resource/action_check_OFF.png +0 -0
- {melage → assets}/resource/arrow).png +0 -0
- {melage → assets}/resource/arrow.png +0 -0
- {melage → assets}/resource/arrowFaded.png +0 -0
- {melage → assets}/resource/arrow_org.png +0 -0
- {melage → assets}/resource/arrow_org.png.png +0 -0
- {melage → assets}/resource/arrows.png +0 -0
- {melage → assets}/resource/authors.mp4 +0 -0
- {melage → assets}/resource/box.png +0 -0
- {melage → assets}/resource/check-image-icon-0.jpg +0 -0
- {melage → assets}/resource/circle.png +0 -0
- {melage → assets}/resource/circle_faded.png +0 -0
- {melage → assets}/resource/circle_or.png +0 -0
- {melage → assets}/resource/close.png +0 -0
- {melage → assets}/resource/close_bg.png +0 -0
- {melage → assets}/resource/color/Simple.txt +0 -0
- {melage → assets}/resource/color/Tissue.txt +0 -0
- {melage → assets}/resource/color/Tissue12.txt +0 -0
- {melage → assets}/resource/color/albert_LUT.txt +0 -0
- {melage → assets}/resource/color/mcrib_LUT.txt +0 -0
- {melage → assets}/resource/color/pediatric1.txt +0 -0
- {melage → assets}/resource/color/pediatric1_old.txt +0 -0
- {melage → assets}/resource/color/pediatric2.txt +0 -0
- {melage → assets}/resource/color/pediatric3.txt +0 -0
- {melage → assets}/resource/color/pediatrics (copy).csv +0 -0
- {melage → assets}/resource/color/tissue_seg.txt +0 -0
- {melage → assets}/resource/contour.png +0 -0
- {melage → assets}/resource/contour.svg +0 -0
- {melage → assets}/resource/contourFaded.png +0 -0
- {melage → assets}/resource/contourX.png +0 -0
- {melage → assets}/resource/contourXFaded.png +0 -0
- {melage → assets}/resource/dti.png +0 -0
- {melage → assets}/resource/dti0.png +0 -0
- {melage → assets}/resource/dti222.png +0 -0
- {melage → assets}/resource/dti_or.png +0 -0
- {melage → assets}/resource/eco.png +0 -0
- {melage → assets}/resource/eco22.png +0 -0
- {melage → assets}/resource/eco_old.png +0 -0
- {melage → assets}/resource/eco_or.png +0 -0
- {melage → assets}/resource/eco_or2.png +0 -0
- {melage → assets}/resource/eco_seg.png +0 -0
- {melage → assets}/resource/eco_seg_old.png +0 -0
- {melage → assets}/resource/export.png +0 -0
- {melage → assets}/resource/hand-grab-icon-10.jpg +0 -0
- {melage → assets}/resource/hand-grab-icon-25.jpg +0 -0
- {melage → assets}/resource/info.png +0 -0
- {melage → assets}/resource/line.png +0 -0
- {melage → assets}/resource/linefaded.png +0 -0
- {melage → assets}/resource/load.png +0 -0
- {resource → assets/resource}/main.ico +0 -0
- {melage → assets}/resource/manual_images/3D_rightc.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_goto.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_draw1.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_draw2.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render2.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render3.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render4.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render5.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_paint_render6.png +0 -0
- {melage → assets}/resource/manual_images/3D_rightc_seg.png +0 -0
- {melage → assets}/resource/manual_images/exit_toolbar.png +0 -0
- {melage → assets}/resource/manual_images/load_image_file.png +0 -0
- {melage → assets}/resource/manual_images/load_image_file_openp.png +0 -0
- {melage → assets}/resource/manual_images/main_page.png +0 -0
- {melage → assets}/resource/manual_images/menu_file.png +0 -0
- {melage → assets}/resource/manual_images/menu_file_export.png +0 -0
- {melage → assets}/resource/manual_images/menu_file_import.png +0 -0
- {melage → assets}/resource/manual_images/menu_file_settings.png +0 -0
- {melage → assets}/resource/manual_images/menu_file_ss.png +0 -0
- {melage → assets}/resource/manual_images/open_save_load.png +0 -0
- {melage → assets}/resource/manual_images/panning_toolbar.png +0 -0
- {melage → assets}/resource/manual_images/segmentation_toolbar.png +0 -0
- {melage → assets}/resource/manual_images/tab_mri.png +0 -0
- {melage → assets}/resource/manual_images/tab_us.png +0 -0
- {melage → assets}/resource/manual_images/tabs.png +0 -0
- {melage → assets}/resource/manual_images/toolbar_tools.png +0 -0
- {melage → assets}/resource/manual_images/tools_basic.png +0 -0
- {melage → assets}/resource/manual_images/tools_bet.png +0 -0
- {melage → assets}/resource/manual_images/tools_cs.png +0 -0
- {melage → assets}/resource/manual_images/tools_deepbet.png +0 -0
- {melage → assets}/resource/manual_images/tools_imageinfo.png +0 -0
- {melage → assets}/resource/manual_images/tools_maskO.png +0 -0
- {melage → assets}/resource/manual_images/tools_masking.png +0 -0
- {melage → assets}/resource/manual_images/tools_n4b.png +0 -0
- {melage → assets}/resource/manual_images/tools_resize.png +0 -0
- {melage → assets}/resource/manual_images/tools_ruler.png +0 -0
- {melage → assets}/resource/manual_images/tools_seg.png +0 -0
- {melage → assets}/resource/manual_images/tools_threshold.png +0 -0
- {melage → assets}/resource/manual_images/tools_tools.png +0 -0
- {melage → assets}/resource/manual_images/widget_color.png +0 -0
- {melage → assets}/resource/manual_images/widget_color_add.png +0 -0
- {melage → assets}/resource/manual_images/widget_color_add2.png +0 -0
- {melage → assets}/resource/manual_images/widget_color_additional.png +0 -0
- {melage → assets}/resource/manual_images/widget_images.png +0 -0
- {melage → assets}/resource/manual_images/widget_images2.png +0 -0
- {melage → assets}/resource/manual_images/widget_images3.png +0 -0
- {melage → assets}/resource/manual_images/widget_marker.png +0 -0
- {melage → assets}/resource/manual_images/widget_mri.png +0 -0
- {melage → assets}/resource/manual_images/widget_mri2.png +0 -0
- {melage → assets}/resource/manual_images/widget_segintensity.png +0 -0
- {melage → assets}/resource/manual_images/widget_tab_mutualview.png +0 -0
- {melage → assets}/resource/manual_images/widget_tab_mutualview2.png +0 -0
- {melage → assets}/resource/manual_images/widget_table.png +0 -0
- {melage → assets}/resource/manual_images/widget_table2.png +0 -0
- {melage → assets}/resource/manual_images/widget_us.png +0 -0
- {melage → assets}/resource/melage_top.ico +0 -0
- {melage → assets}/resource/melage_top.png +0 -0
- {melage → assets}/resource/melage_top0.png +0 -0
- {melage → assets}/resource/melage_top1.png +0 -0
- {melage → assets}/resource/melage_top4.png +0 -0
- {melage → assets}/resource/mri (copy).png +0 -0
- {melage → assets}/resource/mri.png +0 -0
- {melage → assets}/resource/mri0.png +0 -0
- {melage → assets}/resource/mri000.png +0 -0
- {melage → assets}/resource/mri22.png +0 -0
- {melage → assets}/resource/mri_big.png +0 -0
- {melage → assets}/resource/mri_old.png +0 -0
- {melage → assets}/resource/mri_seg.png +0 -0
- {melage → assets}/resource/mri_seg_old.png +0 -0
- {melage → assets}/resource/new.png +0 -0
- {melage → assets}/resource/open.png +0 -0
- {melage → assets}/resource/open2.png +0 -0
- {melage → assets}/resource/pan.png +0 -0
- {melage → assets}/resource/pencil.png +0 -0
- {melage → assets}/resource/pencilFaded.png +0 -0
- {melage → assets}/resource/points.png +0 -0
- {melage → assets}/resource/pointsFaded.png +0 -0
- {melage → assets}/resource/rotate.png +0 -0
- {melage → assets}/resource/ruler.png +0 -0
- {melage → assets}/resource/rulerFaded.png +0 -0
- {melage → assets}/resource/s.png +0 -0
- {melage → assets}/resource/s.psd +0 -0
- {melage → assets}/resource/save.png +0 -0
- {melage → assets}/resource/saveas.png +0 -0
- {melage → assets}/resource/seg_mri.png +0 -0
- {melage → assets}/resource/seg_mri2.png +0 -0
- {melage → assets}/resource/settings.png +0 -0
- {melage → assets}/resource/synch.png +0 -0
- {melage → assets}/resource/synchFaded.png +0 -0
- {melage → assets}/resource/theme/rc/.keep +0 -0
- {melage → assets}/resource/theme/rc/arrow_down.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_focus.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_down_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_focus.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_left_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_focus.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_right_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_focus.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/arrow_up_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon@2x.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_focus.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/base_icon_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_focus.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_closed_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_focus.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_end_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_focus.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_line_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_focus.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_more_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_focus.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/branch_open_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/checkbox_checked0.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_focus.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/line_horizontal_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_focus.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/line_vertical_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_focus.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/radio_checked_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_focus.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/radio_unchecked_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_focus.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_horizontal_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_focus.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_move_vertical_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_focus.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_horizontal_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_focus.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/toolbar_separator_vertical_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/transparent.png +0 -0
- {melage → assets}/resource/theme/rc/transparent@2x.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_focus.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/transparent_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_close.png +0 -0
- {melage → assets}/resource/theme/rc/window_close@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_focus.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/window_close_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_focus.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/window_grip_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_focus.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/window_minimize_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_disabled.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_disabled@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_focus.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_focus@2x.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_pressed.png +0 -0
- {melage → assets}/resource/theme/rc/window_undock_pressed@2x.png +0 -0
- {melage → assets}/resource/theme/style.qss +0 -0
- {melage → assets}/resource/tract.png +0 -0
- {melage → assets}/resource/view1.png +0 -0
- {melage → assets}/resource/view1_eco.png +0 -0
- {melage → assets}/resource/view1_mri.png +0 -0
- {melage → assets}/resource/view1_seg.png +0 -0
- {melage → assets}/resource/view2.png +0 -0
- {melage → assets}/resource/view2_seg.png +0 -0
- {melage → assets}/resource/w.png +0 -0
- {melage → assets}/resource/zoom_inFaded.png +0 -0
- /melage/resource/zoom_in.png → /assets/resource/zoom_in_old.png +0 -0
- {melage → assets}/resource/zoom_outFaded.png +0 -0
- /melage/resource/zoom_out.png → /assets/resource/zoom_out_old.png +0 -0
- {resource → docs}/manual_images/3D_rightc.png +0 -0
- {resource → docs}/manual_images/3D_rightc_goto.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_draw1.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_draw2.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render2.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render3.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render4.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render5.png +0 -0
- {resource → docs}/manual_images/3D_rightc_paint_render6.png +0 -0
- {resource → docs}/manual_images/3D_rightc_seg.png +0 -0
- {resource → docs}/manual_images/exit_toolbar.png +0 -0
- {resource → docs}/manual_images/load_image_file.png +0 -0
- {resource → docs}/manual_images/load_image_file_openp.png +0 -0
- {resource → docs}/manual_images/main_page.png +0 -0
- {resource → docs}/manual_images/menu_file.png +0 -0
- {resource → docs}/manual_images/menu_file_export.png +0 -0
- {resource → docs}/manual_images/menu_file_import.png +0 -0
- {resource → docs}/manual_images/menu_file_settings.png +0 -0
- {resource → docs}/manual_images/menu_file_ss.png +0 -0
- {resource → docs}/manual_images/open_save_load.png +0 -0
- {resource → docs}/manual_images/panning_toolbar.png +0 -0
- {resource → docs}/manual_images/segmentation_toolbar.png +0 -0
- {resource → docs}/manual_images/tab_mri.png +0 -0
- {resource → docs}/manual_images/tab_us.png +0 -0
- {resource → docs}/manual_images/tabs.png +0 -0
- {resource → docs}/manual_images/toolbar_tools.png +0 -0
- {resource → docs}/manual_images/tools_basic.png +0 -0
- {resource → docs}/manual_images/tools_bet.png +0 -0
- {resource → docs}/manual_images/tools_cs.png +0 -0
- {resource → docs}/manual_images/tools_deepbet.png +0 -0
- {resource → docs}/manual_images/tools_imageinfo.png +0 -0
- {resource → docs}/manual_images/tools_maskO.png +0 -0
- {resource → docs}/manual_images/tools_masking.png +0 -0
- {resource → docs}/manual_images/tools_n4b.png +0 -0
- {resource → docs}/manual_images/tools_resize.png +0 -0
- {resource → docs}/manual_images/tools_ruler.png +0 -0
- {resource → docs}/manual_images/tools_seg.png +0 -0
- {resource → docs}/manual_images/tools_threshold.png +0 -0
- {resource → docs}/manual_images/tools_tools.png +0 -0
- {resource → docs}/manual_images/widget_color.png +0 -0
- {resource → docs}/manual_images/widget_color_add.png +0 -0
- {resource → docs}/manual_images/widget_color_add2.png +0 -0
- {resource → docs}/manual_images/widget_color_additional.png +0 -0
- {resource → docs}/manual_images/widget_images.png +0 -0
- {resource → docs}/manual_images/widget_images2.png +0 -0
- {resource → docs}/manual_images/widget_images3.png +0 -0
- {resource → docs}/manual_images/widget_marker.png +0 -0
- {resource → docs}/manual_images/widget_mri.png +0 -0
- {resource → docs}/manual_images/widget_mri2.png +0 -0
- {resource → docs}/manual_images/widget_segintensity.png +0 -0
- {resource → docs}/manual_images/widget_tab_mutualview.png +0 -0
- {resource → docs}/manual_images/widget_tab_mutualview2.png +0 -0
- {resource → docs}/manual_images/widget_table.png +0 -0
- {resource → docs}/manual_images/widget_table2.png +0 -0
- {resource → docs}/manual_images/widget_us.png +0 -0
- /melage/{widgets/activation.py → dialogs/ActivationDialog.py} +0 -0
- /melage/{widgets/HistImage.py → dialogs/HistogramDialog.py} +0 -0
- /melage/{widgets/iminfo.py → dialogs/ImInfoDialog.py} +0 -0
- /melage/{widgets/colorwidget.py → dialogs/helpers/ColorDialog.py} +0 -0
- /melage/{utils/custom_QScrollBar.py → dialogs/helpers/CustomScrollbar.py} +0 -0
- /melage/{widgets/repeat_widget.py → dialogs/helpers/RepeatDialog.py} +0 -0
- /melage/{widgets/screenshot_widget.py → dialogs/helpers/ScreenshotDialog.py} +0 -0
- /melage/{cli.py → melage.py} +0 -0
- /melage/{utils/brain_extraction_helper.py → plugins/bet/main/utils.py} +0 -0
- /melage/{graphics → rendering}/GLGraphicsItem.py +0 -0
- /melage/{graphics → rendering}/GLViewWidget.py +0 -0
- /melage/{graphics → rendering}/Transform3D.py +0 -0
- /melage/{graphics → rendering}/__init__.py +0 -0
- /melage/{graphics → rendering}/functions.py +0 -0
- /melage/{utils → rendering/helpers}/Shaders_120.py +0 -0
- /melage/{utils → rendering/helpers}/Shaders_330.py +0 -0
- /melage/{graphics → rendering}/items/GLAxisItem.py +0 -0
- /melage/{graphics → rendering}/items/GLGridItem.py +0 -0
- /melage/{graphics → rendering}/items/GLPolygonItem.py +0 -0
- /melage/{graphics → rendering}/items/GLScatterPlotItem.py +0 -0
- /melage/{graphics → rendering}/items/GLVolumeItem.py +0 -0
- /melage/{graphics → rendering}/items/GLVolumeItem_b.py +0 -0
- /melage/{graphics → rendering}/items/__init__.py +0 -0
- /melage/{graphics → rendering}/shaders.py +0 -0
- /melage/widgets/{enhanceImWidget.py → EnhanceImageWidget.py} +0 -0
- {melage-0.0.68.dist-info → melage-1.0.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,2006 @@
|
|
|
1
|
+
|
|
2
|
+
#No. Label Name: R G B A
|
|
3
|
+
|
|
4
|
+
0 Unknown 0 0 0 0
|
|
5
|
+
1 Left-Cerebral-Exterior 70 130 180 0
|
|
6
|
+
2 Left-Cerebral-White-Matter 245 245 245 0
|
|
7
|
+
3 Left-Cerebral-Cortex 205 62 78 0
|
|
8
|
+
4 Left-Lateral-Ventricle 120 18 134 0
|
|
9
|
+
5 Left-Inf-Lat-Vent 196 58 250 0
|
|
10
|
+
6 Left-Cerebellum-Exterior 0 148 0 0
|
|
11
|
+
7 Left-Cerebellum-White-Matter 220 248 164 0
|
|
12
|
+
8 Left-Cerebellum-Cortex 230 148 34 0
|
|
13
|
+
9 Left-Thalamus-unused 0 118 14 0
|
|
14
|
+
10 Left-Thalamus 0 118 14 0
|
|
15
|
+
11 Left-Caudate 122 186 220 0
|
|
16
|
+
12 Left-Putamen 236 13 176 0
|
|
17
|
+
13 Left-Pallidum 12 48 255 0
|
|
18
|
+
14 3rd-Ventricle 204 182 142 0
|
|
19
|
+
15 4th-Ventricle 42 204 164 0
|
|
20
|
+
16 Brain-Stem 119 159 176 0
|
|
21
|
+
17 Left-Hippocampus 220 216 20 0
|
|
22
|
+
18 Left-Amygdala 103 255 255 0
|
|
23
|
+
19 Left-Insula 80 196 98 0
|
|
24
|
+
20 Left-Operculum 60 58 210 0
|
|
25
|
+
21 Line-1 60 58 210 0
|
|
26
|
+
22 Line-2 60 58 210 0
|
|
27
|
+
23 Line-3 60 58 210 0
|
|
28
|
+
24 CSF 60 60 60 0
|
|
29
|
+
25 Left-Lesion 255 165 0 0
|
|
30
|
+
26 Left-Accumbens-area 255 165 0 0
|
|
31
|
+
27 Left-Substancia-Nigra 0 255 127 0
|
|
32
|
+
28 Left-VentralDC 145 42 42 0
|
|
33
|
+
29 Left-undetermined 135 206 235 0
|
|
34
|
+
30 Left-vessel 160 32 240 0
|
|
35
|
+
31 Left-choroid-plexus 0 200 200 0
|
|
36
|
+
32 Left-F3orb 100 50 100 0
|
|
37
|
+
33 Left-aOg 122 135 50 0
|
|
38
|
+
34 Left-WMCrowns 225 225 255 0
|
|
39
|
+
35 Left-mOg 51 50 135 0
|
|
40
|
+
36 Left-pOg 74 155 60 0
|
|
41
|
+
37 Left-Stellate 120 62 43 0
|
|
42
|
+
38 Left-Porg 74 155 60 0
|
|
43
|
+
39 Left-Aorg 122 135 50 0
|
|
44
|
+
40 Right-Cerebral-Exterior 70 130 180 0
|
|
45
|
+
41 Right-Cerebral-White-Matter 245 245 245 0
|
|
46
|
+
42 Right-Cerebral-Cortex 205 62 78 0
|
|
47
|
+
43 Right-Lateral-Ventricle 120 18 134 0
|
|
48
|
+
44 Right-Inf-Lat-Vent 196 58 250 0
|
|
49
|
+
45 Right-Cerebellum-Exterior 0 148 0 0
|
|
50
|
+
46 Right-Cerebellum-White-Matter 220 248 164 0
|
|
51
|
+
47 Right-Cerebellum-Cortex 230 148 34 0
|
|
52
|
+
48 Right-Thalamus-unused 0 118 14 0
|
|
53
|
+
49 Right-Thalamus 0 118 14 0
|
|
54
|
+
50 Right-Caudate 122 186 220 0
|
|
55
|
+
51 Right-Putamen 236 13 176 0
|
|
56
|
+
52 Right-Pallidum 13 48 255 0
|
|
57
|
+
53 Right-Hippocampus 220 216 20 0
|
|
58
|
+
54 Right-Amygdala 103 255 255 0
|
|
59
|
+
55 Right-Insula 80 196 98 0
|
|
60
|
+
56 Right-Operculum 60 58 210 0
|
|
61
|
+
57 Right-Lesion 255 165 0 0
|
|
62
|
+
58 Right-Accumbens-area 255 165 0 0
|
|
63
|
+
59 Right-Substancia-Nigra 0 255 127 0
|
|
64
|
+
60 Right-VentralDC 165 42 42 0
|
|
65
|
+
61 Right-undetermined 135 206 235 0
|
|
66
|
+
62 Right-vessel 160 32 240 0
|
|
67
|
+
63 Right-choroid-plexus 0 200 221 0
|
|
68
|
+
64 Right-F3orb 100 50 100 0
|
|
69
|
+
65 Right-lOg 135 50 74 0
|
|
70
|
+
66 Right-WMCrowns 215 215 255 0
|
|
71
|
+
67 Right-mOg 51 50 135 0
|
|
72
|
+
68 Right-pOg 74 155 60 0
|
|
73
|
+
69 Right-Stellate 120 62 43 0
|
|
74
|
+
70 Right-Porg 74 155 60 0
|
|
75
|
+
71 Right-Aorg 122 135 50 0
|
|
76
|
+
72 5th-Ventricle 120 190 150 0
|
|
77
|
+
73 Left-Interior 122 135 50 0
|
|
78
|
+
74 Right-Interior 122 135 50 0
|
|
79
|
+
# 75/76 removed. duplicates of 4/43
|
|
80
|
+
# new 75/76 added
|
|
81
|
+
75 Left-Locus-Coeruleus 91 97 255 0
|
|
82
|
+
76 Right-Locus-Coeruleus 0 7 218 0
|
|
83
|
+
77 WM-hypointensities 200 70 255 0
|
|
84
|
+
78 Left-WM-hypointensities 255 148 10 0
|
|
85
|
+
79 Right-WM-hypointensities 255 148 10 0
|
|
86
|
+
80 non-WM-hypointensities 164 108 226 0
|
|
87
|
+
81 Left-non-WM-hypointensities 164 108 226 0
|
|
88
|
+
82 Right-non-WM-hypointensities 164 108 226 0
|
|
89
|
+
83 Left-F1 255 218 185 0
|
|
90
|
+
84 Right-F1 255 218 185 0
|
|
91
|
+
85 Optic-Chiasm 234 169 30 0
|
|
92
|
+
192 Corpus_Callosum 170 255 255 0
|
|
93
|
+
|
|
94
|
+
86 Left_future_WMSA 200 120 255 0
|
|
95
|
+
87 Right_future_WMSA 200 121 255 0
|
|
96
|
+
88 future_WMSA 200 122 255 0
|
|
97
|
+
|
|
98
|
+
96 Left-Amygdala-Anterior 205 10 125 0
|
|
99
|
+
97 Right-Amygdala-Anterior 205 10 125 0
|
|
100
|
+
98 Dura 160 32 240 0
|
|
101
|
+
|
|
102
|
+
99 Lesion 255 165 0 0
|
|
103
|
+
|
|
104
|
+
100 Left-wm-intensity-abnormality 124 140 178 0
|
|
105
|
+
101 Left-caudate-intensity-abnormality 125 140 178 0
|
|
106
|
+
102 Left-putamen-intensity-abnormality 126 140 178 0
|
|
107
|
+
103 Left-accumbens-intensity-abnormality 127 140 178 0
|
|
108
|
+
104 Left-pallidum-intensity-abnormality 124 141 178 0
|
|
109
|
+
105 Left-amygdala-intensity-abnormality 124 142 178 0
|
|
110
|
+
106 Left-hippocampus-intensity-abnormality 124 143 178 0
|
|
111
|
+
107 Left-thalamus-intensity-abnormality 124 144 178 0
|
|
112
|
+
108 Left-VDC-intensity-abnormality 124 140 179 0
|
|
113
|
+
109 Right-wm-intensity-abnormality 124 140 178 0
|
|
114
|
+
110 Right-caudate-intensity-abnormality 125 140 178 0
|
|
115
|
+
111 Right-putamen-intensity-abnormality 126 140 178 0
|
|
116
|
+
112 Right-accumbens-intensity-abnormality 127 140 178 0
|
|
117
|
+
113 Right-pallidum-intensity-abnormality 124 141 178 0
|
|
118
|
+
114 Right-amygdala-intensity-abnormality 124 142 178 0
|
|
119
|
+
115 Right-hippocampus-intensity-abnormality 124 143 178 0
|
|
120
|
+
116 Right-thalamus-intensity-abnormality 124 144 178 0
|
|
121
|
+
117 Right-VDC-intensity-abnormality 124 140 179 0
|
|
122
|
+
|
|
123
|
+
118 Epidermis 255 20 147 0
|
|
124
|
+
119 Conn-Tissue 205 179 139 0
|
|
125
|
+
120 SC-Fat-Muscle 238 238 209 0
|
|
126
|
+
121 Cranium 200 200 200 0
|
|
127
|
+
122 CSF-SA 74 255 74 0
|
|
128
|
+
123 Muscle 238 0 0 0
|
|
129
|
+
124 Ear 0 0 139 0
|
|
130
|
+
125 Adipose 173 255 47 0
|
|
131
|
+
126 Spinal-Cord 133 203 229 0
|
|
132
|
+
127 Soft-Tissue 26 237 57 0
|
|
133
|
+
128 Nerve 34 139 34 0
|
|
134
|
+
129 Bone 30 144 255 0
|
|
135
|
+
130 AirCavity 196 160 128 0
|
|
136
|
+
131 Orbital-Fat 238 59 59 0
|
|
137
|
+
132 Tongue 221 39 200 0
|
|
138
|
+
133 Nasal-Structures 238 174 238 0
|
|
139
|
+
134 Globe 255 0 0 0
|
|
140
|
+
135 Teeth 72 61 139 0
|
|
141
|
+
136 Left-Caudate-Putamen 21 39 132 0
|
|
142
|
+
137 Right-Caudate-Putamen 21 39 132 0
|
|
143
|
+
138 Left-Claustrum 65 135 20 0
|
|
144
|
+
139 Right-Claustrum 65 135 20 0
|
|
145
|
+
140 Cornea 134 4 160 0
|
|
146
|
+
142 Diploe 221 226 68 0
|
|
147
|
+
143 Vitreous-Humor 255 255 254 0
|
|
148
|
+
144 Lens 52 209 226 0
|
|
149
|
+
145 Aqueous-Humor 239 160 223 0
|
|
150
|
+
146 Outer-Table 70 130 180 0
|
|
151
|
+
147 Inner-Table 70 130 181 0
|
|
152
|
+
148 Periosteum 139 121 94 0
|
|
153
|
+
149 Endosteum 224 224 224 0
|
|
154
|
+
150 R-C-S 255 0 0 0
|
|
155
|
+
151 Iris 205 205 0 0
|
|
156
|
+
152 SC-Adipose-Muscle 238 238 209 0
|
|
157
|
+
153 SC-Tissue 139 121 94 0
|
|
158
|
+
154 Orbital-Adipose 238 59 59 0
|
|
159
|
+
|
|
160
|
+
155 Left-IntCapsule-Ant 238 59 59 0
|
|
161
|
+
156 Right-IntCapsule-Ant 238 59 59 0
|
|
162
|
+
157 Left-IntCapsule-Pos 62 10 205 0
|
|
163
|
+
158 Right-IntCapsule-Pos 62 10 205 0
|
|
164
|
+
|
|
165
|
+
# These labels are for babies/children
|
|
166
|
+
159 Left-Cerebral-WM-unmyelinated 0 118 14 0
|
|
167
|
+
160 Right-Cerebral-WM-unmyelinated 0 118 14 0
|
|
168
|
+
161 Left-Cerebral-WM-myelinated 220 216 21 0
|
|
169
|
+
162 Right-Cerebral-WM-myelinated 220 216 21 0
|
|
170
|
+
163 Left-Subcortical-Gray-Matter 122 186 220 0
|
|
171
|
+
164 Right-Subcortical-Gray-Matter 122 186 220 0
|
|
172
|
+
165 Skull 120 120 120 0
|
|
173
|
+
166 Posterior-fossa 14 48 255 0
|
|
174
|
+
167 Scalp 166 42 42 0
|
|
175
|
+
168 Hematoma 121 18 134 0
|
|
176
|
+
169 Left-Basal-Ganglia 236 13 127 0
|
|
177
|
+
176 Right-Basal-Ganglia 236 13 126 0
|
|
178
|
+
|
|
179
|
+
# Label names and colors for Brainstem constituents
|
|
180
|
+
# No. Label Name: R G B A
|
|
181
|
+
170 brainstem 119 159 176 0
|
|
182
|
+
171 DCG 119 0 176 0
|
|
183
|
+
172 Vermis 119 100 176 0
|
|
184
|
+
173 Midbrain 242 104 76 0
|
|
185
|
+
174 Pons 206 195 58 0
|
|
186
|
+
175 Medulla 119 159 176 0
|
|
187
|
+
177 Vermis-White-Matter 119 50 176 0
|
|
188
|
+
178 SCP 142 182 0 0
|
|
189
|
+
179 Floculus 19 100 176 0
|
|
190
|
+
|
|
191
|
+
#176 Right-Basal-Ganglia found in babies/children section above
|
|
192
|
+
|
|
193
|
+
180 Left-Cortical-Dysplasia 73 61 139 0
|
|
194
|
+
181 Right-Cortical-Dysplasia 73 62 139 0
|
|
195
|
+
182 CblumNodulus 10 100 176 0
|
|
196
|
+
|
|
197
|
+
# Changed name to "Area" to indicate that this is not
|
|
198
|
+
# currently a fully vetted segmentation
|
|
199
|
+
183 Left-Vermis-Area 119 100 176 0
|
|
200
|
+
184 Right-Vermis-Area 100 119 176 0
|
|
201
|
+
|
|
202
|
+
#192 Corpus_Callosum listed after #85 above
|
|
203
|
+
193 Left-hippocampal_fissure 0 196 255 0
|
|
204
|
+
194 Left-CADG-head 255 164 164 0
|
|
205
|
+
195 Left-subiculum 196 196 0 0
|
|
206
|
+
196 Left-fimbria 0 100 255 0
|
|
207
|
+
197 Right-hippocampal_fissure 128 196 164 0
|
|
208
|
+
198 Right-CADG-head 0 126 75 0
|
|
209
|
+
199 Right-subiculum 128 96 64 0
|
|
210
|
+
200 Right-fimbria 0 50 128 0
|
|
211
|
+
201 alveus 255 204 153 0
|
|
212
|
+
202 perforant_pathway 255 128 128 0
|
|
213
|
+
203 parasubiculum 175 175 75 0
|
|
214
|
+
204 presubiculum 64 0 64 0
|
|
215
|
+
205 subiculum 0 0 255 0
|
|
216
|
+
206 CA1 255 0 0 0
|
|
217
|
+
207 CA2 128 128 255 0
|
|
218
|
+
208 CA3 0 128 0 0
|
|
219
|
+
209 CA4 196 160 128 0
|
|
220
|
+
210 GC-DG 32 200 255 0
|
|
221
|
+
211 HATA 128 255 128 0
|
|
222
|
+
212 fimbria 204 153 204 0
|
|
223
|
+
213 lateral_ventricle 121 17 136 0
|
|
224
|
+
214 molecular_layer_HP 128 0 0 0
|
|
225
|
+
215 hippocampal_fissure 128 32 255 0
|
|
226
|
+
216 entorhinal_cortex 255 204 102 0
|
|
227
|
+
217 molecular_layer_subiculum 128 128 128 0
|
|
228
|
+
218 Amygdala 104 255 255 0
|
|
229
|
+
219 Cerebral_White_Matter 0 226 0 0
|
|
230
|
+
220 Cerebral_Cortex 205 63 78 0
|
|
231
|
+
221 Inf_Lat_Vent 197 58 250 0
|
|
232
|
+
222 Perirhinal 33 150 250 0
|
|
233
|
+
223 Cerebral_White_Matter_Edge 226 0 0 0
|
|
234
|
+
224 Background 100 100 100 0
|
|
235
|
+
225 Ectorhinal 197 150 250 0
|
|
236
|
+
226 HP_tail 170 170 255 0
|
|
237
|
+
227 Polymorphic-Layer 128 255 128 0
|
|
238
|
+
228 Intracellular-Space 204 153 204 0
|
|
239
|
+
229 molecular_layer_DG 168 0 0 0
|
|
240
|
+
230 Prosubiculum 252 132 8 0
|
|
241
|
+
|
|
242
|
+
231 HP_body 0 255 0 0
|
|
243
|
+
232 HP_head 255 0 0 0
|
|
244
|
+
|
|
245
|
+
233 presubiculum-head 32 0 32 0
|
|
246
|
+
234 presubiculum-body 64 0 64 0
|
|
247
|
+
235 subiculum-head 0 0 175 0
|
|
248
|
+
236 subiculum-body 0 0 255 0
|
|
249
|
+
237 CA1-head 175 75 75 0
|
|
250
|
+
238 CA1-body 255 0 0 0
|
|
251
|
+
239 CA3-head 0 80 0 0
|
|
252
|
+
240 CA3-body 0 128 0 0
|
|
253
|
+
241 CA4-head 120 90 50 0
|
|
254
|
+
242 CA4-body 196 160 128 0
|
|
255
|
+
243 GC-ML-DG-head 75 125 175 0
|
|
256
|
+
244 GC-ML-DG-body 32 200 255 0
|
|
257
|
+
245 molecular_layer_HP-head 100 25 25 0
|
|
258
|
+
246 molecular_layer_HP-body 128 0 0 0
|
|
259
|
+
|
|
260
|
+
247 FreezeSurface 10 100 100 0
|
|
261
|
+
|
|
262
|
+
250 Fornix 255 0 0 0
|
|
263
|
+
251 CC_Posterior 0 0 64 0
|
|
264
|
+
252 CC_Mid_Posterior 0 0 112 0
|
|
265
|
+
253 CC_Central 0 0 160 0
|
|
266
|
+
254 CC_Mid_Anterior 0 0 208 0
|
|
267
|
+
255 CC_Anterior 0 0 255 0
|
|
268
|
+
|
|
269
|
+
# This is for keeping track of voxel changes
|
|
270
|
+
256 Voxel-Unchanged 0 0 0 0
|
|
271
|
+
|
|
272
|
+
257 CSF-ExtraCerebral 60 60 60 0
|
|
273
|
+
258 Head-ExtraCerebral 150 150 200 0
|
|
274
|
+
259 Eye-Fluid 60 60 60 0
|
|
275
|
+
260 BoneOrAir 119 159 176 0
|
|
276
|
+
261 PossibleFluid 120 18 134 0
|
|
277
|
+
262 Sinus 85 85 127 0
|
|
278
|
+
263 Left-Eustachian 119 159 176 0
|
|
279
|
+
264 Right-Eustachian 119 159 176 0
|
|
280
|
+
265 Left-Eyeball 60 60 60 0
|
|
281
|
+
266 Right-Eyeball 60 60 60 0
|
|
282
|
+
267 Pons-Belly-Area 206 195 58 0
|
|
283
|
+
|
|
284
|
+
270 ctx-lh-infragranular 205 70 78 0
|
|
285
|
+
271 ctx-lh-layer1 210 80 78 0
|
|
286
|
+
272 ctx-lh-layer2 215 90 78 0
|
|
287
|
+
273 ctx-lh-layer3 220 100 78 0
|
|
288
|
+
274 ctx-lh-layer4 225 110 78 0
|
|
289
|
+
275 ctx-lh-layer5 230 120 78 0
|
|
290
|
+
276 ctx-lh-layer6 235 135 78 0
|
|
291
|
+
277 ctx-lh-supragranular 240 140 78 0
|
|
292
|
+
278 SubiculumU 20 119 165 0
|
|
293
|
+
279 CA1U 255 108 108 0
|
|
294
|
+
280 CA2U 167 130 199 0
|
|
295
|
+
281 CA3U 0 202 0 0
|
|
296
|
+
|
|
297
|
+
# lymph node and vascular labels
|
|
298
|
+
331 Aorta 255 0 0 0
|
|
299
|
+
332 Left-Common-IliacA 255 80 0 0
|
|
300
|
+
333 Right-Common-IliacA 255 160 0 0
|
|
301
|
+
334 Left-External-IliacA 255 255 0 0
|
|
302
|
+
335 Right-External-IliacA 0 255 0 0
|
|
303
|
+
336 Left-Internal-IliacA 255 0 160 0
|
|
304
|
+
337 Right-Internal-IliacA 255 0 255 0
|
|
305
|
+
338 Left-Lateral-SacralA 255 50 80 0
|
|
306
|
+
339 Right-Lateral-SacralA 80 255 50 0
|
|
307
|
+
340 Left-ObturatorA 160 255 50 0
|
|
308
|
+
341 Right-ObturatorA 160 200 255 0
|
|
309
|
+
342 Left-Internal-PudendalA 0 255 160 0
|
|
310
|
+
343 Right-Internal-PudendalA 0 0 255 0
|
|
311
|
+
344 Left-UmbilicalA 80 50 255 0
|
|
312
|
+
345 Right-UmbilicalA 160 0 255 0
|
|
313
|
+
346 Left-Inf-RectalA 255 210 0 0
|
|
314
|
+
347 Right-Inf-RectalA 0 160 255 0
|
|
315
|
+
348 Left-Common-IliacV 255 200 80 0
|
|
316
|
+
349 Right-Common-IliacV 255 200 160 0
|
|
317
|
+
350 Left-External-IliacV 255 80 200 0
|
|
318
|
+
351 Right-External-IliacV 255 160 200 0
|
|
319
|
+
352 Left-Internal-IliacV 30 255 80 0
|
|
320
|
+
353 Right-Internal-IliacV 80 200 255 0
|
|
321
|
+
354 Left-ObturatorV 80 255 200 0
|
|
322
|
+
355 Right-ObturatorV 195 255 200 0
|
|
323
|
+
356 Left-Internal-PudendalV 120 200 20 0
|
|
324
|
+
357 Right-Internal-PudendalV 170 10 200 0
|
|
325
|
+
358 Pos-Lymph 20 130 180 0
|
|
326
|
+
359 Neg-Lymph 20 180 130 0
|
|
327
|
+
|
|
328
|
+
370 ctx-rh-infragranular 205 70 130 0
|
|
329
|
+
371 ctx-rh-layer1 210 80 130 0
|
|
330
|
+
372 ctx-rh-layer2 215 90 130 0
|
|
331
|
+
373 ctx-rh-layer3 220 100 130 0
|
|
332
|
+
374 ctx-rh-layer4 225 110 130 0
|
|
333
|
+
375 ctx-rh-layer5 230 120 130 0
|
|
334
|
+
376 ctx-rh-layer6 235 135 130 0
|
|
335
|
+
377 ctx-rh-supragranular 240 140 130 0
|
|
336
|
+
|
|
337
|
+
400 V1 206 62 78 0
|
|
338
|
+
401 V2 121 18 134 0
|
|
339
|
+
402 BA44 199 58 250 0
|
|
340
|
+
403 BA45 1 148 0 0
|
|
341
|
+
404 BA4a 221 248 164 0
|
|
342
|
+
405 BA4p 231 148 34 0
|
|
343
|
+
406 BA6 1 118 14 0
|
|
344
|
+
407 BA2 120 118 14 0
|
|
345
|
+
408 BA1_old 123 186 221 0
|
|
346
|
+
409 BAun2 238 13 177 0
|
|
347
|
+
410 BA1 123 186 220 0
|
|
348
|
+
411 BA2b 138 13 206 0
|
|
349
|
+
412 BA3a 238 130 176 0
|
|
350
|
+
413 BA3b 218 230 76 0
|
|
351
|
+
414 MT 38 213 176 0
|
|
352
|
+
415 AIPS_AIP_l 1 225 176 0
|
|
353
|
+
416 AIPS_AIP_r 1 225 176 0
|
|
354
|
+
417 AIPS_VIP_l 200 2 100 0
|
|
355
|
+
418 AIPS_VIP_r 200 2 100 0
|
|
356
|
+
419 IPL_PFcm_l 5 200 90 0
|
|
357
|
+
420 IPL_PFcm_r 5 200 90 0
|
|
358
|
+
421 IPL_PF_l 100 5 200 0
|
|
359
|
+
422 IPL_PFm_l 25 255 100 0
|
|
360
|
+
423 IPL_PFm_r 25 255 100 0
|
|
361
|
+
424 IPL_PFop_l 230 7 100 0
|
|
362
|
+
425 IPL_PFop_r 230 7 100 0
|
|
363
|
+
426 IPL_PF_r 100 5 200 0
|
|
364
|
+
427 IPL_PFt_l 150 10 200 0
|
|
365
|
+
428 IPL_PFt_r 150 10 200 0
|
|
366
|
+
429 IPL_PGa_l 175 10 176 0
|
|
367
|
+
430 IPL_PGa_r 175 10 176 0
|
|
368
|
+
431 IPL_PGp_l 10 100 255 0
|
|
369
|
+
432 IPL_PGp_r 10 100 255 0
|
|
370
|
+
433 Visual_V3d_l 150 45 70 0
|
|
371
|
+
434 Visual_V3d_r 150 45 70 0
|
|
372
|
+
435 Visual_V4_l 45 200 15 0
|
|
373
|
+
436 Visual_V4_r 45 200 15 0
|
|
374
|
+
437 Visual_V5_b 227 45 100 0
|
|
375
|
+
438 Visual_VP_l 227 45 100 0
|
|
376
|
+
439 Visual_VP_r 227 45 100 0
|
|
377
|
+
|
|
378
|
+
# wm lesions
|
|
379
|
+
498 wmsa 143 188 143 0
|
|
380
|
+
499 other_wmsa 255 248 220 0
|
|
381
|
+
|
|
382
|
+
# HiRes Hippocampus labeling
|
|
383
|
+
500 right_CA2_3 17 85 136 0
|
|
384
|
+
501 right_alveus 119 187 102 0
|
|
385
|
+
502 right_CA1 204 68 34 0
|
|
386
|
+
503 right_fimbria 204 0 255 0
|
|
387
|
+
504 right_presubiculum 221 187 17 0
|
|
388
|
+
505 right_hippocampal_fissure 153 221 238 0
|
|
389
|
+
506 right_CA4_DG 51 17 17 0
|
|
390
|
+
507 right_subiculum 0 119 85 0
|
|
391
|
+
508 right_fornix 20 100 200 0
|
|
392
|
+
|
|
393
|
+
550 left_CA2_3 17 85 137 0
|
|
394
|
+
551 left_alveus 119 187 103 0
|
|
395
|
+
552 left_CA1 204 68 35 0
|
|
396
|
+
553 left_fimbria 204 0 254 0
|
|
397
|
+
554 left_presubiculum 221 187 16 0
|
|
398
|
+
555 left_hippocampal_fissure 153 221 239 0
|
|
399
|
+
556 left_CA4_DG 51 17 18 0
|
|
400
|
+
557 left_subiculum 0 119 86 0
|
|
401
|
+
558 left_fornix 20 100 201 0
|
|
402
|
+
|
|
403
|
+
559 Subcortical-Gray-Matter 123 187 221 0
|
|
404
|
+
|
|
405
|
+
600 Tumor 254 254 254 0
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
# Cerebellar parcellation labels from SUIT (matches labels in cma.h),
|
|
409
|
+
# FastSurfer-CerebNet builds on top of these SUITS labels and expands them two aggregated labels (see below)
|
|
410
|
+
# See https://doi.org/10.1016/j.neuroimage.2022.119703
|
|
411
|
+
#No. Label Name: R G B A
|
|
412
|
+
601 Cbm_Left_I_IV 0 69 190 0
|
|
413
|
+
602 Cbm_Right_I_IV 70 170 180 0
|
|
414
|
+
603 Cbm_Left_V 205 62 78 0
|
|
415
|
+
604 Cbm_Right_V 205 102 78 0
|
|
416
|
+
605 Cbm_Left_VI 196 58 250 0
|
|
417
|
+
606 Cbm_Vermis_VI 0 148 0 0
|
|
418
|
+
607 Cbm_Right_VI 196 98 250 0
|
|
419
|
+
608 Cbm_Left_CrusI 230 148 34 0
|
|
420
|
+
609 Cbm_Vermis_CrusI 0 118 14 0
|
|
421
|
+
610 Cbm_Right_CrusI 230 188 34 0
|
|
422
|
+
611 Cbm_Left_CrusII 122 200 120 0
|
|
423
|
+
612 Cbm_Vermis_CrusII 236 13 176 0
|
|
424
|
+
613 Cbm_Right_CrusII 122 240 120 0
|
|
425
|
+
614 Cbm_Left_VIIb 0 149 208 0
|
|
426
|
+
615 Cbm_Vermis_VIIb 42 204 164 0
|
|
427
|
+
616 Cbm_Right_VIIb 0 189 208 0
|
|
428
|
+
617 Cbm_Left_VIIIa 220 205 20 0
|
|
429
|
+
618 Cbm_Vermis_VIIIa 103 255 255 0
|
|
430
|
+
619 Cbm_Right_VIIIa 220 245 20 0
|
|
431
|
+
620 Cbm_Left_VIIIb 60 58 210 0
|
|
432
|
+
621 Cbm_Vermis_VIIIb 60 58 210 0
|
|
433
|
+
622 Cbm_Right_VIIIb 60 98 210 0
|
|
434
|
+
623 Cbm_Left_IX 90 135 35 0
|
|
435
|
+
624 Cbm_Vermis_IX 225 60 160 0
|
|
436
|
+
625 Cbm_Right_IX 158 233 19 0
|
|
437
|
+
626 Cbm_Left_X 165 42 42 0
|
|
438
|
+
627 Cbm_Vermis_X 0 255 127 0
|
|
439
|
+
628 Cbm_Right_X 165 82 42 0
|
|
440
|
+
|
|
441
|
+
# Cerebellar aggregated labels extended for FastSurfer-CerebNet
|
|
442
|
+
# See https://doi.org/10.1016/j.neuroimage.2022.119703
|
|
443
|
+
630 Cbm_Vermis_VII 230 73 25 0
|
|
444
|
+
631 Cbm_Vermis_VIII 103 255 255 0
|
|
445
|
+
632 Cbm_Vermis 230 73 25 0
|
|
446
|
+
|
|
447
|
+
# Cerebellar lobule parcellations
|
|
448
|
+
640 Cbm_Right_I_V_med 204 0 0 0
|
|
449
|
+
641 Cbm_Right_I_V_mid 255 0 0 0
|
|
450
|
+
642 Cbm_Right_VI_med 0 0 255 0
|
|
451
|
+
643 Cbm_Right_VI_mid 30 144 255 0
|
|
452
|
+
644 Cbm_Right_VI_lat 100 212 237 0
|
|
453
|
+
645 Cbm_Right_CrusI_med 218 165 32 0
|
|
454
|
+
646 Cbm_Right_CrusI_mid 255 215 0 0
|
|
455
|
+
647 Cbm_Right_CrusI_lat 255 255 166 0
|
|
456
|
+
648 Cbm_Right_CrusII_med 153 0 204 0
|
|
457
|
+
649 Cbm_Right_CrusII_mid 153 141 209 0
|
|
458
|
+
650 Cbm_Right_CrusII_lat 204 204 255 0
|
|
459
|
+
651 Cbm_Right_7med 31 212 194 0
|
|
460
|
+
652 Cbm_Right_7mid 3 255 237 0
|
|
461
|
+
653 Cbm_Right_7lat 204 255 255 0
|
|
462
|
+
654 Cbm_Right_8med 86 74 147 0
|
|
463
|
+
655 Cbm_Right_8mid 114 114 190 0
|
|
464
|
+
656 Cbm_Right_8lat 184 178 255 0
|
|
465
|
+
657 Cbm_Right_PUNs 126 138 37 0
|
|
466
|
+
658 Cbm_Right_TONs 189 197 117 0
|
|
467
|
+
659 Cbm_Right_FLOs 240 230 140 0
|
|
468
|
+
660 Cbm_Left_I_V_med 204 0 0 0
|
|
469
|
+
661 Cbm_Left_I_V_mid 255 0 0 0
|
|
470
|
+
662 Cbm_Left_VI_med 0 0 255 0
|
|
471
|
+
663 Cbm_Left_VI_mid 30 144 255 0
|
|
472
|
+
664 Cbm_Left_VI_lat 100 212 237 0
|
|
473
|
+
665 Cbm_Left_CrusI_med 218 165 32 0
|
|
474
|
+
666 Cbm_Left_CrusI_mid 255 215 0 0
|
|
475
|
+
667 Cbm_Left_CrusI_lat 255 255 166 0
|
|
476
|
+
668 Cbm_Left_CrusII_med 153 0 204 0
|
|
477
|
+
669 Cbm_Left_CrusII_mid 153 141 209 0
|
|
478
|
+
670 Cbm_Left_CrusII_lat 204 204 255 0
|
|
479
|
+
671 Cbm_Left_7med 31 212 194 0
|
|
480
|
+
672 Cbm_Left_7mid 3 255 237 0
|
|
481
|
+
673 Cbm_Left_7lat 204 255 255 0
|
|
482
|
+
674 Cbm_Left_8med 86 74 147 0
|
|
483
|
+
675 Cbm_Left_8mid 114 114 190 0
|
|
484
|
+
676 Cbm_Left_8lat 184 178 255 0
|
|
485
|
+
677 Cbm_Left_PUNs 126 138 37 0
|
|
486
|
+
678 Cbm_Left_TONs 189 197 117 0
|
|
487
|
+
679 Cbm_Left_FLOs 240 230 140 0
|
|
488
|
+
# Added by DNG 7/31/14
|
|
489
|
+
690 CbmWM_Gyri_Left 122 135 50 0
|
|
490
|
+
691 CbmWM_Gyri_Right 122 135 50 0
|
|
491
|
+
|
|
492
|
+
701 CSF-FSL-FAST 120 18 134 0
|
|
493
|
+
702 GrayMatter-FSL-FAST 205 62 78 0
|
|
494
|
+
703 WhiteMatter-FSL-FAST 0 225 0 0
|
|
495
|
+
|
|
496
|
+
801 L_hypothalamus_anterior_inferior 250 255 50 0
|
|
497
|
+
802 L_hypothalamus_anterior_superior 80 200 255 0
|
|
498
|
+
803 L_hypothalamus_posterior 255 160 0 0
|
|
499
|
+
804 L_hypothalamus_tubular_inferior 255 160 200 0
|
|
500
|
+
805 L_hypothalamus_tubular_superior 20 180 130 0
|
|
501
|
+
806 R_hypothalamus_anterior_inferior 250 255 50 0
|
|
502
|
+
807 R_hypothalamus_anterior_superior 80 200 255 0
|
|
503
|
+
808 R_hypothalamus_posterior 255 160 0 0
|
|
504
|
+
809 R_hypothalamus_tubular_inferior 255 160 200 0
|
|
505
|
+
810 R_hypothalamus_tubular_superior 20 180 130 0
|
|
506
|
+
|
|
507
|
+
# SAMSEG-CHARM + 400
|
|
508
|
+
901 Air-Internal 0 170 0 0
|
|
509
|
+
902 Artery 204 0 0 255
|
|
510
|
+
906 EyeBalls 230 189 66 255
|
|
511
|
+
907 Other-Tissues 85 85 0 0
|
|
512
|
+
908 Rectus-Muscles 190 50 73 255
|
|
513
|
+
909 Mucosa 255 160 188 255
|
|
514
|
+
911 Skin 85 85 85 0
|
|
515
|
+
912 Charm-Spinal-Cord 0 187 169 255
|
|
516
|
+
914 Vein 0 84 255 255
|
|
517
|
+
915 Bone-Cortical 0 85 0 0
|
|
518
|
+
916 Bone-Cancellous 170 170 0 255
|
|
519
|
+
917 Charm-Background 0 168 255 255
|
|
520
|
+
920 Cortical-CSF 120 133 217 255
|
|
521
|
+
930 Optic-Nerve 0 191 122 255
|
|
522
|
+
|
|
523
|
+
# Below is the color table for olfactory bulb structures generated by FastSurfer OB pipeline.
|
|
524
|
+
# See : https://doi.org/10.1016/j.neuroimage.2021.118464
|
|
525
|
+
|
|
526
|
+
951 L-olfactory-bulb 0 0 255 0
|
|
527
|
+
952 R-olfactory-bulb 255 0 0 0
|
|
528
|
+
|
|
529
|
+
# Below is the color table for the hypothalamic subregions generated by FastSurfer HypVINN pipeline
|
|
530
|
+
#See : https://doi.org/10.1162/imag_a_00034
|
|
531
|
+
|
|
532
|
+
961 R-N.opticus 70 130 180 0
|
|
533
|
+
962 L-N.opticus 130 180 70 0
|
|
534
|
+
963 R-C.mammilare 205 62 78 0
|
|
535
|
+
964 R-Optic-tract 80 120 134 0
|
|
536
|
+
965 L-Optic-tract 196 58 250 0
|
|
537
|
+
966 L-C.mammilare 0 148 0 0
|
|
538
|
+
967 R-Chiasma-Opticum 220 248 164 0
|
|
539
|
+
968 L-Chiasma-Opticum 230 148 34 0
|
|
540
|
+
969 Ant-Commisure 10 180 225 0
|
|
541
|
+
970 Third-Ventricle 118 0 100 0
|
|
542
|
+
971 R-Fornix 122 200 120 0
|
|
543
|
+
972 L-Fornix 236 13 176 0
|
|
544
|
+
973 Epiphysis 204 182 142 0
|
|
545
|
+
974 Hypophysis 119 159 176 0
|
|
546
|
+
975 Infundibulum 220 216 20 0
|
|
547
|
+
976 Tuberal-Region 120 60 110 0
|
|
548
|
+
977 L-Med-Hypothalamus 165 255 0 0
|
|
549
|
+
978 L-Lat-Hypothalamus 0 255 127 0
|
|
550
|
+
979 L-Ant-Hypothalamus 165 42 42 0
|
|
551
|
+
980 L-Post-Hypothalamus 255 215 0 0
|
|
552
|
+
981 R-Med-Hypothalamus 115 255 0 0
|
|
553
|
+
982 R-Lat-Hypothalamus 60 255 127 0
|
|
554
|
+
983 R-Ant-Hypothalamus 165 142 42 0
|
|
555
|
+
984 R-Post-Hypothalamus 255 170 20 0
|
|
556
|
+
|
|
557
|
+
999 SUSPICIOUS 255 100 100 0
|
|
558
|
+
|
|
559
|
+
# Below is the color table for the cortical labels of the seg volume
|
|
560
|
+
# created by mri_aparc2aseg in which the aseg cortex label is replaced
|
|
561
|
+
# by the labels in the aparc. It also supports wm labels that will
|
|
562
|
+
# eventually be created by mri_aparc2aseg. Otherwise, the aseg labels
|
|
563
|
+
# do not change from above. The cortical labels are the same as in
|
|
564
|
+
# colortable_desikan_killiany.txt, except that left hemisphere has
|
|
565
|
+
# 1000 added to the index and the right has 2000 added. The label
|
|
566
|
+
# names are also prepended with ctx-lh or ctx-rh. The white matter
|
|
567
|
+
# labels are the same as in colortable_desikan_killiany.txt, except
|
|
568
|
+
# that left hemisphere has 3000 added to the index and the right has
|
|
569
|
+
# 4000 added. The label names are also prepended with wm-lh or wm-rh.
|
|
570
|
+
# Centrum semiovale is also labeled with 5001 (left) and 5002 (right).
|
|
571
|
+
# Even further below are the color tables for aparc.a2005s and aparc.a2009s.
|
|
572
|
+
|
|
573
|
+
#No. Label Name: R G B A
|
|
574
|
+
1000 ctx-lh-unknown 25 5 25 0
|
|
575
|
+
1001 ctx-lh-bankssts 25 100 40 0
|
|
576
|
+
1002 ctx-lh-caudalanteriorcingulate 125 100 160 0
|
|
577
|
+
1003 ctx-lh-caudalmiddlefrontal 100 25 0 0
|
|
578
|
+
1004 ctx-lh-corpuscallosum 120 70 50 0
|
|
579
|
+
1005 ctx-lh-cuneus 220 20 100 0
|
|
580
|
+
1006 ctx-lh-entorhinal 220 20 10 0
|
|
581
|
+
1007 ctx-lh-fusiform 180 220 140 0
|
|
582
|
+
1008 ctx-lh-inferiorparietal 220 60 220 0
|
|
583
|
+
1009 ctx-lh-inferiortemporal 180 40 120 0
|
|
584
|
+
1010 ctx-lh-isthmuscingulate 140 20 140 0
|
|
585
|
+
1011 ctx-lh-lateraloccipital 20 30 140 0
|
|
586
|
+
1012 ctx-lh-lateralorbitofrontal 35 75 50 0
|
|
587
|
+
1013 ctx-lh-lingual 225 140 140 0
|
|
588
|
+
1014 ctx-lh-medialorbitofrontal 200 35 75 0
|
|
589
|
+
1015 ctx-lh-middletemporal 160 100 50 0
|
|
590
|
+
1016 ctx-lh-parahippocampal 20 220 60 0
|
|
591
|
+
1017 ctx-lh-paracentral 60 220 60 0
|
|
592
|
+
1018 ctx-lh-parsopercularis 220 180 140 0
|
|
593
|
+
1019 ctx-lh-parsorbitalis 20 100 50 0
|
|
594
|
+
1020 ctx-lh-parstriangularis 220 60 20 0
|
|
595
|
+
1021 ctx-lh-pericalcarine 120 100 60 0
|
|
596
|
+
1022 ctx-lh-postcentral 220 20 20 0
|
|
597
|
+
1023 ctx-lh-posteriorcingulate 220 180 220 0
|
|
598
|
+
1024 ctx-lh-precentral 60 20 220 0
|
|
599
|
+
1025 ctx-lh-precuneus 160 140 180 0
|
|
600
|
+
1026 ctx-lh-rostralanteriorcingulate 80 20 140 0
|
|
601
|
+
1027 ctx-lh-rostralmiddlefrontal 75 50 125 0
|
|
602
|
+
1028 ctx-lh-superiorfrontal 20 220 160 0
|
|
603
|
+
1029 ctx-lh-superiorparietal 20 180 140 0
|
|
604
|
+
1030 ctx-lh-superiortemporal 140 220 220 0
|
|
605
|
+
1031 ctx-lh-supramarginal 80 160 20 0
|
|
606
|
+
1032 ctx-lh-frontalpole 100 0 100 0
|
|
607
|
+
1033 ctx-lh-temporalpole 70 70 70 0
|
|
608
|
+
1034 ctx-lh-transversetemporal 150 150 200 0
|
|
609
|
+
1035 ctx-lh-insula 255 192 32 0
|
|
610
|
+
|
|
611
|
+
2000 ctx-rh-unknown 25 5 25 0
|
|
612
|
+
2001 ctx-rh-bankssts 25 100 40 0
|
|
613
|
+
2002 ctx-rh-caudalanteriorcingulate 125 100 160 0
|
|
614
|
+
2003 ctx-rh-caudalmiddlefrontal 100 25 0 0
|
|
615
|
+
2004 ctx-rh-corpuscallosum 120 70 50 0
|
|
616
|
+
2005 ctx-rh-cuneus 220 20 100 0
|
|
617
|
+
2006 ctx-rh-entorhinal 220 20 10 0
|
|
618
|
+
2007 ctx-rh-fusiform 180 220 140 0
|
|
619
|
+
2008 ctx-rh-inferiorparietal 220 60 220 0
|
|
620
|
+
2009 ctx-rh-inferiortemporal 180 40 120 0
|
|
621
|
+
2010 ctx-rh-isthmuscingulate 140 20 140 0
|
|
622
|
+
2011 ctx-rh-lateraloccipital 20 30 140 0
|
|
623
|
+
2012 ctx-rh-lateralorbitofrontal 35 75 50 0
|
|
624
|
+
2013 ctx-rh-lingual 225 140 140 0
|
|
625
|
+
2014 ctx-rh-medialorbitofrontal 200 35 75 0
|
|
626
|
+
2015 ctx-rh-middletemporal 160 100 50 0
|
|
627
|
+
2016 ctx-rh-parahippocampal 20 220 60 0
|
|
628
|
+
2017 ctx-rh-paracentral 60 220 60 0
|
|
629
|
+
2018 ctx-rh-parsopercularis 220 180 140 0
|
|
630
|
+
2019 ctx-rh-parsorbitalis 20 100 50 0
|
|
631
|
+
2020 ctx-rh-parstriangularis 220 60 20 0
|
|
632
|
+
2021 ctx-rh-pericalcarine 120 100 60 0
|
|
633
|
+
2022 ctx-rh-postcentral 220 20 20 0
|
|
634
|
+
2023 ctx-rh-posteriorcingulate 220 180 220 0
|
|
635
|
+
2024 ctx-rh-precentral 60 20 220 0
|
|
636
|
+
2025 ctx-rh-precuneus 160 140 180 0
|
|
637
|
+
2026 ctx-rh-rostralanteriorcingulate 80 20 140 0
|
|
638
|
+
2027 ctx-rh-rostralmiddlefrontal 75 50 125 0
|
|
639
|
+
2028 ctx-rh-superiorfrontal 20 220 160 0
|
|
640
|
+
2029 ctx-rh-superiorparietal 20 180 140 0
|
|
641
|
+
2030 ctx-rh-superiortemporal 140 220 220 0
|
|
642
|
+
2031 ctx-rh-supramarginal 80 160 20 0
|
|
643
|
+
2032 ctx-rh-frontalpole 100 0 100 0
|
|
644
|
+
2033 ctx-rh-temporalpole 70 70 70 0
|
|
645
|
+
2034 ctx-rh-transversetemporal 150 150 200 0
|
|
646
|
+
2035 ctx-rh-insula 255 192 32 0
|
|
647
|
+
|
|
648
|
+
3000 wm-lh-unknown 230 250 230 0
|
|
649
|
+
3001 wm-lh-bankssts 230 155 215 0
|
|
650
|
+
3002 wm-lh-caudalanteriorcingulate 130 155 95 0
|
|
651
|
+
3003 wm-lh-caudalmiddlefrontal 155 230 255 0
|
|
652
|
+
3004 wm-lh-corpuscallosum 135 185 205 0
|
|
653
|
+
3005 wm-lh-cuneus 35 235 155 0
|
|
654
|
+
3006 wm-lh-entorhinal 35 235 245 0
|
|
655
|
+
3007 wm-lh-fusiform 75 35 115 0
|
|
656
|
+
3008 wm-lh-inferiorparietal 35 195 35 0
|
|
657
|
+
3009 wm-lh-inferiortemporal 75 215 135 0
|
|
658
|
+
3010 wm-lh-isthmuscingulate 115 235 115 0
|
|
659
|
+
3011 wm-lh-lateraloccipital 235 225 115 0
|
|
660
|
+
3012 wm-lh-lateralorbitofrontal 220 180 205 0
|
|
661
|
+
3013 wm-lh-lingual 30 115 115 0
|
|
662
|
+
3014 wm-lh-medialorbitofrontal 55 220 180 0
|
|
663
|
+
3015 wm-lh-middletemporal 95 155 205 0
|
|
664
|
+
3016 wm-lh-parahippocampal 235 35 195 0
|
|
665
|
+
3017 wm-lh-paracentral 195 35 195 0
|
|
666
|
+
3018 wm-lh-parsopercularis 35 75 115 0
|
|
667
|
+
3019 wm-lh-parsorbitalis 235 155 205 0
|
|
668
|
+
3020 wm-lh-parstriangularis 35 195 235 0
|
|
669
|
+
3021 wm-lh-pericalcarine 135 155 195 0
|
|
670
|
+
3022 wm-lh-postcentral 35 235 235 0
|
|
671
|
+
3023 wm-lh-posteriorcingulate 35 75 35 0
|
|
672
|
+
3024 wm-lh-precentral 195 235 35 0
|
|
673
|
+
3025 wm-lh-precuneus 95 115 75 0
|
|
674
|
+
3026 wm-lh-rostralanteriorcingulate 175 235 115 0
|
|
675
|
+
3027 wm-lh-rostralmiddlefrontal 180 205 130 0
|
|
676
|
+
3028 wm-lh-superiorfrontal 235 35 95 0
|
|
677
|
+
3029 wm-lh-superiorparietal 235 75 115 0
|
|
678
|
+
3030 wm-lh-superiortemporal 115 35 35 0
|
|
679
|
+
3031 wm-lh-supramarginal 175 95 235 0
|
|
680
|
+
3032 wm-lh-frontalpole 155 255 155 0
|
|
681
|
+
3033 wm-lh-temporalpole 185 185 185 0
|
|
682
|
+
3034 wm-lh-transversetemporal 105 105 55 0
|
|
683
|
+
3035 wm-lh-insula 20 220 160 0
|
|
684
|
+
|
|
685
|
+
4000 wm-rh-unknown 230 250 230 0
|
|
686
|
+
4001 wm-rh-bankssts 230 155 215 0
|
|
687
|
+
4002 wm-rh-caudalanteriorcingulate 130 155 95 0
|
|
688
|
+
4003 wm-rh-caudalmiddlefrontal 155 230 255 0
|
|
689
|
+
4004 wm-rh-corpuscallosum 135 185 205 0
|
|
690
|
+
4005 wm-rh-cuneus 35 235 155 0
|
|
691
|
+
4006 wm-rh-entorhinal 35 235 245 0
|
|
692
|
+
4007 wm-rh-fusiform 75 35 115 0
|
|
693
|
+
4008 wm-rh-inferiorparietal 35 195 35 0
|
|
694
|
+
4009 wm-rh-inferiortemporal 75 215 135 0
|
|
695
|
+
4010 wm-rh-isthmuscingulate 115 235 115 0
|
|
696
|
+
4011 wm-rh-lateraloccipital 235 225 115 0
|
|
697
|
+
4012 wm-rh-lateralorbitofrontal 220 180 205 0
|
|
698
|
+
4013 wm-rh-lingual 30 115 115 0
|
|
699
|
+
4014 wm-rh-medialorbitofrontal 55 220 180 0
|
|
700
|
+
4015 wm-rh-middletemporal 95 155 205 0
|
|
701
|
+
4016 wm-rh-parahippocampal 235 35 195 0
|
|
702
|
+
4017 wm-rh-paracentral 195 35 195 0
|
|
703
|
+
4018 wm-rh-parsopercularis 35 75 115 0
|
|
704
|
+
4019 wm-rh-parsorbitalis 235 155 205 0
|
|
705
|
+
4020 wm-rh-parstriangularis 35 195 235 0
|
|
706
|
+
4021 wm-rh-pericalcarine 135 155 195 0
|
|
707
|
+
4022 wm-rh-postcentral 35 235 235 0
|
|
708
|
+
4023 wm-rh-posteriorcingulate 35 75 35 0
|
|
709
|
+
4024 wm-rh-precentral 195 235 35 0
|
|
710
|
+
4025 wm-rh-precuneus 95 115 75 0
|
|
711
|
+
4026 wm-rh-rostralanteriorcingulate 175 235 115 0
|
|
712
|
+
4027 wm-rh-rostralmiddlefrontal 180 205 130 0
|
|
713
|
+
4028 wm-rh-superiorfrontal 235 35 95 0
|
|
714
|
+
4029 wm-rh-superiorparietal 235 75 115 0
|
|
715
|
+
4030 wm-rh-superiortemporal 115 35 35 0
|
|
716
|
+
4031 wm-rh-supramarginal 175 95 235 0
|
|
717
|
+
4032 wm-rh-frontalpole 155 255 155 0
|
|
718
|
+
4033 wm-rh-temporalpole 185 185 185 0
|
|
719
|
+
4034 wm-rh-transversetemporal 105 105 55 0
|
|
720
|
+
4035 wm-rh-insula 20 220 160 0
|
|
721
|
+
|
|
722
|
+
# Below is the color table for a lobar parcellation obtained from running:
|
|
723
|
+
# mri_annotation2label --subject subject --hemi lh --lobesStrict lobes
|
|
724
|
+
# mri_annotation2label --subject subject --hemi rh --lobesStrict lobes
|
|
725
|
+
# mri_aparc2aseg --s subject --rip-unknown --volmask \
|
|
726
|
+
# --o aparc.lobes.mgz --annot lobes \
|
|
727
|
+
# --base-offset 300 [--base-offset must be last arg]
|
|
728
|
+
|
|
729
|
+
1301 ctx-lh-frontal-lobe 25 100 40 0
|
|
730
|
+
1303 ctx-lh-cingulate-lobe 100 25 0 0
|
|
731
|
+
1304 ctx-lh-occipital-lobe 120 70 50 0
|
|
732
|
+
1305 ctx-lh-temporal-lobe 220 20 100 0
|
|
733
|
+
1306 ctx-lh-parietal-lobe 220 20 10 0
|
|
734
|
+
1307 ctx-lh-insula-lobe 255 192 32 0
|
|
735
|
+
|
|
736
|
+
2301 ctx-rh-frontal-lobe 25 100 40 0
|
|
737
|
+
2303 ctx-rh-cingulate-lobe 100 25 0 0
|
|
738
|
+
2304 ctx-rh-occipital-lobe 120 70 50 0
|
|
739
|
+
2305 ctx-rh-temporal-lobe 220 20 100 0
|
|
740
|
+
2306 ctx-rh-parietal-lobe 220 20 10 0
|
|
741
|
+
2307 ctx-rh-insula-lobe 255 192 32 0
|
|
742
|
+
|
|
743
|
+
# Below is the color table for a lobar white matter parcellation
|
|
744
|
+
# obtained from running:
|
|
745
|
+
# mri_annotation2label --subject subject --hemi lh --lobesStrict lobes
|
|
746
|
+
# mri_annotation2label --subject subject --hemi rh --lobesStrict lobes
|
|
747
|
+
# mri_aparc2aseg --s subject --labelwm --hypo-as-wm --rip-unknown \
|
|
748
|
+
# --volmask --o wmparc.lobes.mgz --ctxseg aparc+aseg.mgz \
|
|
749
|
+
# --annot lobes --base-offset 200 [--base-offset must be last arg]
|
|
750
|
+
|
|
751
|
+
3201 wm-lh-frontal-lobe 235 35 95 0
|
|
752
|
+
3203 wm-lh-cingulate-lobe 35 75 35 0
|
|
753
|
+
3204 wm-lh-occipital-lobe 135 155 195 0
|
|
754
|
+
3205 wm-lh-temporal-lobe 115 35 35 0
|
|
755
|
+
3206 wm-lh-parietal-lobe 35 195 35 0
|
|
756
|
+
3207 wm-lh-insula-lobe 20 220 160 0
|
|
757
|
+
|
|
758
|
+
4201 wm-rh-frontal-lobe 235 35 95 0
|
|
759
|
+
4203 wm-rh-cingulate-lobe 35 75 35 0
|
|
760
|
+
4204 wm-rh-occipital-lobe 135 155 195 0
|
|
761
|
+
4205 wm-rh-temporal-lobe 115 35 35 0
|
|
762
|
+
4206 wm-rh-parietal-lobe 35 195 35 0
|
|
763
|
+
4207 wm-rh-insula-lobe 20 220 160 0
|
|
764
|
+
|
|
765
|
+
# From Jean A
|
|
766
|
+
5024 Low_TDP-43_Pathology_Density 170 238 44 0
|
|
767
|
+
5025 Moderate_TDP-43_Pathology_Density 240 168 105 0
|
|
768
|
+
5026 High_TDP-43_Pathology_Density 182 79 89 0
|
|
769
|
+
5027 Severe_TDP-43_Pathology_Density 156 15 35 0
|
|
770
|
+
|
|
771
|
+
# Below is the color table for the cortical labels of the seg volume
|
|
772
|
+
# created by mri_aparc2aseg (with --a2005s flag) in which the aseg
|
|
773
|
+
# cortex label is replaced by the labels in the aparc.a2005s. The
|
|
774
|
+
# cortical labels are the same as in Simple_surface_labels2005.txt,
|
|
775
|
+
# except that left hemisphere has 1100 added to the index and the
|
|
776
|
+
# right has 2100 added. The label names are also prepended with
|
|
777
|
+
# ctx-lh or ctx-rh. The aparc.a2009s labels are further below
|
|
778
|
+
|
|
779
|
+
#No. Label Name: R G B A
|
|
780
|
+
1100 ctx-lh-Unknown 0 0 0 0
|
|
781
|
+
1101 ctx-lh-Corpus_callosum 50 50 50 0
|
|
782
|
+
1102 ctx-lh-G_and_S_Insula_ONLY_AVERAGE 180 20 30 0
|
|
783
|
+
1103 ctx-lh-G_cingulate-Isthmus 60 25 25 0
|
|
784
|
+
1104 ctx-lh-G_cingulate-Main_part 25 60 60 0
|
|
785
|
+
|
|
786
|
+
1200 ctx-lh-G_cingulate-caudal_ACC 25 60 61 0
|
|
787
|
+
1201 ctx-lh-G_cingulate-rostral_ACC 25 90 60 0
|
|
788
|
+
1202 ctx-lh-G_cingulate-posterior 25 120 60 0
|
|
789
|
+
|
|
790
|
+
1205 ctx-lh-S_cingulate-caudal_ACC 25 150 60 0
|
|
791
|
+
1206 ctx-lh-S_cingulate-rostral_ACC 25 180 60 0
|
|
792
|
+
1207 ctx-lh-S_cingulate-posterior 25 210 60 0
|
|
793
|
+
|
|
794
|
+
1210 ctx-lh-S_pericallosal-caudal 25 150 90 0
|
|
795
|
+
1211 ctx-lh-S_pericallosal-rostral 25 180 90 0
|
|
796
|
+
1212 ctx-lh-S_pericallosal-posterior 25 210 90 0
|
|
797
|
+
|
|
798
|
+
1105 ctx-lh-G_cuneus 180 20 20 0
|
|
799
|
+
1106 ctx-lh-G_frontal_inf-Opercular_part 220 20 100 0
|
|
800
|
+
1107 ctx-lh-G_frontal_inf-Orbital_part 140 60 60 0
|
|
801
|
+
1108 ctx-lh-G_frontal_inf-Triangular_part 180 220 140 0
|
|
802
|
+
1109 ctx-lh-G_frontal_middle 140 100 180 0
|
|
803
|
+
1110 ctx-lh-G_frontal_superior 180 20 140 0
|
|
804
|
+
1111 ctx-lh-G_frontomarginal 140 20 140 0
|
|
805
|
+
1112 ctx-lh-G_insular_long 21 10 10 0
|
|
806
|
+
1113 ctx-lh-G_insular_short 225 140 140 0
|
|
807
|
+
1114 ctx-lh-G_and_S_occipital_inferior 23 60 180 0
|
|
808
|
+
1115 ctx-lh-G_occipital_middle 180 60 180 0
|
|
809
|
+
1116 ctx-lh-G_occipital_superior 20 220 60 0
|
|
810
|
+
1117 ctx-lh-G_occipit-temp_lat-Or_fusiform 60 20 140 0
|
|
811
|
+
1118 ctx-lh-G_occipit-temp_med-Lingual_part 220 180 140 0
|
|
812
|
+
1119 ctx-lh-G_occipit-temp_med-Parahippocampal_part 65 100 20 0
|
|
813
|
+
1120 ctx-lh-G_orbital 220 60 20 0
|
|
814
|
+
1121 ctx-lh-G_paracentral 60 100 60 0
|
|
815
|
+
1122 ctx-lh-G_parietal_inferior-Angular_part 20 60 220 0
|
|
816
|
+
1123 ctx-lh-G_parietal_inferior-Supramarginal_part 100 100 60 0
|
|
817
|
+
1124 ctx-lh-G_parietal_superior 220 180 220 0
|
|
818
|
+
1125 ctx-lh-G_postcentral 20 180 140 0
|
|
819
|
+
1126 ctx-lh-G_precentral 60 140 180 0
|
|
820
|
+
1127 ctx-lh-G_precuneus 25 20 140 0
|
|
821
|
+
1128 ctx-lh-G_rectus 20 60 100 0
|
|
822
|
+
1129 ctx-lh-G_subcallosal 60 220 20 0
|
|
823
|
+
1130 ctx-lh-G_subcentral 60 20 220 0
|
|
824
|
+
1131 ctx-lh-G_temporal_inferior 220 220 100 0
|
|
825
|
+
1132 ctx-lh-G_temporal_middle 180 60 60 0
|
|
826
|
+
1133 ctx-lh-G_temp_sup-G_temp_transv_and_interm_S 60 60 220 0
|
|
827
|
+
1134 ctx-lh-G_temp_sup-Lateral_aspect 220 60 220 0
|
|
828
|
+
1135 ctx-lh-G_temp_sup-Planum_polare 65 220 60 0
|
|
829
|
+
1136 ctx-lh-G_temp_sup-Planum_tempolare 25 140 20 0
|
|
830
|
+
1137 ctx-lh-G_and_S_transverse_frontopolar 13 0 250 0
|
|
831
|
+
1138 ctx-lh-Lat_Fissure-ant_sgt-ramus_horizontal 61 20 220 0
|
|
832
|
+
1139 ctx-lh-Lat_Fissure-ant_sgt-ramus_vertical 61 20 60 0
|
|
833
|
+
1140 ctx-lh-Lat_Fissure-post_sgt 61 60 100 0
|
|
834
|
+
1141 ctx-lh-Medial_wall 25 25 25 0
|
|
835
|
+
1142 ctx-lh-Pole_occipital 140 20 60 0
|
|
836
|
+
1143 ctx-lh-Pole_temporal 220 180 20 0
|
|
837
|
+
1144 ctx-lh-S_calcarine 63 180 180 0
|
|
838
|
+
1145 ctx-lh-S_central 221 20 10 0
|
|
839
|
+
1146 ctx-lh-S_central_insula 21 220 20 0
|
|
840
|
+
1147 ctx-lh-S_cingulate-Main_part_and_Intracingulate 183 100 20 0
|
|
841
|
+
1148 ctx-lh-S_cingulate-Marginalis_part 221 20 100 0
|
|
842
|
+
1149 ctx-lh-S_circular_insula_anterior 221 60 140 0
|
|
843
|
+
1150 ctx-lh-S_circular_insula_inferior 221 20 220 0
|
|
844
|
+
1151 ctx-lh-S_circular_insula_superior 61 220 220 0
|
|
845
|
+
1152 ctx-lh-S_collateral_transverse_ant 100 200 200 0
|
|
846
|
+
1153 ctx-lh-S_collateral_transverse_post 10 200 200 0
|
|
847
|
+
1154 ctx-lh-S_frontal_inferior 221 220 20 0
|
|
848
|
+
1155 ctx-lh-S_frontal_middle 141 20 100 0
|
|
849
|
+
1156 ctx-lh-S_frontal_superior 61 220 100 0
|
|
850
|
+
1157 ctx-lh-S_frontomarginal 21 220 60 0
|
|
851
|
+
1158 ctx-lh-S_intermedius_primus-Jensen 141 60 20 0
|
|
852
|
+
1159 ctx-lh-S_intraparietal-and_Parietal_transverse 143 20 220 0
|
|
853
|
+
1160 ctx-lh-S_occipital_anterior 61 20 180 0
|
|
854
|
+
1161 ctx-lh-S_occipital_middle_and_Lunatus 101 60 220 0
|
|
855
|
+
1162 ctx-lh-S_occipital_superior_and_transversalis 21 20 140 0
|
|
856
|
+
1163 ctx-lh-S_occipito-temporal_lateral 221 140 20 0
|
|
857
|
+
1164 ctx-lh-S_occipito-temporal_medial_and_S_Lingual 141 100 220 0
|
|
858
|
+
1165 ctx-lh-S_orbital-H_shapped 101 20 20 0
|
|
859
|
+
1166 ctx-lh-S_orbital_lateral 221 100 20 0
|
|
860
|
+
1167 ctx-lh-S_orbital_medial-Or_olfactory 181 200 20 0
|
|
861
|
+
1168 ctx-lh-S_paracentral 21 180 140 0
|
|
862
|
+
1169 ctx-lh-S_parieto_occipital 101 100 180 0
|
|
863
|
+
1170 ctx-lh-S_pericallosal 181 220 20 0
|
|
864
|
+
1171 ctx-lh-S_postcentral 21 140 200 0
|
|
865
|
+
1172 ctx-lh-S_precentral-Inferior-part 21 20 240 0
|
|
866
|
+
1173 ctx-lh-S_precentral-Superior-part 21 20 200 0
|
|
867
|
+
1174 ctx-lh-S_subcentral_ant 61 180 60 0
|
|
868
|
+
1175 ctx-lh-S_subcentral_post 61 180 250 0
|
|
869
|
+
1176 ctx-lh-S_suborbital 21 20 60 0
|
|
870
|
+
1177 ctx-lh-S_subparietal 101 60 60 0
|
|
871
|
+
1178 ctx-lh-S_supracingulate 21 220 220 0
|
|
872
|
+
1179 ctx-lh-S_temporal_inferior 21 180 180 0
|
|
873
|
+
1180 ctx-lh-S_temporal_superior 223 220 60 0
|
|
874
|
+
1181 ctx-lh-S_temporal_transverse 221 60 60 0
|
|
875
|
+
|
|
876
|
+
2100 ctx-rh-Unknown 0 0 0 0
|
|
877
|
+
2101 ctx-rh-Corpus_callosum 50 50 50 0
|
|
878
|
+
2102 ctx-rh-G_and_S_Insula_ONLY_AVERAGE 180 20 30 0
|
|
879
|
+
2103 ctx-rh-G_cingulate-Isthmus 60 25 25 0
|
|
880
|
+
2104 ctx-rh-G_cingulate-Main_part 25 60 60 0
|
|
881
|
+
|
|
882
|
+
2105 ctx-rh-G_cuneus 180 20 20 0
|
|
883
|
+
2106 ctx-rh-G_frontal_inf-Opercular_part 220 20 100 0
|
|
884
|
+
2107 ctx-rh-G_frontal_inf-Orbital_part 140 60 60 0
|
|
885
|
+
2108 ctx-rh-G_frontal_inf-Triangular_part 180 220 140 0
|
|
886
|
+
2109 ctx-rh-G_frontal_middle 140 100 180 0
|
|
887
|
+
2110 ctx-rh-G_frontal_superior 180 20 140 0
|
|
888
|
+
2111 ctx-rh-G_frontomarginal 140 20 140 0
|
|
889
|
+
2112 ctx-rh-G_insular_long 21 10 10 0
|
|
890
|
+
2113 ctx-rh-G_insular_short 225 140 140 0
|
|
891
|
+
2114 ctx-rh-G_and_S_occipital_inferior 23 60 180 0
|
|
892
|
+
2115 ctx-rh-G_occipital_middle 180 60 180 0
|
|
893
|
+
2116 ctx-rh-G_occipital_superior 20 220 60 0
|
|
894
|
+
2117 ctx-rh-G_occipit-temp_lat-Or_fusiform 60 20 140 0
|
|
895
|
+
2118 ctx-rh-G_occipit-temp_med-Lingual_part 220 180 140 0
|
|
896
|
+
2119 ctx-rh-G_occipit-temp_med-Parahippocampal_part 65 100 20 0
|
|
897
|
+
2120 ctx-rh-G_orbital 220 60 20 0
|
|
898
|
+
2121 ctx-rh-G_paracentral 60 100 60 0
|
|
899
|
+
2122 ctx-rh-G_parietal_inferior-Angular_part 20 60 220 0
|
|
900
|
+
2123 ctx-rh-G_parietal_inferior-Supramarginal_part 100 100 60 0
|
|
901
|
+
2124 ctx-rh-G_parietal_superior 220 180 220 0
|
|
902
|
+
2125 ctx-rh-G_postcentral 20 180 140 0
|
|
903
|
+
2126 ctx-rh-G_precentral 60 140 180 0
|
|
904
|
+
2127 ctx-rh-G_precuneus 25 20 140 0
|
|
905
|
+
2128 ctx-rh-G_rectus 20 60 100 0
|
|
906
|
+
2129 ctx-rh-G_subcallosal 60 220 20 0
|
|
907
|
+
2130 ctx-rh-G_subcentral 60 20 220 0
|
|
908
|
+
2131 ctx-rh-G_temporal_inferior 220 220 100 0
|
|
909
|
+
2132 ctx-rh-G_temporal_middle 180 60 60 0
|
|
910
|
+
2133 ctx-rh-G_temp_sup-G_temp_transv_and_interm_S 60 60 220 0
|
|
911
|
+
2134 ctx-rh-G_temp_sup-Lateral_aspect 220 60 220 0
|
|
912
|
+
2135 ctx-rh-G_temp_sup-Planum_polare 65 220 60 0
|
|
913
|
+
2136 ctx-rh-G_temp_sup-Planum_tempolare 25 140 20 0
|
|
914
|
+
2137 ctx-rh-G_and_S_transverse_frontopolar 13 0 250 0
|
|
915
|
+
2138 ctx-rh-Lat_Fissure-ant_sgt-ramus_horizontal 61 20 220 0
|
|
916
|
+
2139 ctx-rh-Lat_Fissure-ant_sgt-ramus_vertical 61 20 60 0
|
|
917
|
+
2140 ctx-rh-Lat_Fissure-post_sgt 61 60 100 0
|
|
918
|
+
2141 ctx-rh-Medial_wall 25 25 25 0
|
|
919
|
+
2142 ctx-rh-Pole_occipital 140 20 60 0
|
|
920
|
+
2143 ctx-rh-Pole_temporal 220 180 20 0
|
|
921
|
+
2144 ctx-rh-S_calcarine 63 180 180 0
|
|
922
|
+
2145 ctx-rh-S_central 221 20 10 0
|
|
923
|
+
2146 ctx-rh-S_central_insula 21 220 20 0
|
|
924
|
+
2147 ctx-rh-S_cingulate-Main_part_and_Intracingulate 183 100 20 0
|
|
925
|
+
2148 ctx-rh-S_cingulate-Marginalis_part 221 20 100 0
|
|
926
|
+
2149 ctx-rh-S_circular_insula_anterior 221 60 140 0
|
|
927
|
+
2150 ctx-rh-S_circular_insula_inferior 221 20 220 0
|
|
928
|
+
2151 ctx-rh-S_circular_insula_superior 61 220 220 0
|
|
929
|
+
2152 ctx-rh-S_collateral_transverse_ant 100 200 200 0
|
|
930
|
+
2153 ctx-rh-S_collateral_transverse_post 10 200 200 0
|
|
931
|
+
2154 ctx-rh-S_frontal_inferior 221 220 20 0
|
|
932
|
+
2155 ctx-rh-S_frontal_middle 141 20 100 0
|
|
933
|
+
2156 ctx-rh-S_frontal_superior 61 220 100 0
|
|
934
|
+
2157 ctx-rh-S_frontomarginal 21 220 60 0
|
|
935
|
+
2158 ctx-rh-S_intermedius_primus-Jensen 141 60 20 0
|
|
936
|
+
2159 ctx-rh-S_intraparietal-and_Parietal_transverse 143 20 220 0
|
|
937
|
+
2160 ctx-rh-S_occipital_anterior 61 20 180 0
|
|
938
|
+
2161 ctx-rh-S_occipital_middle_and_Lunatus 101 60 220 0
|
|
939
|
+
2162 ctx-rh-S_occipital_superior_and_transversalis 21 20 140 0
|
|
940
|
+
2163 ctx-rh-S_occipito-temporal_lateral 221 140 20 0
|
|
941
|
+
2164 ctx-rh-S_occipito-temporal_medial_and_S_Lingual 141 100 220 0
|
|
942
|
+
2165 ctx-rh-S_orbital-H_shapped 101 20 20 0
|
|
943
|
+
2166 ctx-rh-S_orbital_lateral 221 100 20 0
|
|
944
|
+
2167 ctx-rh-S_orbital_medial-Or_olfactory 181 200 20 0
|
|
945
|
+
2168 ctx-rh-S_paracentral 21 180 140 0
|
|
946
|
+
2169 ctx-rh-S_parieto_occipital 101 100 180 0
|
|
947
|
+
2170 ctx-rh-S_pericallosal 181 220 20 0
|
|
948
|
+
2171 ctx-rh-S_postcentral 21 140 200 0
|
|
949
|
+
2172 ctx-rh-S_precentral-Inferior-part 21 20 240 0
|
|
950
|
+
2173 ctx-rh-S_precentral-Superior-part 21 20 200 0
|
|
951
|
+
2174 ctx-rh-S_subcentral_ant 61 180 60 0
|
|
952
|
+
2175 ctx-rh-S_subcentral_post 61 180 250 0
|
|
953
|
+
2176 ctx-rh-S_suborbital 21 20 60 0
|
|
954
|
+
2177 ctx-rh-S_subparietal 101 60 60 0
|
|
955
|
+
2178 ctx-rh-S_supracingulate 21 220 220 0
|
|
956
|
+
2179 ctx-rh-S_temporal_inferior 21 180 180 0
|
|
957
|
+
2180 ctx-rh-S_temporal_superior 223 220 60 0
|
|
958
|
+
2181 ctx-rh-S_temporal_transverse 221 60 60 0
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
2200 ctx-rh-G_cingulate-caudal_ACC 25 60 61 0
|
|
962
|
+
2201 ctx-rh-G_cingulate-rostral_ACC 25 90 60 0
|
|
963
|
+
2202 ctx-rh-G_cingulate-posterior 25 120 60 0
|
|
964
|
+
|
|
965
|
+
2205 ctx-rh-S_cingulate-caudal_ACC 25 150 60 0
|
|
966
|
+
2206 ctx-rh-S_cingulate-rostral_ACC 25 180 60 0
|
|
967
|
+
2207 ctx-rh-S_cingulate-posterior 25 210 60 0
|
|
968
|
+
|
|
969
|
+
2210 ctx-rh-S_pericallosal-caudal 25 150 90 0
|
|
970
|
+
2211 ctx-rh-S_pericallosal-rostral 25 180 90 0
|
|
971
|
+
2212 ctx-rh-S_pericallosal-posterior 25 210 90 0
|
|
972
|
+
|
|
973
|
+
3100 wm-lh-Unknown 0 0 0 0
|
|
974
|
+
3101 wm-lh-Corpus_callosum 50 50 50 0
|
|
975
|
+
3102 wm-lh-G_and_S_Insula_ONLY_AVERAGE 180 20 30 0
|
|
976
|
+
3103 wm-lh-G_cingulate-Isthmus 60 25 25 0
|
|
977
|
+
3104 wm-lh-G_cingulate-Main_part 25 60 60 0
|
|
978
|
+
3105 wm-lh-G_cuneus 180 20 20 0
|
|
979
|
+
3106 wm-lh-G_frontal_inf-Opercular_part 220 20 100 0
|
|
980
|
+
3107 wm-lh-G_frontal_inf-Orbital_part 140 60 60 0
|
|
981
|
+
3108 wm-lh-G_frontal_inf-Triangular_part 180 220 140 0
|
|
982
|
+
3109 wm-lh-G_frontal_middle 140 100 180 0
|
|
983
|
+
3110 wm-lh-G_frontal_superior 180 20 140 0
|
|
984
|
+
3111 wm-lh-G_frontomarginal 140 20 140 0
|
|
985
|
+
3112 wm-lh-G_insular_long 21 10 10 0
|
|
986
|
+
3113 wm-lh-G_insular_short 225 140 140 0
|
|
987
|
+
3114 wm-lh-G_and_S_occipital_inferior 23 60 180 0
|
|
988
|
+
3115 wm-lh-G_occipital_middle 180 60 180 0
|
|
989
|
+
3116 wm-lh-G_occipital_superior 20 220 60 0
|
|
990
|
+
3117 wm-lh-G_occipit-temp_lat-Or_fusiform 60 20 140 0
|
|
991
|
+
3118 wm-lh-G_occipit-temp_med-Lingual_part 220 180 140 0
|
|
992
|
+
3119 wm-lh-G_occipit-temp_med-Parahippocampal_part 65 100 20 0
|
|
993
|
+
3120 wm-lh-G_orbital 220 60 20 0
|
|
994
|
+
3121 wm-lh-G_paracentral 60 100 60 0
|
|
995
|
+
3122 wm-lh-G_parietal_inferior-Angular_part 20 60 220 0
|
|
996
|
+
3123 wm-lh-G_parietal_inferior-Supramarginal_part 100 100 60 0
|
|
997
|
+
3124 wm-lh-G_parietal_superior 220 180 220 0
|
|
998
|
+
3125 wm-lh-G_postcentral 20 180 140 0
|
|
999
|
+
3126 wm-lh-G_precentral 60 140 180 0
|
|
1000
|
+
3127 wm-lh-G_precuneus 25 20 140 0
|
|
1001
|
+
3128 wm-lh-G_rectus 20 60 100 0
|
|
1002
|
+
3129 wm-lh-G_subcallosal 60 220 20 0
|
|
1003
|
+
3130 wm-lh-G_subcentral 60 20 220 0
|
|
1004
|
+
3131 wm-lh-G_temporal_inferior 220 220 100 0
|
|
1005
|
+
3132 wm-lh-G_temporal_middle 180 60 60 0
|
|
1006
|
+
3133 wm-lh-G_temp_sup-G_temp_transv_and_interm_S 60 60 220 0
|
|
1007
|
+
3134 wm-lh-G_temp_sup-Lateral_aspect 220 60 220 0
|
|
1008
|
+
3135 wm-lh-G_temp_sup-Planum_polare 65 220 60 0
|
|
1009
|
+
3136 wm-lh-G_temp_sup-Planum_tempolare 25 140 20 0
|
|
1010
|
+
3137 wm-lh-G_and_S_transverse_frontopolar 13 0 250 0
|
|
1011
|
+
3138 wm-lh-Lat_Fissure-ant_sgt-ramus_horizontal 61 20 220 0
|
|
1012
|
+
3139 wm-lh-Lat_Fissure-ant_sgt-ramus_vertical 61 20 60 0
|
|
1013
|
+
3140 wm-lh-Lat_Fissure-post_sgt 61 60 100 0
|
|
1014
|
+
3141 wm-lh-Medial_wall 25 25 25 0
|
|
1015
|
+
3142 wm-lh-Pole_occipital 140 20 60 0
|
|
1016
|
+
3143 wm-lh-Pole_temporal 220 180 20 0
|
|
1017
|
+
3144 wm-lh-S_calcarine 63 180 180 0
|
|
1018
|
+
3145 wm-lh-S_central 221 20 10 0
|
|
1019
|
+
3146 wm-lh-S_central_insula 21 220 20 0
|
|
1020
|
+
3147 wm-lh-S_cingulate-Main_part_and_Intracingulate 183 100 20 0
|
|
1021
|
+
3148 wm-lh-S_cingulate-Marginalis_part 221 20 100 0
|
|
1022
|
+
3149 wm-lh-S_circular_insula_anterior 221 60 140 0
|
|
1023
|
+
3150 wm-lh-S_circular_insula_inferior 221 20 220 0
|
|
1024
|
+
3151 wm-lh-S_circular_insula_superior 61 220 220 0
|
|
1025
|
+
3152 wm-lh-S_collateral_transverse_ant 100 200 200 0
|
|
1026
|
+
3153 wm-lh-S_collateral_transverse_post 10 200 200 0
|
|
1027
|
+
3154 wm-lh-S_frontal_inferior 221 220 20 0
|
|
1028
|
+
3155 wm-lh-S_frontal_middle 141 20 100 0
|
|
1029
|
+
3156 wm-lh-S_frontal_superior 61 220 100 0
|
|
1030
|
+
3157 wm-lh-S_frontomarginal 21 220 60 0
|
|
1031
|
+
3158 wm-lh-S_intermedius_primus-Jensen 141 60 20 0
|
|
1032
|
+
3159 wm-lh-S_intraparietal-and_Parietal_transverse 143 20 220 0
|
|
1033
|
+
3160 wm-lh-S_occipital_anterior 61 20 180 0
|
|
1034
|
+
3161 wm-lh-S_occipital_middle_and_Lunatus 101 60 220 0
|
|
1035
|
+
3162 wm-lh-S_occipital_superior_and_transversalis 21 20 140 0
|
|
1036
|
+
3163 wm-lh-S_occipito-temporal_lateral 221 140 20 0
|
|
1037
|
+
3164 wm-lh-S_occipito-temporal_medial_and_S_Lingual 141 100 220 0
|
|
1038
|
+
3165 wm-lh-S_orbital-H_shapped 101 20 20 0
|
|
1039
|
+
3166 wm-lh-S_orbital_lateral 221 100 20 0
|
|
1040
|
+
3167 wm-lh-S_orbital_medial-Or_olfactory 181 200 20 0
|
|
1041
|
+
3168 wm-lh-S_paracentral 21 180 140 0
|
|
1042
|
+
3169 wm-lh-S_parieto_occipital 101 100 180 0
|
|
1043
|
+
3170 wm-lh-S_pericallosal 181 220 20 0
|
|
1044
|
+
3171 wm-lh-S_postcentral 21 140 200 0
|
|
1045
|
+
3172 wm-lh-S_precentral-Inferior-part 21 20 240 0
|
|
1046
|
+
3173 wm-lh-S_precentral-Superior-part 21 20 200 0
|
|
1047
|
+
3174 wm-lh-S_subcentral_ant 61 180 60 0
|
|
1048
|
+
3175 wm-lh-S_subcentral_post 61 180 250 0
|
|
1049
|
+
3176 wm-lh-S_suborbital 21 20 60 0
|
|
1050
|
+
3177 wm-lh-S_subparietal 101 60 60 0
|
|
1051
|
+
3178 wm-lh-S_supracingulate 21 220 220 0
|
|
1052
|
+
3179 wm-lh-S_temporal_inferior 21 180 180 0
|
|
1053
|
+
3180 wm-lh-S_temporal_superior 223 220 60 0
|
|
1054
|
+
3181 wm-lh-S_temporal_transverse 221 60 60 0
|
|
1055
|
+
|
|
1056
|
+
4100 wm-rh-Unknown 0 0 0 0
|
|
1057
|
+
4101 wm-rh-Corpus_callosum 50 50 50 0
|
|
1058
|
+
4102 wm-rh-G_and_S_Insula_ONLY_AVERAGE 180 20 30 0
|
|
1059
|
+
4103 wm-rh-G_cingulate-Isthmus 60 25 25 0
|
|
1060
|
+
4104 wm-rh-G_cingulate-Main_part 25 60 60 0
|
|
1061
|
+
4105 wm-rh-G_cuneus 180 20 20 0
|
|
1062
|
+
4106 wm-rh-G_frontal_inf-Opercular_part 220 20 100 0
|
|
1063
|
+
4107 wm-rh-G_frontal_inf-Orbital_part 140 60 60 0
|
|
1064
|
+
4108 wm-rh-G_frontal_inf-Triangular_part 180 220 140 0
|
|
1065
|
+
4109 wm-rh-G_frontal_middle 140 100 180 0
|
|
1066
|
+
4110 wm-rh-G_frontal_superior 180 20 140 0
|
|
1067
|
+
4111 wm-rh-G_frontomarginal 140 20 140 0
|
|
1068
|
+
4112 wm-rh-G_insular_long 21 10 10 0
|
|
1069
|
+
4113 wm-rh-G_insular_short 225 140 140 0
|
|
1070
|
+
4114 wm-rh-G_and_S_occipital_inferior 23 60 180 0
|
|
1071
|
+
4115 wm-rh-G_occipital_middle 180 60 180 0
|
|
1072
|
+
4116 wm-rh-G_occipital_superior 20 220 60 0
|
|
1073
|
+
4117 wm-rh-G_occipit-temp_lat-Or_fusiform 60 20 140 0
|
|
1074
|
+
4118 wm-rh-G_occipit-temp_med-Lingual_part 220 180 140 0
|
|
1075
|
+
4119 wm-rh-G_occipit-temp_med-Parahippocampal_part 65 100 20 0
|
|
1076
|
+
4120 wm-rh-G_orbital 220 60 20 0
|
|
1077
|
+
4121 wm-rh-G_paracentral 60 100 60 0
|
|
1078
|
+
4122 wm-rh-G_parietal_inferior-Angular_part 20 60 220 0
|
|
1079
|
+
4123 wm-rh-G_parietal_inferior-Supramarginal_part 100 100 60 0
|
|
1080
|
+
4124 wm-rh-G_parietal_superior 220 180 220 0
|
|
1081
|
+
4125 wm-rh-G_postcentral 20 180 140 0
|
|
1082
|
+
4126 wm-rh-G_precentral 60 140 180 0
|
|
1083
|
+
4127 wm-rh-G_precuneus 25 20 140 0
|
|
1084
|
+
4128 wm-rh-G_rectus 20 60 100 0
|
|
1085
|
+
4129 wm-rh-G_subcallosal 60 220 20 0
|
|
1086
|
+
4130 wm-rh-G_subcentral 60 20 220 0
|
|
1087
|
+
4131 wm-rh-G_temporal_inferior 220 220 100 0
|
|
1088
|
+
4132 wm-rh-G_temporal_middle 180 60 60 0
|
|
1089
|
+
4133 wm-rh-G_temp_sup-G_temp_transv_and_interm_S 60 60 220 0
|
|
1090
|
+
4134 wm-rh-G_temp_sup-Lateral_aspect 220 60 220 0
|
|
1091
|
+
4135 wm-rh-G_temp_sup-Planum_polare 65 220 60 0
|
|
1092
|
+
4136 wm-rh-G_temp_sup-Planum_tempolare 25 140 20 0
|
|
1093
|
+
4137 wm-rh-G_and_S_transverse_frontopolar 13 0 250 0
|
|
1094
|
+
4138 wm-rh-Lat_Fissure-ant_sgt-ramus_horizontal 61 20 220 0
|
|
1095
|
+
4139 wm-rh-Lat_Fissure-ant_sgt-ramus_vertical 61 20 60 0
|
|
1096
|
+
4140 wm-rh-Lat_Fissure-post_sgt 61 60 100 0
|
|
1097
|
+
4141 wm-rh-Medial_wall 25 25 25 0
|
|
1098
|
+
4142 wm-rh-Pole_occipital 140 20 60 0
|
|
1099
|
+
4143 wm-rh-Pole_temporal 220 180 20 0
|
|
1100
|
+
4144 wm-rh-S_calcarine 63 180 180 0
|
|
1101
|
+
4145 wm-rh-S_central 221 20 10 0
|
|
1102
|
+
4146 wm-rh-S_central_insula 21 220 20 0
|
|
1103
|
+
4147 wm-rh-S_cingulate-Main_part_and_Intracingulate 183 100 20 0
|
|
1104
|
+
4148 wm-rh-S_cingulate-Marginalis_part 221 20 100 0
|
|
1105
|
+
4149 wm-rh-S_circular_insula_anterior 221 60 140 0
|
|
1106
|
+
4150 wm-rh-S_circular_insula_inferior 221 20 220 0
|
|
1107
|
+
4151 wm-rh-S_circular_insula_superior 61 220 220 0
|
|
1108
|
+
4152 wm-rh-S_collateral_transverse_ant 100 200 200 0
|
|
1109
|
+
4153 wm-rh-S_collateral_transverse_post 10 200 200 0
|
|
1110
|
+
4154 wm-rh-S_frontal_inferior 221 220 20 0
|
|
1111
|
+
4155 wm-rh-S_frontal_middle 141 20 100 0
|
|
1112
|
+
4156 wm-rh-S_frontal_superior 61 220 100 0
|
|
1113
|
+
4157 wm-rh-S_frontomarginal 21 220 60 0
|
|
1114
|
+
4158 wm-rh-S_intermedius_primus-Jensen 141 60 20 0
|
|
1115
|
+
4159 wm-rh-S_intraparietal-and_Parietal_transverse 143 20 220 0
|
|
1116
|
+
4160 wm-rh-S_occipital_anterior 61 20 180 0
|
|
1117
|
+
4161 wm-rh-S_occipital_middle_and_Lunatus 101 60 220 0
|
|
1118
|
+
4162 wm-rh-S_occipital_superior_and_transversalis 21 20 140 0
|
|
1119
|
+
4163 wm-rh-S_occipito-temporal_lateral 221 140 20 0
|
|
1120
|
+
4164 wm-rh-S_occipito-temporal_medial_and_S_Lingual 141 100 220 0
|
|
1121
|
+
4165 wm-rh-S_orbital-H_shapped 101 20 20 0
|
|
1122
|
+
4166 wm-rh-S_orbital_lateral 221 100 20 0
|
|
1123
|
+
4167 wm-rh-S_orbital_medial-Or_olfactory 181 200 20 0
|
|
1124
|
+
4168 wm-rh-S_paracentral 21 180 140 0
|
|
1125
|
+
4169 wm-rh-S_parieto_occipital 101 100 180 0
|
|
1126
|
+
4170 wm-rh-S_pericallosal 181 220 20 0
|
|
1127
|
+
4171 wm-rh-S_postcentral 21 140 200 0
|
|
1128
|
+
4172 wm-rh-S_precentral-Inferior-part 21 20 240 0
|
|
1129
|
+
4173 wm-rh-S_precentral-Superior-part 21 20 200 0
|
|
1130
|
+
4174 wm-rh-S_subcentral_ant 61 180 60 0
|
|
1131
|
+
4175 wm-rh-S_subcentral_post 61 180 250 0
|
|
1132
|
+
4176 wm-rh-S_suborbital 21 20 60 0
|
|
1133
|
+
4177 wm-rh-S_subparietal 101 60 60 0
|
|
1134
|
+
4178 wm-rh-S_supracingulate 21 220 220 0
|
|
1135
|
+
4179 wm-rh-S_temporal_inferior 21 180 180 0
|
|
1136
|
+
4180 wm-rh-S_temporal_superior 223 220 60 0
|
|
1137
|
+
4181 wm-rh-S_temporal_transverse 221 60 60 0
|
|
1138
|
+
|
|
1139
|
+
5001 Left-UnsegmentedWhiteMatter 20 30 40 0
|
|
1140
|
+
5002 Right-UnsegmentedWhiteMatter 20 30 40 0
|
|
1141
|
+
|
|
1142
|
+
# Below is the color table for white-matter pathways produced by dmri_paths
|
|
1143
|
+
|
|
1144
|
+
#No. Label Name: R G B A
|
|
1145
|
+
#
|
|
1146
|
+
5100 fmajor 204 102 102 0
|
|
1147
|
+
5101 fminor 204 102 102 0
|
|
1148
|
+
5102 cc.body 204 102 102 0
|
|
1149
|
+
5103 cc.bodyc 255 153 153 0
|
|
1150
|
+
5104 cc.bodypf 255 153 153 0
|
|
1151
|
+
5105 cc.bodypm 255 204 204 0
|
|
1152
|
+
5106 cc.bodyp 255 102 102 0
|
|
1153
|
+
5107 cc.bodyt 255 204 204 0
|
|
1154
|
+
5108 cc.genu 255 102 102 0
|
|
1155
|
+
5109 cc.rostrum 204 51 51 0
|
|
1156
|
+
5110 cc.splenium 204 51 51 0
|
|
1157
|
+
5111 acomm 204 102 102 0
|
|
1158
|
+
5112 mcp 102 51 153 0
|
|
1159
|
+
#
|
|
1160
|
+
5200 lh.atr 255 255 102 0
|
|
1161
|
+
5201 lh.cab 153 204 0 0
|
|
1162
|
+
5202 lh.ccg 0 153 153 0
|
|
1163
|
+
5203 lh.cst 204 153 255 0
|
|
1164
|
+
5204 lh.ilf 255 153 51 0
|
|
1165
|
+
5205 lh.slfp 204 204 204 0
|
|
1166
|
+
5206 lh.slft 153 255 255 0
|
|
1167
|
+
5207 lh.unc 102 153 255 0
|
|
1168
|
+
5208 lh.cb 0 153 153 0
|
|
1169
|
+
5209 lh.slf 204 204 204 0
|
|
1170
|
+
5210 lh.af 153 255 255 0
|
|
1171
|
+
5211 lh.ifof 51 153 51 0
|
|
1172
|
+
5212 lh.fx 255 153 204 0
|
|
1173
|
+
5213 lh.fat 204 51 102 0
|
|
1174
|
+
5214 lh.or 153 102 255 0
|
|
1175
|
+
5215 lh.mlf 255 255 204 0
|
|
1176
|
+
5216 lh.slf1 51 204 255 0
|
|
1177
|
+
5217 lh.slf2 51 255 204 0
|
|
1178
|
+
5218 lh.slf3 204 204 204 0
|
|
1179
|
+
5219 lh.afd 153 255 255 0
|
|
1180
|
+
5220 lh.afv 153 255 255 0
|
|
1181
|
+
5221 lh.ar 153 0 204 0
|
|
1182
|
+
5222 lh.cbd 0 153 153 0
|
|
1183
|
+
5223 lh.cbv 153 204 0 0
|
|
1184
|
+
5224 lh.emc 51 153 51 0
|
|
1185
|
+
5225 lh.uf 102 153 255 0
|
|
1186
|
+
#
|
|
1187
|
+
5300 rh.atr 255 255 102 0
|
|
1188
|
+
5301 rh.cab 153 204 0 0
|
|
1189
|
+
5302 rh.ccg 0 153 153 0
|
|
1190
|
+
5303 rh.cst 204 153 255 0
|
|
1191
|
+
5304 rh.ilf 255 153 51 0
|
|
1192
|
+
5305 rh.slfp 204 204 204 0
|
|
1193
|
+
5306 rh.slft 153 255 255 0
|
|
1194
|
+
5307 rh.unc 102 153 255 0
|
|
1195
|
+
5308 rh.cb 0 153 153 0
|
|
1196
|
+
5309 rh.slf 204 204 204 0
|
|
1197
|
+
5310 rh.af 153 255 255 0
|
|
1198
|
+
5311 rh.ifof 51 153 51 0
|
|
1199
|
+
5312 rh.fx 255 153 204 0
|
|
1200
|
+
5313 rh.fat 204 51 102 0
|
|
1201
|
+
5314 rh.or 153 102 255 0
|
|
1202
|
+
5315 rh.mlf 255 255 204 0
|
|
1203
|
+
5316 rh.slf1 51 204 255 0
|
|
1204
|
+
5317 rh.slf2 51 255 204 0
|
|
1205
|
+
5318 rh.slf3 204 204 204 0
|
|
1206
|
+
5319 rh.afd 153 255 255 0
|
|
1207
|
+
5320 rh.afv 153 255 255 0
|
|
1208
|
+
5321 rh.ar 153 0 204 0
|
|
1209
|
+
5322 rh.cbd 0 153 153 0
|
|
1210
|
+
5323 rh.cbv 153 204 0 0
|
|
1211
|
+
5324 rh.emc 51 153 51 0
|
|
1212
|
+
5325 rh.uf 102 153 255 0
|
|
1213
|
+
|
|
1214
|
+
########################################
|
|
1215
|
+
|
|
1216
|
+
6000 CST-orig 0 255 0 0
|
|
1217
|
+
6001 CST-hammer 255 255 0 0
|
|
1218
|
+
6002 CST-CVS 0 255 255 0
|
|
1219
|
+
6003 CST-flirt 0 0 255 0
|
|
1220
|
+
|
|
1221
|
+
6010 Left-SLF1 236 16 231 0
|
|
1222
|
+
6020 Right-SLF1 237 18 232 0
|
|
1223
|
+
|
|
1224
|
+
6030 Left-SLF3 236 13 227 0
|
|
1225
|
+
6040 Right-SLF3 236 17 228 0
|
|
1226
|
+
|
|
1227
|
+
6050 Left-CST 1 255 1 0
|
|
1228
|
+
6060 Right-CST 2 255 1 0
|
|
1229
|
+
|
|
1230
|
+
6070 Left-SLF2 236 14 230 0
|
|
1231
|
+
6080 Right-SLF2 237 14 230 0
|
|
1232
|
+
|
|
1233
|
+
6101 Left-Dura-MCA 34 197 246 0
|
|
1234
|
+
6102 Right-Dura-MCA 0 250 0 0
|
|
1235
|
+
6103 Left-Ento-Dura 160 32 240 0
|
|
1236
|
+
6104 Right-Ento-Dura 120 32 240 0
|
|
1237
|
+
6111 Left-Transverse-Sinus 229 11 152 0
|
|
1238
|
+
6112 Right-Transverse-Sinus 40 251 16 0
|
|
1239
|
+
6113 Left-Sigmoid-Sinus 202 3 26 0
|
|
1240
|
+
6114 Right-Sigmoid-Sinus 101 76 219 0
|
|
1241
|
+
6115 Straight-Sinus 185 210 35 0
|
|
1242
|
+
6116 Superior-Sinus-P 26 129 125 0
|
|
1243
|
+
6117 Superior-Sinus-D 144 51 173 0
|
|
1244
|
+
6118 Superior-Sinus-A 93 151 253 0
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
#No. Label Name: R G B A
|
|
1248
|
+
|
|
1249
|
+
7001 Lateral-nucleus 72 132 181 0
|
|
1250
|
+
7002 Basolateral-nucleus 243 243 243 0
|
|
1251
|
+
7003 Basal-nucleus 207 63 79 0
|
|
1252
|
+
7004 Centromedial-nucleus 121 20 135 0
|
|
1253
|
+
7005 Central-nucleus 197 60 248 0
|
|
1254
|
+
7006 Medial-nucleus 2 149 2 0
|
|
1255
|
+
7007 Cortical-nucleus 221 249 166 0
|
|
1256
|
+
7008 Accessory-Basal-nucleus 232 146 35 0
|
|
1257
|
+
7009 Corticoamygdaloid-transitio 20 60 120 0
|
|
1258
|
+
7010 Anterior-amygdaloid-area-AAA 250 250 0 0
|
|
1259
|
+
7011 Fusion-amygdala-HP-FAH 122 187 222 0
|
|
1260
|
+
7012 Hippocampal-amygdala-transition-HATA 237 12 177 0
|
|
1261
|
+
7013 Endopiriform-nucleus 10 49 255 0
|
|
1262
|
+
7014 Lateral-nucleus-olfactory-tract 205 184 144 0
|
|
1263
|
+
7015 Paralaminar-nucleus 45 205 165 0
|
|
1264
|
+
7016 Intercalated-nucleus 117 160 175 0
|
|
1265
|
+
7017 Prepiriform-cortex 221 217 21 0
|
|
1266
|
+
7018 Periamygdaloid-cortex 20 60 120 0
|
|
1267
|
+
7019 Envelope-Amygdala 141 21 100 0
|
|
1268
|
+
7020 Extranuclear-Amydala 225 140 141 0
|
|
1269
|
+
|
|
1270
|
+
7030 Left-Amygdala-Cortical-Junction 255 85 255 0
|
|
1271
|
+
7031 Right-Amygdala-Cortical-Junction 254 84 254 0
|
|
1272
|
+
|
|
1273
|
+
7100 Brainstem-inferior-colliculus 42 201 168 0
|
|
1274
|
+
7101 Brainstem-cochlear-nucleus 168 104 162 0
|
|
1275
|
+
|
|
1276
|
+
7201 DR 121 255 250 0
|
|
1277
|
+
7202 MnR 0 255 0 0
|
|
1278
|
+
7203 PAG 153 153 255 0
|
|
1279
|
+
7204 VTA 255 0 255 0
|
|
1280
|
+
|
|
1281
|
+
# replaced by 75
|
|
1282
|
+
#7301 Left-LC 0 0 255 0
|
|
1283
|
+
7302 Left-LDTg 255 127 0 0
|
|
1284
|
+
7303 Left-mRt 255 0 0 0
|
|
1285
|
+
7304 Left-PBC 255 255 0 0
|
|
1286
|
+
7305 Left-PnO 0 127 255 0
|
|
1287
|
+
7306 Left-PTg 127 0 255 0
|
|
1288
|
+
|
|
1289
|
+
# replaced by 76
|
|
1290
|
+
#7401 Right-LC 0 0 255 0
|
|
1291
|
+
7402 Right-LDTg 255 127 0 0
|
|
1292
|
+
7403 Right-mRt 255 0 0 0
|
|
1293
|
+
7404 Right-PBC 255 255 0 0
|
|
1294
|
+
7405 Right-PnO 0 127 255 0
|
|
1295
|
+
7406 Right-PTg 127 0 255 0
|
|
1296
|
+
|
|
1297
|
+
8001 Thalamus-Anterior 74 130 181 0
|
|
1298
|
+
8002 Thalamus-Ventral-anterior 242 241 240 0
|
|
1299
|
+
8003 Thalamus-Lateral-dorsal 206 65 78 0
|
|
1300
|
+
8004 Thalamus-Lateral-posterior 120 21 133 0
|
|
1301
|
+
8005 Thalamus-Ventral-lateral 195 61 246 0
|
|
1302
|
+
8006 Thalamus-Ventral-posterior-medial 3 147 6 0
|
|
1303
|
+
8007 Thalamus-Ventral-posterior-lateral 220 251 163 0
|
|
1304
|
+
8008 Thalamus-intralaminar 232 146 33 0
|
|
1305
|
+
8009 Thalamus-centromedian 4 114 14 0
|
|
1306
|
+
8010 Thalamus-mediodorsal 121 184 220 0
|
|
1307
|
+
8011 Thalamus-medial 235 11 175 0
|
|
1308
|
+
8012 Thalamus-pulvinar 12 46 250 0
|
|
1309
|
+
8013 Thalamus-lateral-geniculate 203 182 143 0
|
|
1310
|
+
8014 Thalamus-medial-geniculate 42 204 167 0
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
#
|
|
1315
|
+
# Labels for thalamus parcellation using histological atlas (Iglesias et al.)
|
|
1316
|
+
#
|
|
1317
|
+
|
|
1318
|
+
8103 Left-AV 0 85 0 0
|
|
1319
|
+
8104 Left-CeM 170 85 0 0
|
|
1320
|
+
8105 Left-CL 0 170 0 0
|
|
1321
|
+
8106 Left-CM 170 170 0 0
|
|
1322
|
+
8108 Left-LD 170 255 0 0
|
|
1323
|
+
8109 Left-LGN 0 0 127 0
|
|
1324
|
+
8110 Left-LP 0 85 127 0
|
|
1325
|
+
8111 Left-L-Sg 170 85 127 0
|
|
1326
|
+
8112 Left-MDl 0 170 127 0
|
|
1327
|
+
8113 Left-MDm 170 170 127 0
|
|
1328
|
+
8115 Left-MGN 170 255 127 0
|
|
1329
|
+
8116 Left-MV(Re) 0 0 255 0
|
|
1330
|
+
8117 Left-Pc 170 0 255 0
|
|
1331
|
+
8118 Left-Pf 0 85 255 0
|
|
1332
|
+
8119 Left-Pt 170 85 255 0
|
|
1333
|
+
8120 Left-PuA 0 170 255 0
|
|
1334
|
+
8121 Left-PuI 170 170 255 0
|
|
1335
|
+
8122 Left-PuL 0 255 255 0
|
|
1336
|
+
8123 Left-PuM 170 255 255 0
|
|
1337
|
+
8125 Left-R 255 0 0 0
|
|
1338
|
+
8126 Left-VA 85 85 0 0
|
|
1339
|
+
8127 Left-VAmc 255 85 0 0
|
|
1340
|
+
8128 Left-VLa 85 170 0 0
|
|
1341
|
+
8129 Left-VLp 255 170 0 0
|
|
1342
|
+
8130 Left-VM 85 255 0 0
|
|
1343
|
+
8133 Left-VPL 255 0 255 0
|
|
1344
|
+
8134 Left-PaV 120 18 134 0
|
|
1345
|
+
8135 Left-PuMm 170 255 255 0
|
|
1346
|
+
8136 Left-PuMl 140 240 255 0
|
|
1347
|
+
|
|
1348
|
+
8203 Right-AV 0 85 0 0
|
|
1349
|
+
8204 Right-CeM 170 85 0 0
|
|
1350
|
+
8205 Right-CL 0 170 0 0
|
|
1351
|
+
8206 Right-CM 170 170 0 0
|
|
1352
|
+
8208 Right-LD 170 255 0 0
|
|
1353
|
+
8209 Right-LGN 0 0 127 0
|
|
1354
|
+
8210 Right-LP 0 85 127 0
|
|
1355
|
+
8211 Right-L-Sg 170 85 127 0
|
|
1356
|
+
8212 Right-MDl 0 170 127 0
|
|
1357
|
+
8213 Right-MDm 170 170 127 0
|
|
1358
|
+
8215 Right-MGN 170 255 127 0
|
|
1359
|
+
8216 Right-MV(Re) 0 0 255 0
|
|
1360
|
+
8217 Right-Pc 170 0 255 0
|
|
1361
|
+
8218 Right-Pf 0 85 255 0
|
|
1362
|
+
8219 Right-Pt 170 85 255 0
|
|
1363
|
+
8220 Right-PuA 0 170 255 0
|
|
1364
|
+
8221 Right-PuI 170 170 255 0
|
|
1365
|
+
8222 Right-PuL 0 255 255 0
|
|
1366
|
+
8223 Right-PuM 170 255 255 0
|
|
1367
|
+
8225 Right-R 255 0 0 0
|
|
1368
|
+
8226 Right-VA 85 85 0 0
|
|
1369
|
+
8227 Right-VAmc 255 85 0 0
|
|
1370
|
+
8228 Right-VLa 85 170 0 0
|
|
1371
|
+
8229 Right-VLp 255 170 0 0
|
|
1372
|
+
8230 Right-VM 85 255 0 0
|
|
1373
|
+
8233 Right-VPL 255 0 255 0
|
|
1374
|
+
8234 Right-PaV 120 18 134 0
|
|
1375
|
+
8235 Right-PuMm 170 255 255 0
|
|
1376
|
+
8236 Right-PuMl 140 240 255 0
|
|
1377
|
+
|
|
1378
|
+
#
|
|
1379
|
+
# Labels for thalamus parcellation using probabilistic tractography. See:
|
|
1380
|
+
# Functional--Anatomical Validation and Individual Variation of Diffusion
|
|
1381
|
+
# Tractography-based Segmentation of the Human Thalamus; Cerebral Cortex
|
|
1382
|
+
# January 2005;15:31--39, doi:10.1093/cercor/bhh105, Advance Access
|
|
1383
|
+
# publication July 6, 2004
|
|
1384
|
+
#
|
|
1385
|
+
|
|
1386
|
+
#No. Label Name: R G B A
|
|
1387
|
+
9000 ctx-lh-prefrontal 50 100 30 0
|
|
1388
|
+
9001 ctx-lh-primary-motor 30 100 45 0
|
|
1389
|
+
9002 ctx-lh-premotor 130 100 165 0
|
|
1390
|
+
9003 ctx-lh-temporal 105 25 5 0
|
|
1391
|
+
9004 ctx-lh-posterior-parietal 125 70 55 0
|
|
1392
|
+
9005 ctx-lh-prim-sec-somatosensory 225 20 105 0
|
|
1393
|
+
9006 ctx-lh-occipital 225 20 15 0
|
|
1394
|
+
|
|
1395
|
+
9500 ctx-rh-prefrontal 50 200 30 0
|
|
1396
|
+
9501 ctx-rh-primary-motor 30 150 45 0
|
|
1397
|
+
9502 ctx-rh-premotor 130 150 165 0
|
|
1398
|
+
9503 ctx-rh-temporal 105 75 5 0
|
|
1399
|
+
9504 ctx-rh-posterior-parietal 125 120 55 0
|
|
1400
|
+
9505 ctx-rh-prim-sec-somatosensory 225 70 105 0
|
|
1401
|
+
9506 ctx-rh-occipital 225 70 15 0
|
|
1402
|
+
|
|
1403
|
+
# Below is the the color table for the brainstem segmentation based on the Paxinos Atlas
|
|
1404
|
+
# It is divided into cranial nerves, tracts, and nuclei which are subdivided by regions, medulla, pons and midbrain
|
|
1405
|
+
|
|
1406
|
+
10000 undefined 136 24 212 0
|
|
1407
|
+
|
|
1408
|
+
# Cranial nerves
|
|
1409
|
+
10003 oculomotor_nerve_3n 36 124 212 0
|
|
1410
|
+
10004 trochlear_nerve_4n 242 189 15 0
|
|
1411
|
+
10005 trigeminal_nerve_5n 130 112 140 0
|
|
1412
|
+
10006 abducens_nerve_6n 237 150 9 0
|
|
1413
|
+
10007 facial_nerve_7n 45 68 145 0
|
|
1414
|
+
10008 vestibulocochlear_nerve_8n 43 114 122 0
|
|
1415
|
+
10009 glossopharygeal_nerve_9n 194 60 60 0
|
|
1416
|
+
10010 vagus_nerve_10n 121 150 14 0
|
|
1417
|
+
10011 accessory_nerve_11n 207 118 167 0
|
|
1418
|
+
10012 hypoglossal_nerve_12n 114 98 140 0
|
|
1419
|
+
|
|
1420
|
+
# Tracts
|
|
1421
|
+
10021 gracile_tract_gr 113 28 232 0
|
|
1422
|
+
10022 cuneate_tract_cu 250 192 75 0
|
|
1423
|
+
10023 spinal_trigeminal_tract_sp5 137 53 161 0
|
|
1424
|
+
10024 dorsal_spinocerebellar_tract_dsc 250 69 8 0
|
|
1425
|
+
10025 ventral_spinocerebellar_tract_vsc 117 43 77 0
|
|
1426
|
+
10026 spinothalamic_tract_spth 71 20 134 0
|
|
1427
|
+
10027 ventral_corticospinal_tract_vcs 170 37 68 0
|
|
1428
|
+
10028 lateral_corticospinal_tract_lcs 99 98 171 0
|
|
1429
|
+
10029 tectospinal_tract_ts 53 105 47 0
|
|
1430
|
+
10030 medial_lemniscus_ml 209 170 242 0
|
|
1431
|
+
10031 lateral_lemniscus_ll 141 87 120 0
|
|
1432
|
+
10032 pyramid_py 240 47 44 0
|
|
1433
|
+
10033 solitary_tract_sol 185 25 198 0
|
|
1434
|
+
10034 amiculum_of_the_inferior_olive_ami 240 235 98 0
|
|
1435
|
+
10035 internal_arcuate_fibers_ia 87 215 171 0
|
|
1436
|
+
10036 inferior_cerebellar_peduncle_icp 153 163 255 0
|
|
1437
|
+
10037 mid_cerebellar_peduncle_mcp 225 237 53 0
|
|
1438
|
+
10038 superior_cerebellar_peduncle_scp 65 224 164 0
|
|
1439
|
+
10039 central_tegmental_tract_ctg 16 187 185 0
|
|
1440
|
+
10040 dorsal_acoustic_stria_das 2 76 56 0
|
|
1441
|
+
10041 transverse_fibers_of_the_pons_tfp 40 32 209 0
|
|
1442
|
+
10042 longitudinal_fibers_of_the_pons_lfp 59 117 42 0
|
|
1443
|
+
10043 genu_of_the_facial_nerve_g7 161 178 209 0
|
|
1444
|
+
10044 mammillotegmental_tract_mtg 187 231 162 0
|
|
1445
|
+
10045 trigeminothalamic_tract_tth 143 182 241 0
|
|
1446
|
+
10046 cerebral_peduncle_cp 13 185 164 0
|
|
1447
|
+
10047 corticospinal_tract_csp 205 16 164 0
|
|
1448
|
+
10048 corticobulbar_tract_cbu 195 209 118 0
|
|
1449
|
+
10049 mesencephalic_trigeminal_tract_me5 220 107 63 0
|
|
1450
|
+
10050 medial_longitudinal_fasciculus_mlf 40 51 218 0
|
|
1451
|
+
|
|
1452
|
+
# Nuclei
|
|
1453
|
+
|
|
1454
|
+
# in the Medulla
|
|
1455
|
+
10101 Vestibulocochlear_nucleus_8N 62 138 85 0
|
|
1456
|
+
10102 Vagus_nerve_nucleus_10N 247 89 10 0
|
|
1457
|
+
10103 Dorsal_motor_nucleus_of_vagus_caudal_part_10CA 245 118 54 0
|
|
1458
|
+
10104 Dorsal_motor_nucleus_of_vagus_caudointermediate_part_10CaI 247 157 111 0
|
|
1459
|
+
10105 Dorsal_motor_nucleus_of_vagus_centrointermediate_part_10CeI 242 194 170 0
|
|
1460
|
+
10106 Dorsal_motor_nucleus_of_vagus_dorsointermediate_part_10DI 184 64 9 0
|
|
1461
|
+
10107 Dorsal_motor_nucleus_of_vagus_dorsorostral_part_10DR 176 99 60 0
|
|
1462
|
+
10108 Dorsal_motor_nucleus_of_vagus_medial_fringe_10F 166 126 106 0
|
|
1463
|
+
10109 Dorsal_motor_nucleus_of_vagus_rostrointermediate_part_10RI 115 73 52 0
|
|
1464
|
+
10110 Dorsal_motor_nucleus_of_vagus_ventrointermediate_part_10VI 179 93 50 0
|
|
1465
|
+
10111 Dorsal_motor_nucleus_of_vagus_ventrorostral_part_10VR 209 106 54 0
|
|
1466
|
+
10112 Accessory_nerve_nucleus_11N 54 49 212 0
|
|
1467
|
+
10113 Hypoglossal_nucleus_12N 121 240 17 0
|
|
1468
|
+
10114 Hypoglossal_nucleus_geniohyoid_part_12GH 150 237 74 0
|
|
1469
|
+
10115 Hypoglossal_nucleus_lateral_part_12L 189 242 143 0
|
|
1470
|
+
10116 Hypoglossal_nucleus_medial_part_12M 84 166 12 0
|
|
1471
|
+
10117 Hypoglossal_nucleus_ventral_part_12V 114 168 67 0
|
|
1472
|
+
10118 Hypoglossal_nucleus_ventrolateral_part_12VL 118 140 98 0
|
|
1473
|
+
10119 Gracile_nucleus_Gr 238 247 106 0
|
|
1474
|
+
10120 Cuneate_nucleus_Cu 10 136 240 0
|
|
1475
|
+
10121 Cuneate_nucleus_rotundus_part_CuR 109 177 232 0
|
|
1476
|
+
10122 Cuneate_nucleus_triangular_part_CuT 86 121 150 0
|
|
1477
|
+
10123 External_cuneate_nucleus_ECu 5 65 115 0
|
|
1478
|
+
10124 Lateral_pericuneate_nucleus_LPCu 61 98 219 0
|
|
1479
|
+
10125 Medial_pericuneate_nucleus_MPCu 9 61 230 0
|
|
1480
|
+
10126 Spinal_trigeminal_nucleus_Sp5 5 250 168 0
|
|
1481
|
+
10127 Spinal_trigeminal_nucleus_caudal_part_Sp5C 48 140 109 0
|
|
1482
|
+
10128 Spinal_trigeminal_nucleus_caudal_part_lamina_1_Sp5C1 165 207 193 0
|
|
1483
|
+
10129 Spinal_trigeminal_nucleus_caudal_part_lamina_2_Sp5C2 7 84 58 0
|
|
1484
|
+
10130 Spinal_trigeminal_nucleus_caudal_part_lamina_3_4_Sp5C3/4 58 140 113 0
|
|
1485
|
+
10131 Spinal_trigeminal_nucleus_interpolar_part_Sp5I 72 110 97 0
|
|
1486
|
+
10132 Spinal_trigeminal_nucleus_oral_part_Sp5O 104 227 186 0
|
|
1487
|
+
10133 Ambiguus_nucleus_Amb 117 25 198 0
|
|
1488
|
+
10134 Ambiguus_nucleus_compact_part_AmbC 171 99 235 0
|
|
1489
|
+
10135 Ambiguus_nucleus_loose_part_AmbL 203 161 240 0
|
|
1490
|
+
10136 Ambiguus_nucleus_semicompact_part_AmbSC 99 50 143 0
|
|
1491
|
+
10137 Retroambiguus_nucleus_RAmb 200 157 90 0
|
|
1492
|
+
10138 Intermediate_reticular_nucleus_IRt 242 169 51 0
|
|
1493
|
+
10139 Solitary_nucleus_Sol 120 165 144 0
|
|
1494
|
+
10140 Solitary_nucleus_commissural_part_SolC 5 247 134 0
|
|
1495
|
+
10141 Solitary_nucleus_dorsal_part_SolD 33 235 156 0
|
|
1496
|
+
10142 Solitary_nucleus_dorsolateral_part_SolDL 146 247 200 0
|
|
1497
|
+
10143 Solitary_nucleus_gelatinous_part_SolG 213 245 230 0
|
|
1498
|
+
10144 Solitary_nucleus_interstitial_part_SolI 130 173 153 0
|
|
1499
|
+
10145 Solitary_nucleus_intermediate_part_SolIM 67 125 98 0
|
|
1500
|
+
10146 Solitary_nucleus_medial_part_SolM 37 168 107 0
|
|
1501
|
+
10147 Solitary_nucleus_paracommissural_part_SolPaC 36 92 66 0
|
|
1502
|
+
10148 Solitary_nucleus_ventral_part_SolV 106 143 125 0
|
|
1503
|
+
10149 Solitary_nucleus_ventrolateral_SolVL 11 74 45 0
|
|
1504
|
+
10150 Inferior_olivary_nucleus_IO 182 10 250 0
|
|
1505
|
+
10151 Inferior_olivary_subnucleus_A_of_medial_nucleus_IOA 130 13 168 0
|
|
1506
|
+
10152 Inferior_olivary_subnucleus_B_of_medial_nucleus_IOB 203 91 240 0
|
|
1507
|
+
10153 Inferior_olivary_beta_subnucleus_IoBe 194 81 232 0
|
|
1508
|
+
10154 Inferior_olivary_subnucleus_C_of_medial_nucleus_IOC 124 84 138 0
|
|
1509
|
+
10155 Inferior_olivary_dorsal_nucleus_IOD 188 139 204 0
|
|
1510
|
+
10156 Inferior_olivary_dorsal_nucleus_caudal_part_IODC 126 53 150 0
|
|
1511
|
+
10157 Inferior_olivary_dorsomedial_cell_group_IODM 146 132 150 0
|
|
1512
|
+
10158 Inferior_olivary_cap_of_Kooy_of_the_medial_nucleus_IOK 126 32 158 0
|
|
1513
|
+
10159 Inferior_olivary_medial_nucleus_IOM 186 22 115 0
|
|
1514
|
+
10160 Inferior_olivary_principal_nucleus_IOPr 80 6 105 0
|
|
1515
|
+
10161 Inferior_olivary_ventrolateral_protrusion_IOVL 157 91 179 0
|
|
1516
|
+
10162 Intercalated_nucleus_In 223 226 196 0
|
|
1517
|
+
10163 Raphe_pallidus_nucleus_RPa 178 150 79 0
|
|
1518
|
+
10164 Raphe_obscurus_nucleus_ROb 126 233 88 0
|
|
1519
|
+
10165 Raphe_magnus_nucleus_RMg 30 178 165 0
|
|
1520
|
+
10166 Gigantocellular_reticular_nucleus_Gi 167 186 61 0
|
|
1521
|
+
10167 Gigantocellular_reticular_nucleus_ventral_part_GiV 195 230 7 0
|
|
1522
|
+
10168 Gigantocellular_reticular_nucleus_alpha_part_GiA 219 232 146 0
|
|
1523
|
+
10169 Dorsal_paragigantocellular_nucleus_DPGi 215 73 252 0
|
|
1524
|
+
10170 Lateral_paragigantocellular_nucleus_LPGi 47 224 163 0
|
|
1525
|
+
10171 Vestibular_nucleus_Ve 36 121 43 0
|
|
1526
|
+
10172 Lateral_vestibular_nucleus_LVe 172 34 15 0
|
|
1527
|
+
10173 Medial_vestibular_nucleus_MVe 106 80 64 0
|
|
1528
|
+
10174 Medial_vestibular_nucleus_magnocellular_part_MVeMC 48 28 158 0
|
|
1529
|
+
10175 Medial_vestibular_nucleus_parvocellular_part_MVePC 164 152 237 0
|
|
1530
|
+
10176 Paravestibular_nucleus_PaVe 13 76 235 0
|
|
1531
|
+
10177 Inferior_vestibular_nucleus_(spinal)_SpVe 249 246 217 0
|
|
1532
|
+
10178 Superior_vestibular_nucleus_SuVe 103 152 30 0
|
|
1533
|
+
10179 Nucleus_of_Roller_Ro 50 231 44 0
|
|
1534
|
+
10180 Arcuate_nucleus_Ar 242 168 29 0
|
|
1535
|
+
10181 Anteroventral_cochlear_nucleus_AVC 215 89 28 0
|
|
1536
|
+
10182 Dorsal_cochlear_nucleus_DC 232 140 95 0
|
|
1537
|
+
10183 Granular_cell_layer_of_the_cochlear_nucleus_GrC 143 77 46 0
|
|
1538
|
+
10184 Ventral_cochlear_nuclear_posterior_part_VCP 148 52 6 0
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
# in the Pons
|
|
1542
|
+
10301 Motor_trigeminal_nucleus_5N 7 250 209 0
|
|
1543
|
+
10302 Motor_trigeminal_nucleus_anterior_digastric_part_5ADi 100 250 225 0
|
|
1544
|
+
10303 Motor_trigeminal_nucleus_masseter_part_5Ma 160 250 235 0
|
|
1545
|
+
10304 Mylohyoid_subnuleus_of_the_motor_trigeminal_nucleus_5MHy 215 247 242 0
|
|
1546
|
+
10305 Motor_trigeminal_nucleus_parvocellar_part_5PC 3 161 134 0
|
|
1547
|
+
10306 Motor_trigeminal_nucleus_pterygoid_part_5Pt 75 153 140 0
|
|
1548
|
+
10307 Motor_trigeminal_nucleus_temporalis_part_5Te 112 140 136 0
|
|
1549
|
+
10308 Abducens_nucleus_6N 185 212 11 0
|
|
1550
|
+
10309 Facial_nucleus_7N 250 0 140 0
|
|
1551
|
+
10310 Facial_nucleus_dorsal_intermediate_subnucleus_7DI 242 48 155 0
|
|
1552
|
+
10311 Facial_nucleus_dorsomedial_subnucleus_7DM 250 120 191 0
|
|
1553
|
+
10312 Facial_nucleus_intermediate_part_7I 245 181 216 0
|
|
1554
|
+
10313 Facial_nucleus_lateral_subnucleus_7L 250 215 234 0
|
|
1555
|
+
10314 Facial_nucleus_ventral_intermediate_subnucleus_7VI 150 3 84 0
|
|
1556
|
+
10315 Facial_nucleus_ventrolateral_subnucleus_7VL 150 65 112 0
|
|
1557
|
+
10316 Facial_nucleus_ventromedial_subnucleus_7VM 148 105 129 0
|
|
1558
|
+
10317 Pontine_nuclei_Pn 105 130 224 0
|
|
1559
|
+
10318 Pontine_reticular_nucleus_caudal_part_PRC(PnC) 246 160 93 0
|
|
1560
|
+
10319 Pontine_reticular_nucleus_oral_part_PRO(PnO) 133 63 9 0
|
|
1561
|
+
10320 Raphe_pontis_nucleus_RPn 70 153 237 0
|
|
1562
|
+
10321 Dorsal_raphe_nucleus_DR 41 66 83 0
|
|
1563
|
+
10322 Dorsal_raphe_nucleus_caudal_part_DRC 43 108 153 0
|
|
1564
|
+
10323 Dorsal_raphe_nucleus_dorsal_part_DRD 23 148 232 0
|
|
1565
|
+
10324 Dorsal_raphe_nucleus_interfascicular_part_DRI 108 177 224 0
|
|
1566
|
+
10325 Dorsal_raphe_nucleus_lateral_part_DRL 21 98 150 0
|
|
1567
|
+
10326 Dorsal_raphe_nucleus_ventral_part_DRV 174 210 235 0
|
|
1568
|
+
10327 Median_raphe_nucleus_MnR 248 139 133 0
|
|
1569
|
+
10328 Paramedian_raphe_nucleus_PMnR 195 35 162 0
|
|
1570
|
+
10329 Posterodorsal_raphe_nucleus_PDR 5 148 245 0
|
|
1571
|
+
10330 Mesencephalic_trigeminal_nucleus_Me5 91 187 197 0
|
|
1572
|
+
10331 Locus_coeruleus_LC 57 68 183 0
|
|
1573
|
+
10332 Subcoeruleus_nucleus_SubC 152 159 235 0
|
|
1574
|
+
10333 Subcoeruleus_nucleus_dorsal_part_SubCD 76 81 135 0
|
|
1575
|
+
10334 Subcoeruleus_nucleus_ventral_part_SubDV 24 35 150 0
|
|
1576
|
+
10335 Laterodorsal_tegmental_nucleus_LDTg 187 118 113 0
|
|
1577
|
+
10336 Laterodorsal_tegmental_nucleus_ventral_part_LDTgV 43 151 229 0
|
|
1578
|
+
10337 Dorsal_tegmental_nucleus_central_part_DTgC 255 48 167 0
|
|
1579
|
+
10338 Dorsal_tegmental_nucleus_pericentral_part_DTgP 173 95 44 0
|
|
1580
|
+
10339 Posterodorsal_tegmental_nucleus_PDTg 33 34 248 0
|
|
1581
|
+
10340 Reticulotegmental_nucleus_RtTg 29 244 26 0
|
|
1582
|
+
10341 Reticulotegmental_nucleus_lateral_part_RtTgL 24 137 128 0
|
|
1583
|
+
10342 Central_gray_of_the_rhombencephalon_CGPn 173 59 71 0
|
|
1584
|
+
10343 Superior_olivary_nucleus_SO 197 134 141 0
|
|
1585
|
+
10344 Medial_superior_olivary_nucleus_MSO 230 48 69 0
|
|
1586
|
+
10345 Lateral_superior_olivary_nucleus_LSO 232 167 175 0
|
|
1587
|
+
10346 Superior_paraolivary_nucleus_SPO 135 72 79 0
|
|
1588
|
+
10347 Medioventral_periolivary_nucleus_MVPO 158 17 34 0
|
|
1589
|
+
10348 Lateroventral_periolivary_nucleus_LVPO 250 80 100 0
|
|
1590
|
+
10349 Matrix_region_of_the_rhombencephalon_Mx 228 124 216 0
|
|
1591
|
+
10350 Lateral_parabrachial_nucleus_LPB 93 236 213 0
|
|
1592
|
+
10351 Lateral_parabrachial_nucleus_central_part_LPBC 13 163 138 0
|
|
1593
|
+
10352 Lateral_parabrachial_nucleus_dorsal_part_LPBD 161 237 225 0
|
|
1594
|
+
10353 Lateral_parabrachial_nucleus_external_part_LPBE 67 125 115 0
|
|
1595
|
+
10354 Lateral_parabrachial_nucleus_superior_part_LPBS 12 130 110 0
|
|
1596
|
+
10355 Medial_parabrachial_nucleus_MPB 224 128 49 0
|
|
1597
|
+
10356 Medial_parabrachial_nucleus_external_part_MPBE 222 182 149 0
|
|
1598
|
+
|
|
1599
|
+
# in the Midbrain
|
|
1600
|
+
10401 Oculomotor_nucleus_3N 144 212 36 0
|
|
1601
|
+
10402 Trochlear_nucleus_4N 212 83 36 0
|
|
1602
|
+
10403 Inferior_colliculus_IC 148 30 154 0
|
|
1603
|
+
10404 Nucleus_of_the_brachium_of_the_inferior_colliculus_BIC 235 5 247 0
|
|
1604
|
+
10405 Central_nucleus_of_the_inferior_colliculus_CIC 237 131 242 0
|
|
1605
|
+
10406 Dorsal_cortex_of_the_inferior_colliculus_DCIC 205 169 207 0
|
|
1606
|
+
10407 External_cortex_of_the_inferior_colliculus_ECIC 129 53 133 0
|
|
1607
|
+
10408 Superior_colliculus_SC 34 124 43 0
|
|
1608
|
+
10409 Deep_gray_layer_of_the_superior_colliculus_DpG 137 171 140 0
|
|
1609
|
+
10410 Deep_white_layer_of_the_superior_colliculus_DpWh 218 240 220 0
|
|
1610
|
+
10411 Intermediate_gray_layer_of_the_superior_colliculus_InG 7 125 19 0
|
|
1611
|
+
10412 Intermediate_white_layer_of_the_superior_colliculus_InWh 170 240 177 0
|
|
1612
|
+
10413 Superficial_gray_layer_of_the_superior_colliculus_SuG 44 77 43 0
|
|
1613
|
+
10414 Superficial_white_layer_of_the_superior_colliculus_SuWh 51 171 63 0
|
|
1614
|
+
10415 Optic_nerve_layer_of_the_superior_colliculus_Op 4 87 13 0
|
|
1615
|
+
10416 Periaqueductal_gray_PAG 206 78 109 0
|
|
1616
|
+
10417 Dorsolateral_periaqueductal_gray_DLPAG 242 5 64 0
|
|
1617
|
+
10418 Dorsomedial_periaqueductal_gray_DMPAG 143 13 45 0
|
|
1618
|
+
10419 Lateral_periaqueductal_gray_LPAG 232 151 171 0
|
|
1619
|
+
10420 Ventrolateral_periaqueductal_gray_VLPAG 125 57 74 0
|
|
1620
|
+
10421 Red_nucleus_RN 250 2 2 0
|
|
1621
|
+
10422 Red_nucleus_magnocellular_part_RMC 240 132 132 0
|
|
1622
|
+
10423 Red_nucleus_parvocellular_part_RPC 135 39 39 0
|
|
1623
|
+
10424 Substantia_nigra_SN 252 220 131 0
|
|
1624
|
+
10425 Substantia_nigra_compact_part_SNC 245 181 5 0
|
|
1625
|
+
10426 Substantia_nigra_compact_part_dorsal_tier_SNCD 153 113 3 0
|
|
1626
|
+
10427 Mesencephalic_reticular_nuclei(formation)_MRN(mRt) 240 100 156 0
|
|
1627
|
+
10434 Ventral_tegmental_area_VTA 143 22 141 0
|
|
1628
|
+
10435 Ventral_tegmental_area_rostral_part_VTAR 194 110 192 0
|
|
1629
|
+
10436 Anterior_pretectal_nucleus_APT 3 10 123 0
|
|
1630
|
+
|
|
1631
|
+
# Below is the color table for the cortical labels of the seg volume
|
|
1632
|
+
# created by mri_aparc2aseg (with --a2009s flag) in which the aseg
|
|
1633
|
+
# cortex label is replaced by the labels in the aparc.a2009s. The
|
|
1634
|
+
# cortical labels are the same as in Simple_surface_labels2009.txt,
|
|
1635
|
+
# except that left hemisphere has 11100 added to the index and the
|
|
1636
|
+
# right has 12100 added. The label names are also prepended with
|
|
1637
|
+
# ctx_lh_, ctx_rh_, wm_lh_ and wm_rh_ (note usage of _ instead of -
|
|
1638
|
+
# to differentiate from a2005s labels).
|
|
1639
|
+
|
|
1640
|
+
#No. Label Name: R G B A
|
|
1641
|
+
11100 ctx_lh_Unknown 0 0 0 0
|
|
1642
|
+
11101 ctx_lh_G_and_S_frontomargin 23 220 60 0
|
|
1643
|
+
11102 ctx_lh_G_and_S_occipital_inf 23 60 180 0
|
|
1644
|
+
11103 ctx_lh_G_and_S_paracentral 63 100 60 0
|
|
1645
|
+
11104 ctx_lh_G_and_S_subcentral 63 20 220 0
|
|
1646
|
+
11105 ctx_lh_G_and_S_transv_frontopol 13 0 250 0
|
|
1647
|
+
11106 ctx_lh_G_and_S_cingul-Ant 26 60 0 0
|
|
1648
|
+
11107 ctx_lh_G_and_S_cingul-Mid-Ant 26 60 75 0
|
|
1649
|
+
11108 ctx_lh_G_and_S_cingul-Mid-Post 26 60 150 0
|
|
1650
|
+
11109 ctx_lh_G_cingul-Post-dorsal 25 60 250 0
|
|
1651
|
+
11110 ctx_lh_G_cingul-Post-ventral 60 25 25 0
|
|
1652
|
+
11111 ctx_lh_G_cuneus 180 20 20 0
|
|
1653
|
+
11112 ctx_lh_G_front_inf-Opercular 220 20 100 0
|
|
1654
|
+
11113 ctx_lh_G_front_inf-Orbital 140 60 60 0
|
|
1655
|
+
11114 ctx_lh_G_front_inf-Triangul 180 220 140 0
|
|
1656
|
+
11115 ctx_lh_G_front_middle 140 100 180 0
|
|
1657
|
+
11116 ctx_lh_G_front_sup 180 20 140 0
|
|
1658
|
+
11117 ctx_lh_G_Ins_lg_and_S_cent_ins 23 10 10 0
|
|
1659
|
+
11118 ctx_lh_G_insular_short 225 140 140 0
|
|
1660
|
+
11119 ctx_lh_G_occipital_middle 180 60 180 0
|
|
1661
|
+
11120 ctx_lh_G_occipital_sup 20 220 60 0
|
|
1662
|
+
11121 ctx_lh_G_oc-temp_lat-fusifor 60 20 140 0
|
|
1663
|
+
11122 ctx_lh_G_oc-temp_med-Lingual 220 180 140 0
|
|
1664
|
+
11123 ctx_lh_G_oc-temp_med-Parahip 65 100 20 0
|
|
1665
|
+
11124 ctx_lh_G_orbital 220 60 20 0
|
|
1666
|
+
11125 ctx_lh_G_pariet_inf-Angular 20 60 220 0
|
|
1667
|
+
11126 ctx_lh_G_pariet_inf-Supramar 100 100 60 0
|
|
1668
|
+
11127 ctx_lh_G_parietal_sup 220 180 220 0
|
|
1669
|
+
11128 ctx_lh_G_postcentral 20 180 140 0
|
|
1670
|
+
11129 ctx_lh_G_precentral 60 140 180 0
|
|
1671
|
+
11130 ctx_lh_G_precuneus 25 20 140 0
|
|
1672
|
+
11131 ctx_lh_G_rectus 20 60 100 0
|
|
1673
|
+
11132 ctx_lh_G_subcallosal 60 220 20 0
|
|
1674
|
+
11133 ctx_lh_G_temp_sup-G_T_transv 60 60 220 0
|
|
1675
|
+
11134 ctx_lh_G_temp_sup-Lateral 220 60 220 0
|
|
1676
|
+
11135 ctx_lh_G_temp_sup-Plan_polar 65 220 60 0
|
|
1677
|
+
11136 ctx_lh_G_temp_sup-Plan_tempo 25 140 20 0
|
|
1678
|
+
11137 ctx_lh_G_temporal_inf 220 220 100 0
|
|
1679
|
+
11138 ctx_lh_G_temporal_middle 180 60 60 0
|
|
1680
|
+
11139 ctx_lh_Lat_Fis-ant-Horizont 61 20 220 0
|
|
1681
|
+
11140 ctx_lh_Lat_Fis-ant-Vertical 61 20 60 0
|
|
1682
|
+
11141 ctx_lh_Lat_Fis-post 61 60 100 0
|
|
1683
|
+
11142 ctx_lh_Medial_wall 25 25 25 0
|
|
1684
|
+
11143 ctx_lh_Pole_occipital 140 20 60 0
|
|
1685
|
+
11144 ctx_lh_Pole_temporal 220 180 20 0
|
|
1686
|
+
11145 ctx_lh_S_calcarine 63 180 180 0
|
|
1687
|
+
11146 ctx_lh_S_central 221 20 10 0
|
|
1688
|
+
11147 ctx_lh_S_cingul-Marginalis 221 20 100 0
|
|
1689
|
+
11148 ctx_lh_S_circular_insula_ant 221 60 140 0
|
|
1690
|
+
11149 ctx_lh_S_circular_insula_inf 221 20 220 0
|
|
1691
|
+
11150 ctx_lh_S_circular_insula_sup 61 220 220 0
|
|
1692
|
+
11151 ctx_lh_S_collat_transv_ant 100 200 200 0
|
|
1693
|
+
11152 ctx_lh_S_collat_transv_post 10 200 200 0
|
|
1694
|
+
11153 ctx_lh_S_front_inf 221 220 20 0
|
|
1695
|
+
11154 ctx_lh_S_front_middle 141 20 100 0
|
|
1696
|
+
11155 ctx_lh_S_front_sup 61 220 100 0
|
|
1697
|
+
11156 ctx_lh_S_interm_prim-Jensen 141 60 20 0
|
|
1698
|
+
11157 ctx_lh_S_intrapariet_and_P_trans 143 20 220 0
|
|
1699
|
+
11158 ctx_lh_S_oc_middle_and_Lunatus 101 60 220 0
|
|
1700
|
+
11159 ctx_lh_S_oc_sup_and_transversal 21 20 140 0
|
|
1701
|
+
11160 ctx_lh_S_occipital_ant 61 20 180 0
|
|
1702
|
+
11161 ctx_lh_S_oc-temp_lat 221 140 20 0
|
|
1703
|
+
11162 ctx_lh_S_oc-temp_med_and_Lingual 141 100 220 0
|
|
1704
|
+
11163 ctx_lh_S_orbital_lateral 221 100 20 0
|
|
1705
|
+
11164 ctx_lh_S_orbital_med-olfact 181 200 20 0
|
|
1706
|
+
11165 ctx_lh_S_orbital-H_Shaped 101 20 20 0
|
|
1707
|
+
11166 ctx_lh_S_parieto_occipital 101 100 180 0
|
|
1708
|
+
11167 ctx_lh_S_pericallosal 181 220 20 0
|
|
1709
|
+
11168 ctx_lh_S_postcentral 21 140 200 0
|
|
1710
|
+
11169 ctx_lh_S_precentral-inf-part 21 20 240 0
|
|
1711
|
+
11170 ctx_lh_S_precentral-sup-part 21 20 200 0
|
|
1712
|
+
11171 ctx_lh_S_suborbital 21 20 60 0
|
|
1713
|
+
11172 ctx_lh_S_subparietal 101 60 60 0
|
|
1714
|
+
11173 ctx_lh_S_temporal_inf 21 180 180 0
|
|
1715
|
+
11174 ctx_lh_S_temporal_sup 223 220 60 0
|
|
1716
|
+
11175 ctx_lh_S_temporal_transverse 221 60 60 0
|
|
1717
|
+
11300 ctx_lh_high_myelin 235 62 78 0
|
|
1718
|
+
|
|
1719
|
+
12100 ctx_rh_Unknown 0 0 0 0
|
|
1720
|
+
12101 ctx_rh_G_and_S_frontomargin 23 220 60 0
|
|
1721
|
+
12102 ctx_rh_G_and_S_occipital_inf 23 60 180 0
|
|
1722
|
+
12103 ctx_rh_G_and_S_paracentral 63 100 60 0
|
|
1723
|
+
12104 ctx_rh_G_and_S_subcentral 63 20 220 0
|
|
1724
|
+
12105 ctx_rh_G_and_S_transv_frontopol 13 0 250 0
|
|
1725
|
+
12106 ctx_rh_G_and_S_cingul-Ant 26 60 0 0
|
|
1726
|
+
12107 ctx_rh_G_and_S_cingul-Mid-Ant 26 60 75 0
|
|
1727
|
+
12108 ctx_rh_G_and_S_cingul-Mid-Post 26 60 150 0
|
|
1728
|
+
12109 ctx_rh_G_cingul-Post-dorsal 25 60 250 0
|
|
1729
|
+
12110 ctx_rh_G_cingul-Post-ventral 60 25 25 0
|
|
1730
|
+
12111 ctx_rh_G_cuneus 180 20 20 0
|
|
1731
|
+
12112 ctx_rh_G_front_inf-Opercular 220 20 100 0
|
|
1732
|
+
12113 ctx_rh_G_front_inf-Orbital 140 60 60 0
|
|
1733
|
+
12114 ctx_rh_G_front_inf-Triangul 180 220 140 0
|
|
1734
|
+
12115 ctx_rh_G_front_middle 140 100 180 0
|
|
1735
|
+
12116 ctx_rh_G_front_sup 180 20 140 0
|
|
1736
|
+
12117 ctx_rh_G_Ins_lg_and_S_cent_ins 23 10 10 0
|
|
1737
|
+
12118 ctx_rh_G_insular_short 225 140 140 0
|
|
1738
|
+
12119 ctx_rh_G_occipital_middle 180 60 180 0
|
|
1739
|
+
12120 ctx_rh_G_occipital_sup 20 220 60 0
|
|
1740
|
+
12121 ctx_rh_G_oc-temp_lat-fusifor 60 20 140 0
|
|
1741
|
+
12122 ctx_rh_G_oc-temp_med-Lingual 220 180 140 0
|
|
1742
|
+
12123 ctx_rh_G_oc-temp_med-Parahip 65 100 20 0
|
|
1743
|
+
12124 ctx_rh_G_orbital 220 60 20 0
|
|
1744
|
+
12125 ctx_rh_G_pariet_inf-Angular 20 60 220 0
|
|
1745
|
+
12126 ctx_rh_G_pariet_inf-Supramar 100 100 60 0
|
|
1746
|
+
12127 ctx_rh_G_parietal_sup 220 180 220 0
|
|
1747
|
+
12128 ctx_rh_G_postcentral 20 180 140 0
|
|
1748
|
+
12129 ctx_rh_G_precentral 60 140 180 0
|
|
1749
|
+
12130 ctx_rh_G_precuneus 25 20 140 0
|
|
1750
|
+
12131 ctx_rh_G_rectus 20 60 100 0
|
|
1751
|
+
12132 ctx_rh_G_subcallosal 60 220 20 0
|
|
1752
|
+
12133 ctx_rh_G_temp_sup-G_T_transv 60 60 220 0
|
|
1753
|
+
12134 ctx_rh_G_temp_sup-Lateral 220 60 220 0
|
|
1754
|
+
12135 ctx_rh_G_temp_sup-Plan_polar 65 220 60 0
|
|
1755
|
+
12136 ctx_rh_G_temp_sup-Plan_tempo 25 140 20 0
|
|
1756
|
+
12137 ctx_rh_G_temporal_inf 220 220 100 0
|
|
1757
|
+
12138 ctx_rh_G_temporal_middle 180 60 60 0
|
|
1758
|
+
12139 ctx_rh_Lat_Fis-ant-Horizont 61 20 220 0
|
|
1759
|
+
12140 ctx_rh_Lat_Fis-ant-Vertical 61 20 60 0
|
|
1760
|
+
12141 ctx_rh_Lat_Fis-post 61 60 100 0
|
|
1761
|
+
12142 ctx_rh_Medial_wall 25 25 25 0
|
|
1762
|
+
12143 ctx_rh_Pole_occipital 140 20 60 0
|
|
1763
|
+
12144 ctx_rh_Pole_temporal 220 180 20 0
|
|
1764
|
+
12145 ctx_rh_S_calcarine 63 180 180 0
|
|
1765
|
+
12146 ctx_rh_S_central 221 20 10 0
|
|
1766
|
+
12147 ctx_rh_S_cingul-Marginalis 221 20 100 0
|
|
1767
|
+
12148 ctx_rh_S_circular_insula_ant 221 60 140 0
|
|
1768
|
+
12149 ctx_rh_S_circular_insula_inf 221 20 220 0
|
|
1769
|
+
12150 ctx_rh_S_circular_insula_sup 61 220 220 0
|
|
1770
|
+
12151 ctx_rh_S_collat_transv_ant 100 200 200 0
|
|
1771
|
+
12152 ctx_rh_S_collat_transv_post 10 200 200 0
|
|
1772
|
+
12153 ctx_rh_S_front_inf 221 220 20 0
|
|
1773
|
+
12154 ctx_rh_S_front_middle 141 20 100 0
|
|
1774
|
+
12155 ctx_rh_S_front_sup 61 220 100 0
|
|
1775
|
+
12156 ctx_rh_S_interm_prim-Jensen 141 60 20 0
|
|
1776
|
+
12157 ctx_rh_S_intrapariet_and_P_trans 143 20 220 0
|
|
1777
|
+
12158 ctx_rh_S_oc_middle_and_Lunatus 101 60 220 0
|
|
1778
|
+
12159 ctx_rh_S_oc_sup_and_transversal 21 20 140 0
|
|
1779
|
+
12160 ctx_rh_S_occipital_ant 61 20 180 0
|
|
1780
|
+
12161 ctx_rh_S_oc-temp_lat 221 140 20 0
|
|
1781
|
+
12162 ctx_rh_S_oc-temp_med_and_Lingual 141 100 220 0
|
|
1782
|
+
12163 ctx_rh_S_orbital_lateral 221 100 20 0
|
|
1783
|
+
12164 ctx_rh_S_orbital_med-olfact 181 200 20 0
|
|
1784
|
+
12165 ctx_rh_S_orbital-H_Shaped 101 20 20 0
|
|
1785
|
+
12166 ctx_rh_S_parieto_occipital 101 100 180 0
|
|
1786
|
+
12167 ctx_rh_S_pericallosal 181 220 20 0
|
|
1787
|
+
12168 ctx_rh_S_postcentral 21 140 200 0
|
|
1788
|
+
12169 ctx_rh_S_precentral-inf-part 21 20 240 0
|
|
1789
|
+
12170 ctx_rh_S_precentral-sup-part 21 20 200 0
|
|
1790
|
+
12171 ctx_rh_S_suborbital 21 20 60 0
|
|
1791
|
+
12172 ctx_rh_S_subparietal 101 60 60 0
|
|
1792
|
+
12173 ctx_rh_S_temporal_inf 21 180 180 0
|
|
1793
|
+
12174 ctx_rh_S_temporal_sup 223 220 60 0
|
|
1794
|
+
12175 ctx_rh_S_temporal_transverse 221 60 60 0
|
|
1795
|
+
12300 ctx_rh_high_myelin 235 82 78 0
|
|
1796
|
+
|
|
1797
|
+
#No. Label Name: R G B A
|
|
1798
|
+
13100 wm_lh_Unknown 0 0 0 0
|
|
1799
|
+
13101 wm_lh_G_and_S_frontomargin 23 220 60 0
|
|
1800
|
+
13102 wm_lh_G_and_S_occipital_inf 23 60 180 0
|
|
1801
|
+
13103 wm_lh_G_and_S_paracentral 63 100 60 0
|
|
1802
|
+
13104 wm_lh_G_and_S_subcentral 63 20 220 0
|
|
1803
|
+
13105 wm_lh_G_and_S_transv_frontopol 13 0 250 0
|
|
1804
|
+
13106 wm_lh_G_and_S_cingul-Ant 26 60 0 0
|
|
1805
|
+
13107 wm_lh_G_and_S_cingul-Mid-Ant 26 60 75 0
|
|
1806
|
+
13108 wm_lh_G_and_S_cingul-Mid-Post 26 60 150 0
|
|
1807
|
+
13109 wm_lh_G_cingul-Post-dorsal 25 60 250 0
|
|
1808
|
+
13110 wm_lh_G_cingul-Post-ventral 60 25 25 0
|
|
1809
|
+
13111 wm_lh_G_cuneus 180 20 20 0
|
|
1810
|
+
13112 wm_lh_G_front_inf-Opercular 220 20 100 0
|
|
1811
|
+
13113 wm_lh_G_front_inf-Orbital 140 60 60 0
|
|
1812
|
+
13114 wm_lh_G_front_inf-Triangul 180 220 140 0
|
|
1813
|
+
13115 wm_lh_G_front_middle 140 100 180 0
|
|
1814
|
+
13116 wm_lh_G_front_sup 180 20 140 0
|
|
1815
|
+
13117 wm_lh_G_Ins_lg_and_S_cent_ins 23 10 10 0
|
|
1816
|
+
13118 wm_lh_G_insular_short 225 140 140 0
|
|
1817
|
+
13119 wm_lh_G_occipital_middle 180 60 180 0
|
|
1818
|
+
13120 wm_lh_G_occipital_sup 20 220 60 0
|
|
1819
|
+
13121 wm_lh_G_oc-temp_lat-fusifor 60 20 140 0
|
|
1820
|
+
13122 wm_lh_G_oc-temp_med-Lingual 220 180 140 0
|
|
1821
|
+
13123 wm_lh_G_oc-temp_med-Parahip 65 100 20 0
|
|
1822
|
+
13124 wm_lh_G_orbital 220 60 20 0
|
|
1823
|
+
13125 wm_lh_G_pariet_inf-Angular 20 60 220 0
|
|
1824
|
+
13126 wm_lh_G_pariet_inf-Supramar 100 100 60 0
|
|
1825
|
+
13127 wm_lh_G_parietal_sup 220 180 220 0
|
|
1826
|
+
13128 wm_lh_G_postcentral 20 180 140 0
|
|
1827
|
+
13129 wm_lh_G_precentral 60 140 180 0
|
|
1828
|
+
13130 wm_lh_G_precuneus 25 20 140 0
|
|
1829
|
+
13131 wm_lh_G_rectus 20 60 100 0
|
|
1830
|
+
13132 wm_lh_G_subcallosal 60 220 20 0
|
|
1831
|
+
13133 wm_lh_G_temp_sup-G_T_transv 60 60 220 0
|
|
1832
|
+
13134 wm_lh_G_temp_sup-Lateral 220 60 220 0
|
|
1833
|
+
13135 wm_lh_G_temp_sup-Plan_polar 65 220 60 0
|
|
1834
|
+
13136 wm_lh_G_temp_sup-Plan_tempo 25 140 20 0
|
|
1835
|
+
13137 wm_lh_G_temporal_inf 220 220 100 0
|
|
1836
|
+
13138 wm_lh_G_temporal_middle 180 60 60 0
|
|
1837
|
+
13139 wm_lh_Lat_Fis-ant-Horizont 61 20 220 0
|
|
1838
|
+
13140 wm_lh_Lat_Fis-ant-Vertical 61 20 60 0
|
|
1839
|
+
13141 wm_lh_Lat_Fis-post 61 60 100 0
|
|
1840
|
+
13142 wm_lh_Medial_wall 25 25 25 0
|
|
1841
|
+
13143 wm_lh_Pole_occipital 140 20 60 0
|
|
1842
|
+
13144 wm_lh_Pole_temporal 220 180 20 0
|
|
1843
|
+
13145 wm_lh_S_calcarine 63 180 180 0
|
|
1844
|
+
13146 wm_lh_S_central 221 20 10 0
|
|
1845
|
+
13147 wm_lh_S_cingul-Marginalis 221 20 100 0
|
|
1846
|
+
13148 wm_lh_S_circular_insula_ant 221 60 140 0
|
|
1847
|
+
13149 wm_lh_S_circular_insula_inf 221 20 220 0
|
|
1848
|
+
13150 wm_lh_S_circular_insula_sup 61 220 220 0
|
|
1849
|
+
13151 wm_lh_S_collat_transv_ant 100 200 200 0
|
|
1850
|
+
13152 wm_lh_S_collat_transv_post 10 200 200 0
|
|
1851
|
+
13153 wm_lh_S_front_inf 221 220 20 0
|
|
1852
|
+
13154 wm_lh_S_front_middle 141 20 100 0
|
|
1853
|
+
13155 wm_lh_S_front_sup 61 220 100 0
|
|
1854
|
+
13156 wm_lh_S_interm_prim-Jensen 141 60 20 0
|
|
1855
|
+
13157 wm_lh_S_intrapariet_and_P_trans 143 20 220 0
|
|
1856
|
+
13158 wm_lh_S_oc_middle_and_Lunatus 101 60 220 0
|
|
1857
|
+
13159 wm_lh_S_oc_sup_and_transversal 21 20 140 0
|
|
1858
|
+
13160 wm_lh_S_occipital_ant 61 20 180 0
|
|
1859
|
+
13161 wm_lh_S_oc-temp_lat 221 140 20 0
|
|
1860
|
+
13162 wm_lh_S_oc-temp_med_and_Lingual 141 100 220 0
|
|
1861
|
+
13163 wm_lh_S_orbital_lateral 221 100 20 0
|
|
1862
|
+
13164 wm_lh_S_orbital_med-olfact 181 200 20 0
|
|
1863
|
+
13165 wm_lh_S_orbital-H_Shaped 101 20 20 0
|
|
1864
|
+
13166 wm_lh_S_parieto_occipital 101 100 180 0
|
|
1865
|
+
13167 wm_lh_S_pericallosal 181 220 20 0
|
|
1866
|
+
13168 wm_lh_S_postcentral 21 140 200 0
|
|
1867
|
+
13169 wm_lh_S_precentral-inf-part 21 20 240 0
|
|
1868
|
+
13170 wm_lh_S_precentral-sup-part 21 20 200 0
|
|
1869
|
+
13171 wm_lh_S_suborbital 21 20 60 0
|
|
1870
|
+
13172 wm_lh_S_subparietal 101 60 60 0
|
|
1871
|
+
13173 wm_lh_S_temporal_inf 21 180 180 0
|
|
1872
|
+
13174 wm_lh_S_temporal_sup 223 220 60 0
|
|
1873
|
+
13175 wm_lh_S_temporal_transverse 221 60 60 0
|
|
1874
|
+
|
|
1875
|
+
14100 wm_rh_Unknown 0 0 0 0
|
|
1876
|
+
14101 wm_rh_G_and_S_frontomargin 23 220 60 0
|
|
1877
|
+
14102 wm_rh_G_and_S_occipital_inf 23 60 180 0
|
|
1878
|
+
14103 wm_rh_G_and_S_paracentral 63 100 60 0
|
|
1879
|
+
14104 wm_rh_G_and_S_subcentral 63 20 220 0
|
|
1880
|
+
14105 wm_rh_G_and_S_transv_frontopol 13 0 250 0
|
|
1881
|
+
14106 wm_rh_G_and_S_cingul-Ant 26 60 0 0
|
|
1882
|
+
14107 wm_rh_G_and_S_cingul-Mid-Ant 26 60 75 0
|
|
1883
|
+
14108 wm_rh_G_and_S_cingul-Mid-Post 26 60 150 0
|
|
1884
|
+
14109 wm_rh_G_cingul-Post-dorsal 25 60 250 0
|
|
1885
|
+
14110 wm_rh_G_cingul-Post-ventral 60 25 25 0
|
|
1886
|
+
14111 wm_rh_G_cuneus 180 20 20 0
|
|
1887
|
+
14112 wm_rh_G_front_inf-Opercular 220 20 100 0
|
|
1888
|
+
14113 wm_rh_G_front_inf-Orbital 140 60 60 0
|
|
1889
|
+
14114 wm_rh_G_front_inf-Triangul 180 220 140 0
|
|
1890
|
+
14115 wm_rh_G_front_middle 140 100 180 0
|
|
1891
|
+
14116 wm_rh_G_front_sup 180 20 140 0
|
|
1892
|
+
14117 wm_rh_G_Ins_lg_and_S_cent_ins 23 10 10 0
|
|
1893
|
+
14118 wm_rh_G_insular_short 225 140 140 0
|
|
1894
|
+
14119 wm_rh_G_occipital_middle 180 60 180 0
|
|
1895
|
+
14120 wm_rh_G_occipital_sup 20 220 60 0
|
|
1896
|
+
14121 wm_rh_G_oc-temp_lat-fusifor 60 20 140 0
|
|
1897
|
+
14122 wm_rh_G_oc-temp_med-Lingual 220 180 140 0
|
|
1898
|
+
14123 wm_rh_G_oc-temp_med-Parahip 65 100 20 0
|
|
1899
|
+
14124 wm_rh_G_orbital 220 60 20 0
|
|
1900
|
+
14125 wm_rh_G_pariet_inf-Angular 20 60 220 0
|
|
1901
|
+
14126 wm_rh_G_pariet_inf-Supramar 100 100 60 0
|
|
1902
|
+
14127 wm_rh_G_parietal_sup 220 180 220 0
|
|
1903
|
+
14128 wm_rh_G_postcentral 20 180 140 0
|
|
1904
|
+
14129 wm_rh_G_precentral 60 140 180 0
|
|
1905
|
+
14130 wm_rh_G_precuneus 25 20 140 0
|
|
1906
|
+
14131 wm_rh_G_rectus 20 60 100 0
|
|
1907
|
+
14132 wm_rh_G_subcallosal 60 220 20 0
|
|
1908
|
+
14133 wm_rh_G_temp_sup-G_T_transv 60 60 220 0
|
|
1909
|
+
14134 wm_rh_G_temp_sup-Lateral 220 60 220 0
|
|
1910
|
+
14135 wm_rh_G_temp_sup-Plan_polar 65 220 60 0
|
|
1911
|
+
14136 wm_rh_G_temp_sup-Plan_tempo 25 140 20 0
|
|
1912
|
+
14137 wm_rh_G_temporal_inf 220 220 100 0
|
|
1913
|
+
14138 wm_rh_G_temporal_middle 180 60 60 0
|
|
1914
|
+
14139 wm_rh_Lat_Fis-ant-Horizont 61 20 220 0
|
|
1915
|
+
14140 wm_rh_Lat_Fis-ant-Vertical 61 20 60 0
|
|
1916
|
+
14141 wm_rh_Lat_Fis-post 61 60 100 0
|
|
1917
|
+
14142 wm_rh_Medial_wall 25 25 25 0
|
|
1918
|
+
14143 wm_rh_Pole_occipital 140 20 60 0
|
|
1919
|
+
14144 wm_rh_Pole_temporal 220 180 20 0
|
|
1920
|
+
14145 wm_rh_S_calcarine 63 180 180 0
|
|
1921
|
+
14146 wm_rh_S_central 221 20 10 0
|
|
1922
|
+
14147 wm_rh_S_cingul-Marginalis 221 20 100 0
|
|
1923
|
+
14148 wm_rh_S_circular_insula_ant 221 60 140 0
|
|
1924
|
+
14149 wm_rh_S_circular_insula_inf 221 20 220 0
|
|
1925
|
+
14150 wm_rh_S_circular_insula_sup 61 220 220 0
|
|
1926
|
+
14151 wm_rh_S_collat_transv_ant 100 200 200 0
|
|
1927
|
+
14152 wm_rh_S_collat_transv_post 10 200 200 0
|
|
1928
|
+
14153 wm_rh_S_front_inf 221 220 20 0
|
|
1929
|
+
14154 wm_rh_S_front_middle 141 20 100 0
|
|
1930
|
+
14155 wm_rh_S_front_sup 61 220 100 0
|
|
1931
|
+
14156 wm_rh_S_interm_prim-Jensen 141 60 20 0
|
|
1932
|
+
14157 wm_rh_S_intrapariet_and_P_trans 143 20 220 0
|
|
1933
|
+
14158 wm_rh_S_oc_middle_and_Lunatus 101 60 220 0
|
|
1934
|
+
14159 wm_rh_S_oc_sup_and_transversal 21 20 140 0
|
|
1935
|
+
14160 wm_rh_S_occipital_ant 61 20 180 0
|
|
1936
|
+
14161 wm_rh_S_oc-temp_lat 221 140 20 0
|
|
1937
|
+
14162 wm_rh_S_oc-temp_med_and_Lingual 141 100 220 0
|
|
1938
|
+
14163 wm_rh_S_orbital_lateral 221 100 20 0
|
|
1939
|
+
14164 wm_rh_S_orbital_med-olfact 181 200 20 0
|
|
1940
|
+
14165 wm_rh_S_orbital-H_Shaped 101 20 20 0
|
|
1941
|
+
14166 wm_rh_S_parieto_occipital 101 100 180 0
|
|
1942
|
+
14167 wm_rh_S_pericallosal 181 220 20 0
|
|
1943
|
+
14168 wm_rh_S_postcentral 21 140 200 0
|
|
1944
|
+
14169 wm_rh_S_precentral-inf-part 21 20 240 0
|
|
1945
|
+
14170 wm_rh_S_precentral-sup-part 21 20 200 0
|
|
1946
|
+
14171 wm_rh_S_suborbital 21 20 60 0
|
|
1947
|
+
14172 wm_rh_S_subparietal 101 60 60 0
|
|
1948
|
+
14173 wm_rh_S_temporal_inf 21 180 180 0
|
|
1949
|
+
14174 wm_rh_S_temporal_sup 223 220 60 0
|
|
1950
|
+
14175 wm_rh_S_temporal_transverse 221 60 60 0
|
|
1951
|
+
|
|
1952
|
+
# Below are labels for the Yeo atlas (both 7 and 17)
|
|
1953
|
+
# https://surfer.nmr.mgh.harvard.edu/fswiki/CorticalParcellation_Yeo2011
|
|
1954
|
+
15000 yeo7_lh_Unknown 0 0 0 0
|
|
1955
|
+
15001 yeo7_lh_Net_1 120 18 134 0
|
|
1956
|
+
15002 yeo7_lh_Net_2 70 130 180 0
|
|
1957
|
+
15003 yeo7_lh_Net_3 0 118 14 0
|
|
1958
|
+
15004 yeo7_lh_Net_4 196 58 250 0
|
|
1959
|
+
15005 yeo7_lh_Net_5 220 248 164 0
|
|
1960
|
+
15006 yeo7_lh_Net_6 230 148 34 0
|
|
1961
|
+
15007 yeo7_lh_Net_7 205 62 78 0
|
|
1962
|
+
15010 yeo7_rh_Net_Unknown 0 0 0 0
|
|
1963
|
+
15011 yeo7_rh_Net_1 120 18 134 0
|
|
1964
|
+
15012 yeo7_rh_Net_2 70 130 180 0
|
|
1965
|
+
15013 yeo7_rh_Net_3 0 118 14 0
|
|
1966
|
+
15014 yeo7_rh_Net_4 196 58 250 0
|
|
1967
|
+
15015 yeo7_rh_Net_5 220 248 164 0
|
|
1968
|
+
15016 yeo7_rh_Net_6 230 148 34 0
|
|
1969
|
+
15017 yeo7_rh_Net_7 205 62 78 0
|
|
1970
|
+
|
|
1971
|
+
15100 yeo17_lh_Net_Unknown 0 0 0 0
|
|
1972
|
+
15101 yeo17_lh_Net_1 120 18 134 0
|
|
1973
|
+
15102 yeo17_lh_Net_2 255 0 0 0
|
|
1974
|
+
15103 yeo17_lh_Net_3 70 130 180 0
|
|
1975
|
+
15104 yeo17_lh_Net_4 42 204 164 0
|
|
1976
|
+
15105 yeo17_lh_Net_5 74 155 60 0
|
|
1977
|
+
15106 yeo17_lh_Net_6 0 118 14 0
|
|
1978
|
+
15107 yeo17_lh_Net_7 196 58 250 0
|
|
1979
|
+
15108 yeo17_lh_Net_8 255 152 213 0
|
|
1980
|
+
15109 yeo17_lh_Net_9 220 248 164 0
|
|
1981
|
+
15110 yeo17_lh_Net_10 122 135 50 0
|
|
1982
|
+
15111 yeo17_lh_Net_11 119 140 176 0
|
|
1983
|
+
15112 yeo17_lh_Net_12 230 148 34 0
|
|
1984
|
+
15113 yeo17_lh_Net_13 135 50 74 0
|
|
1985
|
+
15114 yeo17_lh_Net_14 12 48 255 0
|
|
1986
|
+
15115 yeo17_lh_Net_15 0 0 130 0
|
|
1987
|
+
15116 yeo17_lh_Net_16 255 255 0 0
|
|
1988
|
+
15117 yeo17_lh_Net_17 205 62 78 0
|
|
1989
|
+
15120 yeo17_rh_Net_Unknown 0 0 0 0
|
|
1990
|
+
15121 yeo17_rh_Net_1 120 18 134 0
|
|
1991
|
+
15122 yeo17_rh_Net_2 255 0 0 0
|
|
1992
|
+
15123 yeo17_rh_Net_3 70 130 180 0
|
|
1993
|
+
15124 yeo17_rh_Net_4 42 204 164 0
|
|
1994
|
+
15125 yeo17_rh_Net_5 74 155 60 0
|
|
1995
|
+
15126 yeo17_rh_Net_6 0 118 14 0
|
|
1996
|
+
15127 yeo17_rh_Net_7 196 58 250 0
|
|
1997
|
+
15128 yeo17_rh_Net_8 255 152 213 0
|
|
1998
|
+
15129 yeo17_rh_Net_9 220 248 164 0
|
|
1999
|
+
15130 yeo17_rh_Net_10 122 135 50 0
|
|
2000
|
+
15131 yeo17_rh_Net_11 119 140 176 0
|
|
2001
|
+
15132 yeo17_rh_Net_12 230 148 34 0
|
|
2002
|
+
15133 yeo17_rh_Net_13 135 50 74 0
|
|
2003
|
+
15134 yeo17_rh_Net_14 12 48 255 0
|
|
2004
|
+
15135 yeo17_rh_Net_15 0 0 130 0
|
|
2005
|
+
15136 yeo17_rh_Net_16 255 255 0 0
|
|
2006
|
+
15137 yeo17_rh_Net_17 205 62 78 0
|